pax_global_header00006660000000000000000000000064147710153720014521gustar00rootroot0000000000000052 comment=6af9287fbdb913f0794d0148c6aa43b58e63c8e3 snappy-1.2.2/000077500000000000000000000000001477101537200130355ustar00rootroot00000000000000snappy-1.2.2/.bazelrc000066400000000000000000000002001477101537200144500ustar00rootroot00000000000000# googletest requires C++14 or above build --cxxopt='-std=c++17' # Enable Bzlmod for every Bazel command common --enable_bzlmod snappy-1.2.2/.github/000077500000000000000000000000001477101537200143755ustar00rootroot00000000000000snappy-1.2.2/.github/workflows/000077500000000000000000000000001477101537200164325ustar00rootroot00000000000000snappy-1.2.2/.github/workflows/build.yml000066400000000000000000000115421477101537200202570ustar00rootroot00000000000000# Copyright 2021 Google Inc. All Rights Reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. name: ci on: [push, pull_request] permissions: contents: read jobs: build-and-test: name: >- CI ${{ matrix.os }} ${{ matrix.cpu_level }} ${{ matrix.compiler }} ${{ matrix.optimized && 'release' || 'debug' }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: compiler: [clang, gcc, msvc] os: [ubuntu-latest, macos-latest, windows-latest] cpu_level: [baseline, avx, avx2] optimized: [true, false] exclude: # MSVC only works on Windows. - os: ubuntu-latest compiler: msvc - os: macos-latest compiler: msvc # GitHub servers seem to run on pre-Haswell CPUs. Attempting to use AVX2 # results in crashes. - os: macos-latest cpu_level: avx2 # Not testing with GCC on macOS. - os: macos-latest compiler: gcc # Only testing with MSVC on Windows. - os: windows-latest compiler: clang - os: windows-latest compiler: gcc include: - compiler: clang CC: clang CXX: clang++ - compiler: gcc CC: gcc CXX: g++ - compiler: msvc CC: CXX: env: CMAKE_BUILD_DIR: ${{ github.workspace }}/build CMAKE_BUILD_TYPE: ${{ matrix.optimized && 'RelWithDebInfo' || 'Debug' }} CC: ${{ matrix.CC }} CXX: ${{ matrix.CXX }} SNAPPY_REQUIRE_AVX: ${{ matrix.cpu_level == 'baseline' && '0' || '1' }} SNAPPY_REQUIRE_AVX2: ${{ matrix.cpu_level == 'avx2' && '1' || '0' }} SNAPPY_FUZZING_BUILD: >- ${{ (startsWith(matrix.os, 'ubuntu') && matrix.compiler == 'clang' && !matrix.optimized) && '1' || '0' }} BINARY_SUFFIX: ${{ startsWith(matrix.os, 'windows') && '.exe' || '' }} BINARY_PATH: >- ${{ format( startsWith(matrix.os, 'windows') && '{0}\build\{1}\' || '{0}/build/', github.workspace, matrix.optimized && 'RelWithDebInfo' || 'Debug') }} steps: - uses: actions/checkout@v2 with: submodules: true - name: Generate build config run: >- cmake -S "${{ github.workspace }}" -B "${{ env.CMAKE_BUILD_DIR }}" -DCMAKE_BUILD_TYPE=${{ env.CMAKE_BUILD_TYPE }} -DCMAKE_INSTALL_PREFIX=${{ runner.temp }}/install_test/ -DSNAPPY_FUZZING_BUILD=${{ env.SNAPPY_FUZZING_BUILD }} -DSNAPPY_REQUIRE_AVX=${{ env.SNAPPY_REQUIRE_AVX }} -DSNAPPY_REQUIRE_AVX2=${{ env.SNAPPY_REQUIRE_AVX2 }} - name: Build run: >- cmake --build "${{ env.CMAKE_BUILD_DIR }}" --config "${{ env.CMAKE_BUILD_TYPE }}" - name: Run C++ API Tests run: ${{ env.BINARY_PATH }}snappy_unittest${{ env.BINARY_SUFFIX }} - name: Run Compression Fuzzer if: ${{ env.SNAPPY_FUZZING_BUILD == '1' }} run: >- ${{ env.BINARY_PATH }}snappy_compress_fuzzer${{ env.BINARY_SUFFIX }} -runs=1000 -close_fd_mask=3 - name: Run Decompression Fuzzer if: ${{ env.SNAPPY_FUZZING_BUILD == '1' }} run: >- ${{ env.BINARY_PATH }}snappy_uncompress_fuzzer${{ env.BINARY_SUFFIX }} -runs=1000 -close_fd_mask=3 - name: Run Benchmarks run: ${{ env.BINARY_PATH }}snappy_benchmark${{ env.BINARY_SUFFIX }} - name: Test CMake installation run: cmake --build "${{ env.CMAKE_BUILD_DIR }}" --target install snappy-1.2.2/.gitignore000066400000000000000000000001361477101537200150250ustar00rootroot00000000000000# Editors. *.sw* .vscode .DS_Store # Build directory. build/ /bazel-* MODULE.bazel.lock out/ snappy-1.2.2/.gitmodules000066400000000000000000000003451477101537200152140ustar00rootroot00000000000000[submodule "third_party/benchmark"] path = third_party/benchmark url = https://github.com/google/benchmark.git [submodule "third_party/googletest"] path = third_party/googletest url = https://github.com/google/googletest.git snappy-1.2.2/AUTHORS000066400000000000000000000000261477101537200141030ustar00rootroot00000000000000opensource@google.com snappy-1.2.2/BUILD.bazel000066400000000000000000000131371477101537200147200ustar00rootroot00000000000000# Copyright 2023 Google Inc. All Rights Reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. package(default_visibility = ["//visibility:public"]) licenses(["notice"]) SNAPPY_VERSION = (1, 2, 2) config_setting( name = "windows", constraint_values = ["@platforms//os:windows"], ) cc_library( name = "config", hdrs = ["config.h"], defines = ["HAVE_CONFIG_H"], ) cc_library( name = "snappy-stubs-public", hdrs = [":snappy-stubs-public.h"], ) cc_library( name = "snappy-stubs-internal", srcs = ["snappy-stubs-internal.cc"], hdrs = ["snappy-stubs-internal.h"], deps = [ ":config", ":snappy-stubs-public", ], ) cc_library( name = "snappy", srcs = [ "snappy.cc", "snappy-internal.h", "snappy-sinksource.cc", ], hdrs = [ "snappy.h", "snappy-sinksource.h", ], copts = select({ ":windows": [], "//conditions:default": [ "-Wno-sign-compare", ], }), deps = [ ":config", ":snappy-stubs-internal", ":snappy-stubs-public", ], ) cc_library( name = "snappy-c", srcs = ["snappy-c.cc"], hdrs = ["snappy-c.h"], deps = [":snappy"], ) filegroup( name = "testdata", srcs = glob(["testdata/*"]), ) cc_library( name = "snappy-test", testonly = True, srcs = [ "snappy-test.cc", "snappy_test_data.cc", ], hdrs = [ "snappy-test.h", "snappy_test_data.h", ], deps = [":snappy-stubs-internal"], ) cc_test( name = "snappy_benchmark", srcs = ["snappy_benchmark.cc"], data = [":testdata"], deps = [ ":snappy", ":snappy-test", "@com_google_benchmark//:benchmark_main", ], ) cc_test( name = "snappy_unittest", srcs = [ "snappy_unittest.cc", ], data = [":testdata"], deps = [ ":snappy", ":snappy-test", "@com_google_googletest//:gtest_main", ], ) # Generate a config.h similar to what cmake would produce. genrule( name = "config_h", outs = ["config.h"], cmd = """cat <$@ #define HAVE_STDDEF_H 1 #define HAVE_STDINT_H 1 #ifdef __has_builtin # if !defined(HAVE_BUILTIN_EXPECT) && __has_builtin(__builtin_expect) # define HAVE_BUILTIN_EXPECT 1 # endif # if !defined(HAVE_BUILTIN_CTZ) && __has_builtin(__builtin_ctzll) # define HAVE_BUILTIN_CTZ 1 # endif # if !defined(HAVE_BUILTIN_PREFETCH) && __has_builtin(__builtin_prefetech) # define HAVE_BUILTIN_PREFETCH 1 # endif #elif defined(__GNUC__) && (__GNUC__ > 3 || __GNUC__ == 3 && __GNUC_MINOR__ >= 4) # ifndef HAVE_BUILTIN_EXPECT # define HAVE_BUILTIN_EXPECT 1 # endif # ifndef HAVE_BUILTIN_CTZ # define HAVE_BUILTIN_CTZ 1 # endif # ifndef HAVE_BUILTIN_PREFETCH # define HAVE_BUILTIN_PREFETCH 1 # endif #endif #if defined(_WIN32) && !defined(HAVE_WINDOWS_H) #define HAVE_WINDOWS_H 1 #endif #ifdef __has_include # if !defined(HAVE_BYTESWAP_H) && __has_include() # define HAVE_BYTESWAP_H 1 # endif # if !defined(HAVE_UNISTD_H) && __has_include() # define HAVE_UNISTD_H 1 # endif # if !defined(HAVE_SYS_ENDIAN_H) && __has_include() # define HAVE_SYS_ENDIAN_H 1 # endif # if !defined(HAVE_SYS_MMAN_H) && __has_include() # define HAVE_SYS_MMAN_H 1 # endif # if !defined(HAVE_SYS_UIO_H) && __has_include() # define HAVE_SYS_UIO_H 1 # endif # if !defined(HAVE_SYS_TIME_H) && __has_include() # define HAVE_SYS_TIME_H 1 # endif #endif #ifndef SNAPPY_IS_BIG_ENDIAN # ifdef __s390x__ # define SNAPPY_IS_BIG_ENDIAN 1 # elif defined(__BYTE_ORDER__) && defined(__ORDER_BIG_ENDIAN__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ # define SNAPPY_IS_BIG_ENDIAN 1 # endif #endif EOF """, ) genrule( name = "snappy_stubs_public_h", srcs = ["snappy-stubs-public.h.in"], outs = ["snappy-stubs-public.h"], # Assume sys/uio.h is available on non-Windows. # Set the version numbers. cmd = ("""sed -e 's/$${HAVE_SYS_UIO_H_01}/!_WIN32/g' \ -e 's/$${PROJECT_VERSION_MAJOR}/%d/g' \ -e 's/$${PROJECT_VERSION_MINOR}/%d/g' \ -e 's/$${PROJECT_VERSION_PATCH}/%d/g' \ $< >$@""" % SNAPPY_VERSION), ) snappy-1.2.2/CMakeLists.txt000066400000000000000000000347321477101537200156060ustar00rootroot00000000000000# Copyright 2019 Google Inc. All Rights Reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. cmake_minimum_required(VERSION 3.10) project(Snappy VERSION 1.2.2 LANGUAGES C CXX) # C++ standard can be overridden when this is used as a sub-project. if(NOT CMAKE_CXX_STANDARD) # This project requires C++11. set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_EXTENSIONS OFF) endif(NOT CMAKE_CXX_STANDARD) # https://github.com/izenecloud/cmake/blob/master/SetCompilerWarningAll.cmake if(MSVC) # Use the highest warning level for Visual Studio. set(CMAKE_CXX_WARNING_LEVEL 4) if(CMAKE_CXX_FLAGS MATCHES "/W[0-4]") string(REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") else(CMAKE_CXX_FLAGS MATCHES "/W[0-4]") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /W4") endif(CMAKE_CXX_FLAGS MATCHES "/W[0-4]") # Disable C++ exceptions. string(REGEX REPLACE "/EH[a-z]+" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /EHs-c-") add_definitions(-D_HAS_EXCEPTIONS=0) # Disable RTTI. string(REGEX REPLACE "/GR" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /GR-") else(MSVC) # Use -Wall for clang and gcc. if(NOT CMAKE_CXX_FLAGS MATCHES "-Wall") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall") endif(NOT CMAKE_CXX_FLAGS MATCHES "-Wall") # Use -Wextra for clang and gcc. if(NOT CMAKE_CXX_FLAGS MATCHES "-Wextra") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wextra") endif(NOT CMAKE_CXX_FLAGS MATCHES "-Wextra") # Use -Werror for clang only. if(CMAKE_CXX_COMPILER_ID MATCHES "Clang") if(NOT CMAKE_CXX_FLAGS MATCHES "-Werror") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror") endif(NOT CMAKE_CXX_FLAGS MATCHES "-Werror") endif(CMAKE_CXX_COMPILER_ID MATCHES "Clang") # Disable sign comparison warnings. Matches upcoming Bazel setup. if(NOT CMAKE_CXX_FLAGS MATCHES "-Wno-sign-compare") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-sign-compare") endif(NOT CMAKE_CXX_FLAGS MATCHES "-Wno-sign-compare") # Disable C++ exceptions. string(REGEX REPLACE "-fexceptions" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-exceptions") # Disable RTTI. string(REGEX REPLACE "-frtti" "" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fno-rtti") endif(MSVC) # BUILD_SHARED_LIBS is a standard CMake variable, but we declare it here to make # it prominent in the GUI. option(BUILD_SHARED_LIBS "Build shared libraries(DLLs)." OFF) option(SNAPPY_BUILD_TESTS "Build Snappy's own tests." ON) option(SNAPPY_BUILD_BENCHMARKS "Build Snappy's benchmarks" ON) option(SNAPPY_FUZZING_BUILD "Build Snappy for fuzzing." OFF) option(SNAPPY_REQUIRE_AVX "Target processors with AVX support." OFF) option(SNAPPY_REQUIRE_AVX2 "Target processors with AVX2 support." OFF) option(SNAPPY_INSTALL "Install Snappy's header and library" ON) include(TestBigEndian) test_big_endian(SNAPPY_IS_BIG_ENDIAN) include(CheckIncludeFile) check_include_file("sys/mman.h" HAVE_SYS_MMAN_H) check_include_file("sys/resource.h" HAVE_SYS_RESOURCE_H) check_include_file("sys/time.h" HAVE_SYS_TIME_H) check_include_file("sys/uio.h" HAVE_SYS_UIO_H) check_include_file("unistd.h" HAVE_UNISTD_H) check_include_file("windows.h" HAVE_WINDOWS_H) include(CheckLibraryExists) check_library_exists(z zlibVersion "" HAVE_LIBZ) check_library_exists(lzo2 lzo1x_1_15_compress "" HAVE_LIBLZO2) check_library_exists(lz4 LZ4_compress_default "" HAVE_LIBLZ4) include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("/arch:AVX" HAVE_VISUAL_STUDIO_ARCH_AVX) CHECK_CXX_COMPILER_FLAG("/arch:AVX2" HAVE_VISUAL_STUDIO_ARCH_AVX2) CHECK_CXX_COMPILER_FLAG("-mavx" HAVE_CLANG_MAVX) CHECK_CXX_COMPILER_FLAG("-mbmi2" HAVE_CLANG_MBMI2) if(SNAPPY_REQUIRE_AVX2) if(HAVE_VISUAL_STUDIO_ARCH_AVX2) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:AVX2") endif(HAVE_VISUAL_STUDIO_ARCH_AVX2) if(HAVE_CLANG_MAVX) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx") endif(HAVE_CLANG_MAVX) if(HAVE_CLANG_MBMI2) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mbmi2") endif(HAVE_CLANG_MBMI2) elseif (SNAPPY_REQUIRE_AVX) if(HAVE_VISUAL_STUDIO_ARCH_AVX) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /arch:AVX") endif(HAVE_VISUAL_STUDIO_ARCH_AVX) if(HAVE_CLANG_MAVX) set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -mavx") endif(HAVE_CLANG_MAVX) endif(SNAPPY_REQUIRE_AVX2) # Used by googletest. check_cxx_compiler_flag(-Wno-missing-field-initializers SNAPPY_HAVE_NO_MISSING_FIELD_INITIALIZERS) check_cxx_compiler_flag(-Wno-implicit-int-float-conversion SNAPPY_HAVE_NO_IMPLICIT_INT_FLOAT_CONVERSION) include(CheckCXXSourceCompiles) check_cxx_source_compiles(" int main() { return __builtin_expect(0, 1); }" HAVE_BUILTIN_EXPECT) check_cxx_source_compiles(" int main() { return __builtin_ctzll(0); }" HAVE_BUILTIN_CTZ) check_cxx_source_compiles(" int main() { __builtin_prefetch(0, 0, 3); return 0; }" HAVE_BUILTIN_PREFETCH) check_cxx_source_compiles(" __attribute__((always_inline)) int zero() { return 0; } int main() { return zero(); }" HAVE_ATTRIBUTE_ALWAYS_INLINE) check_cxx_source_compiles(" #include int main() { const __m128i *src = 0; __m128i dest; const __m128i shuffle_mask = _mm_load_si128(src); const __m128i pattern = _mm_shuffle_epi8(_mm_loadl_epi64(src), shuffle_mask); _mm_storeu_si128(&dest, pattern); return 0; }" SNAPPY_HAVE_SSSE3) check_cxx_source_compiles(" #include int main() { return _mm_crc32_u32(0, 1); }" SNAPPY_HAVE_X86_CRC32) check_cxx_source_compiles(" #include #include int main() { return __crc32cw(0, 1); }" SNAPPY_HAVE_NEON_CRC32) check_cxx_source_compiles(" #include int main() { return _bzhi_u32(0, 1); }" SNAPPY_HAVE_BMI2) check_cxx_source_compiles(" #include #include int main() { uint8_t val = 3, dup[8]; uint8x16_t v1 = vld1q_dup_u8(&val); uint8x16_t v2 = vqtbl1q_u8(v1, v1); vst1q_u8(dup, v1); vst1q_u8(dup, v2); return 0; }" SNAPPY_HAVE_NEON) include(CheckSymbolExists) check_symbol_exists("mmap" "sys/mman.h" HAVE_FUNC_MMAP) check_symbol_exists("sysconf" "unistd.h" HAVE_FUNC_SYSCONF) configure_file( "cmake/config.h.in" "${PROJECT_BINARY_DIR}/config.h" ) # We don't want to define HAVE_ macros in public headers. Instead, we use # CMake's variable substitution with 0/1 variables, which will be seen by the # preprocessor as constants. set(HAVE_SYS_UIO_H_01 ${HAVE_SYS_UIO_H}) if(NOT HAVE_SYS_UIO_H_01) set(HAVE_SYS_UIO_H_01 0) endif(NOT HAVE_SYS_UIO_H_01) if (SNAPPY_FUZZING_BUILD) if (NOT "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") message(WARNING "Fuzzing builds are only supported with Clang") endif (NOT "${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang") if(NOT CMAKE_CXX_FLAGS MATCHES "-fsanitize=address") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=address") endif(NOT CMAKE_CXX_FLAGS MATCHES "-fsanitize=address") if(NOT CMAKE_CXX_FLAGS MATCHES "-fsanitize=fuzzer-no-link") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsanitize=fuzzer-no-link") endif(NOT CMAKE_CXX_FLAGS MATCHES "-fsanitize=fuzzer-no-link") endif (SNAPPY_FUZZING_BUILD) configure_file( "snappy-stubs-public.h.in" "${PROJECT_BINARY_DIR}/snappy-stubs-public.h") add_library(snappy "") target_sources(snappy PRIVATE "snappy-internal.h" "snappy-stubs-internal.h" "snappy-c.cc" "snappy-sinksource.cc" "snappy-stubs-internal.cc" "snappy.cc" "${PROJECT_BINARY_DIR}/config.h" PUBLIC $ $ $ $ $ $ $ $ ) target_include_directories(snappy PUBLIC $ $ $ ) set_target_properties(snappy PROPERTIES VERSION ${PROJECT_VERSION} SOVERSION ${PROJECT_VERSION_MAJOR}) target_compile_definitions(snappy PRIVATE -DHAVE_CONFIG_H) if(BUILD_SHARED_LIBS) set_target_properties(snappy PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON) endif(BUILD_SHARED_LIBS) if(SNAPPY_BUILD_TESTS OR SNAPPY_BUILD_BENCHMARKS) add_library(snappy_test_support "") target_sources(snappy_test_support PRIVATE "snappy-test.cc" "snappy-test.h" "snappy_test_data.cc" "snappy_test_data.h" "${PROJECT_BINARY_DIR}/config.h" ) # Test files include snappy-test.h, HAVE_CONFIG_H must be defined. target_compile_definitions(snappy_test_support PUBLIC -DHAVE_CONFIG_H) if(BUILD_SHARED_LIBS) set_target_properties(snappy_test_support PROPERTIES WINDOWS_EXPORT_ALL_SYMBOLS ON) endif(BUILD_SHARED_LIBS) target_link_libraries(snappy_test_support snappy) if(HAVE_LIBZ) target_link_libraries(snappy_test_support z) endif(HAVE_LIBZ) if(HAVE_LIBLZO2) target_link_libraries(snappy_test_support lzo2) endif(HAVE_LIBLZO2) if(HAVE_LIBLZ4) target_link_libraries(snappy_test_support lz4) endif(HAVE_LIBLZ4) target_include_directories(snappy_test_support BEFORE PUBLIC "${PROJECT_SOURCE_DIR}" ) endif(SNAPPY_BUILD_TESTS OR SNAPPY_BUILD_BENCHMARKS) if(SNAPPY_BUILD_TESTS) enable_testing() # Prevent overriding the parent project's compiler/linker settings on Windows. set(gtest_force_shared_crt ON CACHE BOOL "" FORCE) set(install_gtest OFF) set(install_gmock OFF) set(build_gmock ON) # This project is tested using GoogleTest. add_subdirectory("third_party/googletest") # GoogleTest triggers a missing field initializers warning. if(SNAPPY_HAVE_NO_MISSING_FIELD_INITIALIZERS) set_property(TARGET gtest APPEND PROPERTY COMPILE_OPTIONS -Wno-missing-field-initializers) set_property(TARGET gmock APPEND PROPERTY COMPILE_OPTIONS -Wno-missing-field-initializers) endif(SNAPPY_HAVE_NO_MISSING_FIELD_INITIALIZERS) if(SNAPPY_HAVE_NO_IMPLICIT_INT_FLOAT_CONVERSION) set_property(TARGET gtest APPEND PROPERTY COMPILE_OPTIONS -Wno-implicit-int-float-conversion) endif(SNAPPY_HAVE_NO_IMPLICIT_INT_FLOAT_CONVERSION) add_executable(snappy_unittest "") target_sources(snappy_unittest PRIVATE "snappy_unittest.cc" ) target_link_libraries(snappy_unittest snappy_test_support gmock_main gtest) add_test( NAME snappy_unittest WORKING_DIRECTORY "${PROJECT_SOURCE_DIR}" COMMAND "${PROJECT_BINARY_DIR}/snappy_unittest") add_executable(snappy_test_tool "") target_sources(snappy_test_tool PRIVATE "snappy_test_tool.cc" ) target_link_libraries(snappy_test_tool snappy_test_support) endif(SNAPPY_BUILD_TESTS) if(SNAPPY_BUILD_BENCHMARKS) add_executable(snappy_benchmark "") target_sources(snappy_benchmark PRIVATE "snappy_benchmark.cc" ) target_link_libraries(snappy_benchmark snappy_test_support benchmark_main) # This project uses Google benchmark for benchmarking. set(BENCHMARK_ENABLE_TESTING OFF CACHE BOOL "" FORCE) set(BENCHMARK_ENABLE_EXCEPTIONS OFF CACHE BOOL "" FORCE) add_subdirectory("third_party/benchmark") endif(SNAPPY_BUILD_BENCHMARKS) if(SNAPPY_FUZZING_BUILD) add_executable(snappy_compress_fuzzer "") target_sources(snappy_compress_fuzzer PRIVATE "snappy_compress_fuzzer.cc" ) target_link_libraries(snappy_compress_fuzzer snappy) set_target_properties(snappy_compress_fuzzer PROPERTIES LINK_FLAGS "-fsanitize=fuzzer" ) add_executable(snappy_uncompress_fuzzer "") target_sources(snappy_uncompress_fuzzer PRIVATE "snappy_uncompress_fuzzer.cc" ) target_link_libraries(snappy_uncompress_fuzzer snappy) set_target_properties(snappy_uncompress_fuzzer PROPERTIES LINK_FLAGS "-fsanitize=fuzzer" ) endif(SNAPPY_FUZZING_BUILD) # Must be included before CMAKE_INSTALL_INCLUDEDIR is used. include(GNUInstallDirs) if(SNAPPY_INSTALL) install(TARGETS snappy EXPORT SnappyTargets RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR} ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR} ) install( FILES "snappy-c.h" "snappy-sinksource.h" "snappy.h" "${PROJECT_BINARY_DIR}/snappy-stubs-public.h" DESTINATION "${CMAKE_INSTALL_INCLUDEDIR}" ) include(CMakePackageConfigHelpers) configure_package_config_file( "cmake/${PROJECT_NAME}Config.cmake.in" "${PROJECT_BINARY_DIR}/cmake/${PROJECT_NAME}Config.cmake" INSTALL_DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}" ) write_basic_package_version_file( "${PROJECT_BINARY_DIR}/cmake/${PROJECT_NAME}ConfigVersion.cmake" COMPATIBILITY SameMajorVersion ) install( EXPORT SnappyTargets NAMESPACE Snappy:: DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}" ) install( FILES "${PROJECT_BINARY_DIR}/cmake/${PROJECT_NAME}Config.cmake" "${PROJECT_BINARY_DIR}/cmake/${PROJECT_NAME}ConfigVersion.cmake" DESTINATION "${CMAKE_INSTALL_LIBDIR}/cmake/${PROJECT_NAME}" ) endif(SNAPPY_INSTALL) snappy-1.2.2/CONTRIBUTING.md000066400000000000000000000023111477101537200152630ustar00rootroot00000000000000# How to Contribute We'd love to accept your patches and contributions to this project. There are just a few small guidelines you need to follow. ## Contributor License Agreement Contributions to this project must be accompanied by a Contributor License Agreement. You (or your employer) retain the copyright to your contribution; this simply gives us permission to use and redistribute your contributions as part of the project. Head over to to see your current agreements on file or to sign a new one. You generally only need to submit a CLA once, so if you've already submitted one (even if it was for a different project), you probably don't need to do it again. ## Code Reviews All submissions, including submissions by project members, require review. We use GitHub pull requests for this purpose. Consult [GitHub Help](https://help.github.com/articles/about-pull-requests/) for more information on using pull requests. See [the README](README.md#contributing-to-the-snappy-project) for areas where we are likely to accept external contributions. ## Community Guidelines This project follows [Google's Open Source Community Guidelines](https://opensource.google/conduct/). snappy-1.2.2/COPYING000066400000000000000000000051251477101537200140730ustar00rootroot00000000000000Copyright 2011, Google Inc. All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. * Neither the name of Google Inc. nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. === Some of the benchmark data in testdata/ is licensed differently: - fireworks.jpeg is Copyright 2013 Steinar H. Gunderson, and is licensed under the Creative Commons Attribution 3.0 license (CC-BY-3.0). See https://creativecommons.org/licenses/by/3.0/ for more information. - kppkn.gtb is taken from the Gaviota chess tablebase set, and is licensed under the MIT License. See https://sites.google.com/site/gaviotachessengine/Home/endgame-tablebases-1 for more information. - paper-100k.pdf is an excerpt (bytes 92160 to 194560) from the paper “Combinatorial Modeling of Chromatin Features Quantitatively Predicts DNA Replication Timing in _Drosophila_” by Federico Comoglio and Renato Paro, which is licensed under the CC-BY license. See http://www.ploscompbiol.org/static/license for more ifnormation. - alice29.txt, asyoulik.txt, plrabn12.txt and lcet10.txt are from Project Gutenberg. The first three have expired copyrights and are in the public domain; the latter does not have expired copyright, but is still in the public domain according to the license information (http://www.gutenberg.org/ebooks/53). snappy-1.2.2/MODULE.bazel000066400000000000000000000006371477101537200150470ustar00rootroot00000000000000module( name = "snappy", version = "1.2.2", compatibility_level = 1, ) bazel_dep( name = "googletest", version = "1.14.0.bcr.1", dev_dependency = True, repo_name = "com_google_googletest", ) bazel_dep( name = "google_benchmark", version = "1.9.0", dev_dependency = True, repo_name = "com_google_benchmark", ) bazel_dep( name = "platforms", version = "0.0.9", ) snappy-1.2.2/NEWS000066400000000000000000000147561477101537200135510ustar00rootroot00000000000000Snappy v1.2.2, Mar 26th 2025: * We added a new compression level in v1.2.1 which compresses a bit denser but slower. Decompression speed should be even faster with it. * We fixed a very old issue of data corruption when compressed size exceeds 4GB. This can happen when you compress data close to 4GB and it's incompressible, for example, random data. * Started to use minimum CMake 3.10 because older ones are not planned to be supported. * Various other small fixes and performance improvements (especially for clang). Snappy v1.1.10, Mar 8th 2023: * Performance improvements * Compilation fixes for various environments Snappy v1.1.9, May 4th 2021: * Performance improvements. * Google Test and Google Benchmark are now bundled in third_party/. Snappy v1.1.8, January 15th 2020: * Small performance improvements. * Removed snappy::string alias for std::string. * Improved CMake configuration. Snappy v1.1.7, August 24th 2017: * Improved CMake build support for 64-bit Linux distributions. * MSVC builds now use MSVC-specific intrinsics that map to clzll. * ARM64 (AArch64) builds use the code paths optimized for 64-bit processors. Snappy v1.1.6, July 12th 2017: This is a re-release of v1.1.5 with proper SONAME / SOVERSION values. Snappy v1.1.5, June 28th 2017: This release has broken SONAME / SOVERSION values. Users of snappy as a shared library should avoid 1.1.5 and use 1.1.6 instead. SONAME / SOVERSION errors will manifest as the dynamic library loader complaining that it cannot find snappy's shared library file (libsnappy.so / libsnappy.dylib), or that the library it found does not have the required version. 1.1.6 has the same code as 1.1.5, but carries build configuration fixes for the issues above. * Add CMake build support. The autoconf build support is now deprecated, and will be removed in the next release. * Add AppVeyor configuration, for Windows CI coverage. * Small performance improvement on little-endian PowerPC. * Small performance improvement on LLVM with position-independent executables. * Fix a few issues with various build environments. Snappy v1.1.4, January 25th 2017: * Fix a 1% performance regression when snappy is used in PIE executables. * Improve compression performance by 5%. * Improve decompression performance by 20%. Snappy v1.1.3, July 6th 2015: This is the first release to be done from GitHub, which means that some minor things like the ChangeLog format has changed (git log format instead of svn log). * Add support for Uncompress() from a Source to a Sink. * Various minor changes to improve MSVC support; in particular, the unit tests now compile and run under MSVC. Snappy v1.1.2, February 28th 2014: This is a maintenance release with no changes to the actual library source code. * Stop distributing benchmark data files that have unclear or unsuitable licensing. * Add support for padding chunks in the framing format. Snappy v1.1.1, October 15th 2013: * Add support for uncompressing to iovecs (scatter I/O). The bulk of this patch was contributed by Mohit Aron. * Speed up decompression by ~2%; much more so (~13-20%) on a few benchmarks on given compilers and CPUs. * Fix a few issues with MSVC compilation. * Support truncated test data in the benchmark. Snappy v1.1.0, January 18th 2013: * Snappy now uses 64 kB block size instead of 32 kB. On average, this means it compresses about 3% denser (more so for some inputs), at the same or better speeds. * libsnappy no longer depends on iostream. * Some small performance improvements in compression on x86 (0.5–1%). * Various portability fixes for ARM-based platforms, for MSVC, and for GNU/Hurd. Snappy v1.0.5, February 24th 2012: * More speed improvements. Exactly how big will depend on the architecture: - 3–10% faster decompression for the base case (x86-64). - ARMv7 and higher can now use unaligned accesses, and will see about 30% faster decompression and 20–40% faster compression. - 32-bit platforms (ARM and 32-bit x86) will see 2–5% faster compression. These are all cumulative (e.g., ARM gets all three speedups). * Fixed an issue where the unit test would crash on system with less than 256 MB address space available, e.g. some embedded platforms. * Added a framing format description, for use over e.g. HTTP, or for a command-line compressor. We do not have any implementations of this at the current point, but there seems to be enough of a general interest in the topic. Also make the format description slightly clearer. * Remove some compile-time warnings in -Wall (mostly signed/unsigned comparisons), for easier embedding into projects that use -Wall -Werror. Snappy v1.0.4, September 15th 2011: * Speeded up the decompressor somewhat; typically about 2–8% for Core i7, in 64-bit mode (comparable for Opteron). Somewhat more for some tests, almost no gain for others. * Make Snappy compile on certain platforms it didn't before (Solaris with SunPro C++, HP-UX, AIX). * Correct some minor errors in the format description. Snappy v1.0.3, June 2nd 2011: * Speeded up the decompressor somewhat; about 3-6% for Core 2, 6-13% for Core i7, and 5-12% for Opteron (all in 64-bit mode). * Added compressed format documentation. This text is new, but an earlier version from Zeev Tarantov was used as reference. * Only link snappy_unittest against -lz and other autodetected libraries, not libsnappy.so (which doesn't need any such dependency). * Fixed some display issues in the microbenchmarks, one of which would frequently make the test crash on GNU/Hurd. Snappy v1.0.2, April 29th 2011: * Relicense to a BSD-type license. * Added C bindings, contributed by Martin Gieseking. * More Win32 fixes, in particular for MSVC. * Replace geo.protodata with a newer version. * Fix timing inaccuracies in the unit test when comparing Snappy to other algorithms. Snappy v1.0.1, March 25th 2011: This is a maintenance release, mostly containing minor fixes. There is no new functionality. The most important fixes include: * The COPYING file and all licensing headers now correctly state that Snappy is licensed under the Apache 2.0 license. * snappy_unittest should now compile natively under Windows, as well as on embedded systems with no mmap(). * Various autotools nits have been fixed. Snappy v1.0, March 17th 2011: * Initial version. snappy-1.2.2/README.md000066400000000000000000000150421477101537200143160ustar00rootroot00000000000000Snappy, a fast compressor/decompressor. [![Build Status](https://github.com/google/snappy/actions/workflows/build.yml/badge.svg)](https://github.com/google/snappy/actions/workflows/build.yml) Introduction ============ Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. (For more information, see "Performance", below.) Snappy has the following properties: * Fast: Compression speeds at 250 MB/sec and beyond, with no assembler code. See "Performance" below. * Stable: Over the last few years, Snappy has compressed and decompressed petabytes of data in Google's production environment. The Snappy bitstream format is stable and will not change between versions. * Robust: The Snappy decompressor is designed not to crash in the face of corrupted or malicious input. * Free and open source software: Snappy is licensed under a BSD-type license. For more information, see the included COPYING file. Snappy has previously been called "Zippy" in some Google presentations and the like. Performance =========== Snappy is intended to be fast. On a single core of a Core i7 processor in 64-bit mode, it compresses at about 250 MB/sec or more and decompresses at about 500 MB/sec or more. (These numbers are for the slowest inputs in our benchmark suite; others are much faster.) In our tests, Snappy usually is faster than algorithms in the same class (e.g. LZO, LZF, QuickLZ, etc.) while achieving comparable compression ratios. Typical compression ratios (based on the benchmark suite) are about 1.5-1.7x for plain text, about 2-4x for HTML, and of course 1.0x for JPEGs, PNGs and other already-compressed data. Similar numbers for zlib in its fastest mode are 2.6-2.8x, 3-7x and 1.0x, respectively. More sophisticated algorithms are capable of achieving yet higher compression rates, although usually at the expense of speed. Of course, compression ratio will vary significantly with the input. Although Snappy should be fairly portable, it is primarily optimized for 64-bit x86-compatible processors, and may run slower in other environments. In particular: - Snappy uses 64-bit operations in several places to process more data at once than would otherwise be possible. - Snappy assumes unaligned 32 and 64-bit loads and stores are cheap. On some platforms, these must be emulated with single-byte loads and stores, which is much slower. - Snappy assumes little-endian throughout, and needs to byte-swap data in several places if running on a big-endian platform. Experience has shown that even heavily tuned code can be improved. Performance optimizations, whether for 64-bit x86 or other platforms, are of course most welcome; see "Contact", below. Building ======== You need the CMake version specified in [CMakeLists.txt](./CMakeLists.txt) or later to build: ```bash git submodule update --init mkdir build cd build && cmake ../ && make ``` Usage ===== Note that Snappy, both the implementation and the main interface, is written in C++. However, several third-party bindings to other languages are available; see the [home page](docs/README.md) for more information. Also, if you want to use Snappy from C code, you can use the included C bindings in snappy-c.h. To use Snappy from your own C++ program, include the file "snappy.h" from your calling file, and link against the compiled library. There are many ways to call Snappy, but the simplest possible is ```c++ snappy::Compress(input.data(), input.size(), &output); ``` and similarly ```c++ snappy::Uncompress(input.data(), input.size(), &output); ``` where "input" and "output" are both instances of std::string. There are other interfaces that are more flexible in various ways, including support for custom (non-array) input sources. See the header file for more information. Tests and benchmarks ==================== When you compile Snappy, the following binaries are compiled in addition to the library itself. You do not need them to use the compressor from your own library, but they are useful for Snappy development. * `snappy_benchmark` contains microbenchmarks used to tune compression and decompression performance. * `snappy_unittests` contains unit tests, verifying correctness on your machine in various scenarios. * `snappy_test_tool` can benchmark Snappy against a few other compression libraries (zlib, LZO, LZF, and QuickLZ), if they were detected at configure time. To benchmark using a given file, give the compression algorithm you want to test Snappy against (e.g. --zlib) and then a list of one or more file names on the command line. If you want to change or optimize Snappy, please run the tests and benchmarks to verify you have not broken anything. The testdata/ directory contains the files used by the microbenchmarks, which should provide a reasonably balanced starting point for benchmarking. (Note that baddata[1-3].snappy are not intended as benchmarks; they are used to verify correctness in the presence of corrupted data in the unit test.) Contributing to the Snappy Project ================================== In addition to the aims listed at the top of the [README](README.md) Snappy explicitly supports the following: 1. C++11 2. Clang (gcc and MSVC are best-effort). 3. Low level optimizations (e.g. assembly or equivalent intrinsics) for: - [x86](https://en.wikipedia.org/wiki/X86) - [x86-64](https://en.wikipedia.org/wiki/X86-64) - ARMv7 (32-bit) - ARMv8 (AArch64) 4. Supports only the Snappy compression scheme as described in [format_description.txt](format_description.txt). 5. CMake for building Changes adding features or dependencies outside of the core area of focus listed above might not be accepted. If in doubt post a message to the [Snappy discussion mailing list](https://groups.google.com/g/snappy-compression). We are unlikely to accept contributions to the build configuration files, such as `CMakeLists.txt`. We are focused on maintaining a build configuration that allows us to test that the project works in a few supported configurations inside Google. We are not currently interested in supporting other requirements, such as different operating systems, compilers, or build systems. Contact ======= Snappy is distributed through GitHub. For the latest version and other information, see https://github.com/google/snappy. snappy-1.2.2/WORKSPACE000066400000000000000000000027651477101537200143300ustar00rootroot00000000000000# Copyright 2023 Google Inc. All Rights Reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. snappy-1.2.2/WORKSPACE.bzlmod000066400000000000000000000000001477101537200155720ustar00rootroot00000000000000snappy-1.2.2/cmake/000077500000000000000000000000001477101537200141155ustar00rootroot00000000000000snappy-1.2.2/cmake/SnappyConfig.cmake.in000066400000000000000000000031411477101537200201230ustar00rootroot00000000000000# Copyright 2019 Google Inc. All Rights Reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions are # met: # # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following disclaimer # in the documentation and/or other materials provided with the # distribution. # * Neither the name of Google Inc. nor the names of its # contributors may be used to endorse or promote products derived from # this software without specific prior written permission. # # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR # A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT # OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. @PACKAGE_INIT@ include("${CMAKE_CURRENT_LIST_DIR}/SnappyTargets.cmake") check_required_components(Snappy)snappy-1.2.2/cmake/config.h.in000066400000000000000000000045461477101537200161510ustar00rootroot00000000000000#ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_ #define THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_ /* Define to 1 if the compiler supports __attribute__((always_inline)). */ #cmakedefine01 HAVE_ATTRIBUTE_ALWAYS_INLINE /* Define to 1 if the compiler supports __builtin_ctz and friends. */ #cmakedefine01 HAVE_BUILTIN_CTZ /* Define to 1 if the compiler supports __builtin_expect. */ #cmakedefine01 HAVE_BUILTIN_EXPECT /* Define to 1 if the compiler supports __builtin_prefetch. */ #cmakedefine01 HAVE_BUILTIN_PREFETCH /* Define to 1 if you have a definition for mmap() in . */ #cmakedefine01 HAVE_FUNC_MMAP /* Define to 1 if you have a definition for sysconf() in . */ #cmakedefine01 HAVE_FUNC_SYSCONF /* Define to 1 if you have the `lzo2' library (-llzo2). */ #cmakedefine01 HAVE_LIBLZO2 /* Define to 1 if you have the `z' library (-lz). */ #cmakedefine01 HAVE_LIBZ /* Define to 1 if you have the `lz4' library (-llz4). */ #cmakedefine01 HAVE_LIBLZ4 /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_SYS_MMAN_H /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_SYS_RESOURCE_H /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_SYS_TIME_H /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_SYS_UIO_H /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_UNISTD_H /* Define to 1 if you have the header file. */ #cmakedefine01 HAVE_WINDOWS_H /* Define to 1 if you target processors with SSSE3+ and have . */ #cmakedefine01 SNAPPY_HAVE_SSSE3 /* Define to 1 if you target processors with SSE4.2 and have . */ #cmakedefine01 SNAPPY_HAVE_X86_CRC32 /* Define to 1 if you target processors with BMI2+ and have . */ #cmakedefine01 SNAPPY_HAVE_BMI2 /* Define to 1 if you target processors with NEON and have . */ #cmakedefine01 SNAPPY_HAVE_NEON /* Define to 1 if you have and and want to optimize compression speed by using __crc32cw from . */ #cmakedefine01 SNAPPY_HAVE_NEON_CRC32 /* Define to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel and VAX). */ #cmakedefine01 SNAPPY_IS_BIG_ENDIAN #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_CMAKE_CONFIG_H_ snappy-1.2.2/docs/000077500000000000000000000000001477101537200137655ustar00rootroot00000000000000snappy-1.2.2/docs/README.md000066400000000000000000000074411477101537200152520ustar00rootroot00000000000000Snappy is a compression/decompression library. It does not aim for maximum compression, or compatibility with any other compression library; instead, it aims for very high speeds and reasonable compression. For instance, compared to the fastest mode of zlib, Snappy is an order of magnitude faster for most inputs, but the resulting compressed files are anywhere from 20% to 100% bigger. On a single core of a Core i7 processor in 64-bit mode, Snappy compresses at about 250 MB/sec or more and decompresses at about 500 MB/sec or more. Snappy is widely used inside Google, in everything from BigTable and MapReduce to our internal RPC systems. (Snappy has previously been referred to as "Zippy" in some presentations and the likes.) For more information, please see the [README](../README.md). Benchmarks against a few other compression libraries (zlib, LZO, LZF, FastLZ, and QuickLZ) are included in the source code distribution. The source code also contains a [formal format specification](../format_description.txt), as well as a specification for a [framing format](../framing_format.txt) useful for higher-level framing and encapsulation of Snappy data, e.g. for transporting Snappy-compressed data across HTTP in a streaming fashion. Note that the Snappy distribution currently has no code implementing the latter, but some of the ports do (see below). Snappy is written in C++, but C bindings are included, and several bindings to other languages are maintained by third parties: * C#: [Snappy for .NET](http://snappy4net.codeplex.com/) (P/Invoke wrapper), [Snappy.NET](http://snappy.angeloflogic.com/) (P/Invoke wrapper), [Snappy.Sharp](https://github.com/jeffesp/Snappy.Sharp) (native reimplementation) * [C port](http://github.com/andikleen/snappy-c) * [C++ MSVC packaging](http://snappy.angeloflogic.com/) (plus Windows binaries, NuGet packages and command-line tool) * Common Lisp: [Library bindings](http://flambard.github.com/thnappy/), [native reimplementation](https://github.com/brown/snappy) * Erlang: [esnappy](https://github.com/thekvs/esnappy), [snappy-erlang-nif](https://github.com/fdmanana/snappy-erlang-nif) * [Go](https://github.com/golang/snappy/) * [Haskell](http://hackage.haskell.org/package/snappy) * [Haxe](https://github.com/MaddinXx/hxsnappy) (C++/Neko) * [iOS packaging](https://github.com/ideawu/snappy-ios) * Java: [JNI wrapper](https://github.com/xerial/snappy-java) (including the framing format), [native reimplementation](http://code.google.com/p/jsnappy/), [other native reimplementation](https://github.com/dain/snappy) (including the framing format) * [Lua](https://github.com/forhappy/lua-snappy) * [Node.js](https://github.com/kesla/node-snappy) (including the [framing format](https://github.com/kesla/node-snappy-stream)) * [Perl](http://search.cpan.org/dist/Compress-Snappy/) * [PHP](https://github.com/kjdev/php-ext-snappy) * [Python](http://pypi.python.org/pypi/python-snappy) (including a command-line tool for the framing format) * [R](https://github.com/lulyon/R-snappy) * [Ruby](https://github.com/miyucy/snappy) * [Rust](https://github.com/BurntSushi/rust-snappy) * [Smalltalk](https://github.com/mumez/sqnappy) (including the framing format) Snappy is used or is available as an alternative in software such as * [MongoDB](https://www.mongodb.com/) * [Cassandra](http://cassandra.apache.org/) * [Couchbase](http://www.couchbase.com/) * [Hadoop](http://hadoop.apache.org/) * [LessFS](http://www.lessfs.com/wordpress/) * [LevelDB](https://github.com/google/leveldb) (which is in turn used by [Google Chrome](http://chrome.google.com/)) * [Lucene](http://lucene.apache.org/) * [VoltDB](http://voltdb.com/) If you know of more, do not hesitate to let us know. The easiest way to get in touch is via the [Snappy discussion mailing list](http://groups.google.com/group/snappy-compression). snappy-1.2.2/format_description.txt000066400000000000000000000104441477101537200174740ustar00rootroot00000000000000Snappy compressed format description Last revised: 2011-10-05 This is not a formal specification, but should suffice to explain most relevant parts of how the Snappy format works. It is originally based on text by Zeev Tarantov. Snappy is a LZ77-type compressor with a fixed, byte-oriented encoding. There is no entropy encoder backend nor framing layer -- the latter is assumed to be handled by other parts of the system. This document only describes the format, not how the Snappy compressor nor decompressor actually works. The correctness of the decompressor should not depend on implementation details of the compressor, and vice versa. 1. Preamble The stream starts with the uncompressed length (up to a maximum of 2^32 - 1), stored as a little-endian varint. Varints consist of a series of bytes, where the lower 7 bits are data and the upper bit is set iff there are more bytes to be read. In other words, an uncompressed length of 64 would be stored as 0x40, and an uncompressed length of 2097150 (0x1FFFFE) would be stored as 0xFE 0xFF 0x7F. 2. The compressed stream itself There are two types of elements in a Snappy stream: Literals and copies (backreferences). There is no restriction on the order of elements, except that the stream naturally cannot start with a copy. (Having two literals in a row is never optimal from a compression point of view, but nevertheless fully permitted.) Each element starts with a tag byte, and the lower two bits of this tag byte signal what type of element will follow: 00: Literal 01: Copy with 1-byte offset 10: Copy with 2-byte offset 11: Copy with 4-byte offset The interpretation of the upper six bits are element-dependent. 2.1. Literals (00) Literals are uncompressed data stored directly in the byte stream. The literal length is stored differently depending on the length of the literal: - For literals up to and including 60 bytes in length, the upper six bits of the tag byte contain (len-1). The literal follows immediately thereafter in the bytestream. - For longer literals, the (len-1) value is stored after the tag byte, little-endian. The upper six bits of the tag byte describe how many bytes are used for the length; 60, 61, 62 or 63 for 1-4 bytes, respectively. The literal itself follows after the length. 2.2. Copies Copies are references back into previous decompressed data, telling the decompressor to reuse data it has previously decoded. They encode two values: The _offset_, saying how many bytes back from the current position to read, and the _length_, how many bytes to copy. Offsets of zero can be encoded, but are not legal; similarly, it is possible to encode backreferences that would go past the end of the block (offset > current decompressed position), which is also nonsensical and thus not allowed. As in most LZ77-based compressors, the length can be larger than the offset, yielding a form of run-length encoding (RLE). For instance, "xababab" could be encoded as Note that since the current Snappy compressor works in 32 kB blocks and does not do matching across blocks, it will never produce a bitstream with offsets larger than about 32768. However, the decompressor should not rely on this, as it may change in the future. There are several different kinds of copy elements, depending on the amount of bytes to be copied (length), and how far back the data to be copied is (offset). 2.2.1. Copy with 1-byte offset (01) These elements can encode lengths between [4..11] bytes and offsets between [0..2047] bytes. (len-4) occupies three bits and is stored in bits [2..4] of the tag byte. The offset occupies 11 bits, of which the upper three are stored in the upper three bits ([5..7]) of the tag byte, and the lower eight are stored in a byte following the tag byte. 2.2.2. Copy with 2-byte offset (10) These elements can encode lengths between [1..64] and offsets from [0..65535]. (len-1) occupies six bits and is stored in the upper six bits ([2..7]) of the tag byte. The offset is stored as a little-endian 16-bit integer in the two bytes following the tag byte. 2.2.3. Copy with 4-byte offset (11) These are like the copies with 2-byte offsets (see previous subsection), except that the offset is stored as a 32-bit integer instead of a 16-bit integer (and thus will occupy four bytes). snappy-1.2.2/framing_format.txt000066400000000000000000000116571477101537200166030ustar00rootroot00000000000000Snappy framing format description Last revised: 2013-10-25 This format decribes a framing format for Snappy, allowing compressing to files or streams that can then more easily be decompressed without having to hold the entire stream in memory. It also provides data checksums to help verify integrity. It does not provide metadata checksums, so it does not protect against e.g. all forms of truncations. Implementation of the framing format is optional for Snappy compressors and decompressor; it is not part of the Snappy core specification. 1. General structure The file consists solely of chunks, lying back-to-back with no padding in between. Each chunk consists first a single byte of chunk identifier, then a three-byte little-endian length of the chunk in bytes (from 0 to 16777215, inclusive), and then the data if any. The four bytes of chunk header is not counted in the data length. The different chunk types are listed below. The first chunk must always be the stream identifier chunk (see section 4.1, below). The stream ends when the file ends -- there is no explicit end-of-file marker. 2. File type identification The following identifiers for this format are recommended where appropriate. However, note that none have been registered officially, so this is only to be taken as a guideline. We use "Snappy framed" to distinguish between this format and raw Snappy data. File extension: .sz MIME type: application/x-snappy-framed HTTP Content-Encoding: x-snappy-framed 3. Checksum format Some chunks have data protected by a checksum (the ones that do will say so explicitly). The checksums are always masked CRC-32Cs. A description of CRC-32C can be found in RFC 3720, section 12.1, with examples in section B.4. Checksums are not stored directly, but masked, as checksumming data and then its own checksum can be problematic. The masking is the same as used in Apache Hadoop: Rotate the checksum by 15 bits, then add the constant 0xa282ead8 (using wraparound as normal for unsigned integers). This is equivalent to the following C code: uint32_t mask_checksum(uint32_t x) { return ((x >> 15) | (x << 17)) + 0xa282ead8; } Note that the masking is reversible. The checksum is always stored as a four bytes long integer, in little-endian. 4. Chunk types The currently supported chunk types are described below. The list may be extended in the future. 4.1. Stream identifier (chunk type 0xff) The stream identifier is always the first element in the stream. It is exactly six bytes long and contains "sNaPpY" in ASCII. This means that a valid Snappy framed stream always starts with the bytes 0xff 0x06 0x00 0x00 0x73 0x4e 0x61 0x50 0x70 0x59 The stream identifier chunk can come multiple times in the stream besides the first; if such a chunk shows up, it should simply be ignored, assuming it has the right length and contents. This allows for easy concatenation of compressed files without the need for re-framing. 4.2. Compressed data (chunk type 0x00) Compressed data chunks contain a normal Snappy compressed bitstream; see the compressed format specification. The compressed data is preceded by the CRC-32C (see section 3) of the _uncompressed_ data. Note that the data portion of the chunk, i.e., the compressed contents, can be at most 16777211 bytes (2^24 - 1, minus the checksum). However, we place an additional restriction that the uncompressed data in a chunk must be no longer than 65536 bytes. This allows consumers to easily use small fixed-size buffers. 4.3. Uncompressed data (chunk type 0x01) Uncompressed data chunks allow a compressor to send uncompressed, raw data; this is useful if, for instance, uncompressible or near-incompressible data is detected, and faster decompression is desired. As in the compressed chunks, the data is preceded by its own masked CRC-32C (see section 3). An uncompressed data chunk, like compressed data chunks, should contain no more than 65536 data bytes, so the maximum legal chunk length with the checksum is 65540. 4.4. Padding (chunk type 0xfe) Padding chunks allow a compressor to increase the size of the data stream so that it complies with external demands, e.g. that the total number of bytes is a multiple of some value. All bytes of the padding chunk, except the chunk byte itself and the length, should be zero, but decompressors must not try to interpret or verify the padding data in any way. 4.5. Reserved unskippable chunks (chunk types 0x02-0x7f) These are reserved for future expansion. A decoder that sees such a chunk should immediately return an error, as it must assume it cannot decode the stream correctly. Future versions of this specification may define meanings for these chunks. 4.6. Reserved skippable chunks (chunk types 0x80-0xfd) These are also reserved for future expansion, but unlike the chunks described in 4.5, a decoder seeing these must skip them and continue decoding. Future versions of this specification may define meanings for these chunks. snappy-1.2.2/snappy-c.cc000066400000000000000000000070651477101537200151060ustar00rootroot00000000000000// Copyright 2011 Martin Gieseking . // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "snappy.h" #include "snappy-c.h" extern "C" { snappy_status snappy_compress(const char* input, size_t input_length, char* compressed, size_t *compressed_length) { if (*compressed_length < snappy_max_compressed_length(input_length)) { return SNAPPY_BUFFER_TOO_SMALL; } snappy::RawCompress(input, input_length, compressed, compressed_length); return SNAPPY_OK; } snappy_status snappy_uncompress(const char* compressed, size_t compressed_length, char* uncompressed, size_t* uncompressed_length) { size_t real_uncompressed_length; if (!snappy::GetUncompressedLength(compressed, compressed_length, &real_uncompressed_length)) { return SNAPPY_INVALID_INPUT; } if (*uncompressed_length < real_uncompressed_length) { return SNAPPY_BUFFER_TOO_SMALL; } if (!snappy::RawUncompress(compressed, compressed_length, uncompressed)) { return SNAPPY_INVALID_INPUT; } *uncompressed_length = real_uncompressed_length; return SNAPPY_OK; } size_t snappy_max_compressed_length(size_t source_length) { return snappy::MaxCompressedLength(source_length); } snappy_status snappy_uncompressed_length(const char *compressed, size_t compressed_length, size_t *result) { if (snappy::GetUncompressedLength(compressed, compressed_length, result)) { return SNAPPY_OK; } else { return SNAPPY_INVALID_INPUT; } } snappy_status snappy_validate_compressed_buffer(const char *compressed, size_t compressed_length) { if (snappy::IsValidCompressedBuffer(compressed, compressed_length)) { return SNAPPY_OK; } else { return SNAPPY_INVALID_INPUT; } } } // extern "C" snappy-1.2.2/snappy-c.h000066400000000000000000000124461477101537200147470ustar00rootroot00000000000000/* * Copyright 2011 Martin Gieseking . * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above * copyright notice, this list of conditions and the following disclaimer * in the documentation and/or other materials provided with the * distribution. * * Neither the name of Google Inc. nor the names of its * contributors may be used to endorse or promote products derived from * this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * Plain C interface (a wrapper around the C++ implementation). */ #ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_C_H_ #define THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_C_H_ #ifdef __cplusplus extern "C" { #endif #include /* * Return values; see the documentation for each function to know * what each can return. */ typedef enum { SNAPPY_OK = 0, SNAPPY_INVALID_INPUT = 1, SNAPPY_BUFFER_TOO_SMALL = 2 } snappy_status; /* * Takes the data stored in "input[0..input_length-1]" and stores * it in the array pointed to by "compressed". * * signals the space available in "compressed". * If it is not at least equal to "snappy_max_compressed_length(input_length)", * SNAPPY_BUFFER_TOO_SMALL is returned. After successful compression, * contains the true length of the compressed output, * and SNAPPY_OK is returned. * * Example: * size_t output_length = snappy_max_compressed_length(input_length); * char* output = (char*)malloc(output_length); * if (snappy_compress(input, input_length, output, &output_length) * == SNAPPY_OK) { * ... Process(output, output_length) ... * } * free(output); */ snappy_status snappy_compress(const char* input, size_t input_length, char* compressed, size_t* compressed_length); /* * Given data in "compressed[0..compressed_length-1]" generated by * calling the snappy_compress routine, this routine stores * the uncompressed data to * uncompressed[0..uncompressed_length-1]. * Returns failure (a value not equal to SNAPPY_OK) if the message * is corrupted and could not be decrypted. * * signals the space available in "uncompressed". * If it is not at least equal to the value returned by * snappy_uncompressed_length for this stream, SNAPPY_BUFFER_TOO_SMALL * is returned. After successful decompression, * contains the true length of the decompressed output. * * Example: * size_t output_length; * if (snappy_uncompressed_length(input, input_length, &output_length) * != SNAPPY_OK) { * ... fail ... * } * char* output = (char*)malloc(output_length); * if (snappy_uncompress(input, input_length, output, &output_length) * == SNAPPY_OK) { * ... Process(output, output_length) ... * } * free(output); */ snappy_status snappy_uncompress(const char* compressed, size_t compressed_length, char* uncompressed, size_t* uncompressed_length); /* * Returns the maximal size of the compressed representation of * input data that is "source_length" bytes in length. */ size_t snappy_max_compressed_length(size_t source_length); /* * REQUIRES: "compressed[]" was produced by snappy_compress() * Returns SNAPPY_OK and stores the length of the uncompressed data in * *result normally. Returns SNAPPY_INVALID_INPUT on parsing error. * This operation takes O(1) time. */ snappy_status snappy_uncompressed_length(const char* compressed, size_t compressed_length, size_t* result); /* * Check if the contents of "compressed[]" can be uncompressed successfully. * Does not return the uncompressed data; if so, returns SNAPPY_OK, * or if not, returns SNAPPY_INVALID_INPUT. * Takes time proportional to compressed_length, but is usually at least a * factor of four faster than actual decompression. */ snappy_status snappy_validate_compressed_buffer(const char* compressed, size_t compressed_length); #ifdef __cplusplus } // extern "C" #endif #endif /* THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_C_H_ */ snappy-1.2.2/snappy-internal.h000066400000000000000000000407311477101537200163370ustar00rootroot00000000000000// Copyright 2008 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Internals shared between the Snappy implementation and its unittest. #ifndef THIRD_PARTY_SNAPPY_SNAPPY_INTERNAL_H_ #define THIRD_PARTY_SNAPPY_SNAPPY_INTERNAL_H_ #include #include "snappy-stubs-internal.h" #if SNAPPY_HAVE_SSSE3 // Please do not replace with or with headers that assume more // advanced SSE versions without checking with all the OWNERS. #include #include #endif #if SNAPPY_HAVE_NEON #include #endif #if SNAPPY_HAVE_SSSE3 || SNAPPY_HAVE_NEON #define SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE 1 #else #define SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE 0 #endif namespace snappy { namespace internal { #if SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE #if SNAPPY_HAVE_SSSE3 using V128 = __m128i; #elif SNAPPY_HAVE_NEON using V128 = uint8x16_t; #endif // Load 128 bits of integer data. `src` must be 16-byte aligned. inline V128 V128_Load(const V128* src); // Load 128 bits of integer data. `src` does not need to be aligned. inline V128 V128_LoadU(const V128* src); // Store 128 bits of integer data. `dst` does not need to be aligned. inline void V128_StoreU(V128* dst, V128 val); // Shuffle packed 8-bit integers using a shuffle mask. // Each packed integer in the shuffle mask must be in [0,16). inline V128 V128_Shuffle(V128 input, V128 shuffle_mask); // Constructs V128 with 16 chars |c|. inline V128 V128_DupChar(char c); #if SNAPPY_HAVE_SSSE3 inline V128 V128_Load(const V128* src) { return _mm_load_si128(src); } inline V128 V128_LoadU(const V128* src) { return _mm_loadu_si128(src); } inline void V128_StoreU(V128* dst, V128 val) { _mm_storeu_si128(dst, val); } inline V128 V128_Shuffle(V128 input, V128 shuffle_mask) { return _mm_shuffle_epi8(input, shuffle_mask); } inline V128 V128_DupChar(char c) { return _mm_set1_epi8(c); } #elif SNAPPY_HAVE_NEON inline V128 V128_Load(const V128* src) { return vld1q_u8(reinterpret_cast(src)); } inline V128 V128_LoadU(const V128* src) { return vld1q_u8(reinterpret_cast(src)); } inline void V128_StoreU(V128* dst, V128 val) { vst1q_u8(reinterpret_cast(dst), val); } inline V128 V128_Shuffle(V128 input, V128 shuffle_mask) { assert(vminvq_u8(shuffle_mask) >= 0 && vmaxvq_u8(shuffle_mask) <= 15); return vqtbl1q_u8(input, shuffle_mask); } inline V128 V128_DupChar(char c) { return vdupq_n_u8(c); } #endif #endif // SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE // Working memory performs a single allocation to hold all scratch space // required for compression. class WorkingMemory { public: explicit WorkingMemory(size_t input_size); ~WorkingMemory(); // Allocates and clears a hash table using memory in "*this", // stores the number of buckets in "*table_size" and returns a pointer to // the base of the hash table. uint16_t* GetHashTable(size_t fragment_size, int* table_size) const; char* GetScratchInput() const { return input_; } char* GetScratchOutput() const { return output_; } private: char* mem_; // the allocated memory, never nullptr size_t size_; // the size of the allocated memory, never 0 uint16_t* table_; // the pointer to the hashtable char* input_; // the pointer to the input scratch buffer char* output_; // the pointer to the output scratch buffer // No copying WorkingMemory(const WorkingMemory&); void operator=(const WorkingMemory&); }; // Flat array compression that does not emit the "uncompressed length" // prefix. Compresses "input" string to the "*op" buffer. // // REQUIRES: "input_length <= kBlockSize" // REQUIRES: "op" points to an array of memory that is at least // "MaxCompressedLength(input_length)" in size. // REQUIRES: All elements in "table[0..table_size-1]" are initialized to zero. // REQUIRES: "table_size" is a power of two // // Returns an "end" pointer into "op" buffer. // "end - op" is the compressed size of "input". char* CompressFragment(const char* input, size_t input_length, char* op, uint16_t* table, const int table_size); // Find the largest n such that // // s1[0,n-1] == s2[0,n-1] // and n <= (s2_limit - s2). // // Return make_pair(n, n < 8). // Does not read *s2_limit or beyond. // Does not read *(s1 + (s2_limit - s2)) or beyond. // Requires that s2_limit >= s2. // // In addition populate *data with the next 5 bytes from the end of the match. // This is only done if 8 bytes are available (s2_limit - s2 >= 8). The point is // that on some arch's this can be done faster in this routine than subsequent // loading from s2 + n. // // Separate implementation for 64-bit, little-endian cpus. #if !SNAPPY_IS_BIG_ENDIAN && \ (defined(__x86_64__) || defined(_M_X64) || defined(ARCH_PPC) || \ defined(ARCH_ARM)) static inline std::pair FindMatchLength(const char* s1, const char* s2, const char* s2_limit, uint64_t* data) { assert(s2_limit >= s2); size_t matched = 0; // This block isn't necessary for correctness; we could just start looping // immediately. As an optimization though, it is useful. It creates some not // uncommon code paths that determine, without extra effort, whether the match // length is less than 8. In short, we are hoping to avoid a conditional // branch, and perhaps get better code layout from the C++ compiler. if (SNAPPY_PREDICT_TRUE(s2 <= s2_limit - 16)) { uint64_t a1 = UNALIGNED_LOAD64(s1); uint64_t a2 = UNALIGNED_LOAD64(s2); if (SNAPPY_PREDICT_TRUE(a1 != a2)) { // This code is critical for performance. The reason is that it determines // how much to advance `ip` (s2). This obviously depends on both the loads // from the `candidate` (s1) and `ip`. Furthermore the next `candidate` // depends on the advanced `ip` calculated here through a load, hash and // new candidate hash lookup (a lot of cycles). This makes s1 (ie. // `candidate`) the variable that limits throughput. This is the reason we // go through hoops to have this function update `data` for the next iter. // The straightforward code would use *data, given by // // *data = UNALIGNED_LOAD64(s2 + matched_bytes) (Latency of 5 cycles), // // as input for the hash table lookup to find next candidate. However // this forces the load on the data dependency chain of s1, because // matched_bytes directly depends on s1. However matched_bytes is 0..7, so // we can also calculate *data by // // *data = AlignRight(UNALIGNED_LOAD64(s2), UNALIGNED_LOAD64(s2 + 8), // matched_bytes); // // The loads do not depend on s1 anymore and are thus off the bottleneck. // The straightforward implementation on x86_64 would be to use // // shrd rax, rdx, cl (cl being matched_bytes * 8) // // unfortunately shrd with a variable shift has a 4 cycle latency. So this // only wins 1 cycle. The BMI2 shrx instruction is a 1 cycle variable // shift instruction but can only shift 64 bits. If we focus on just // obtaining the least significant 4 bytes, we can obtain this by // // *data = ConditionalMove(matched_bytes < 4, UNALIGNED_LOAD64(s2), // UNALIGNED_LOAD64(s2 + 4) >> ((matched_bytes & 3) * 8); // // Writen like above this is not a big win, the conditional move would be // a cmp followed by a cmov (2 cycles) followed by a shift (1 cycle). // However matched_bytes < 4 is equal to // static_cast(xorval) != 0. Writen that way, the conditional // move (2 cycles) can execute in parallel with FindLSBSetNonZero64 // (tzcnt), which takes 3 cycles. uint64_t xorval = a1 ^ a2; int shift = Bits::FindLSBSetNonZero64(xorval); size_t matched_bytes = shift >> 3; uint64_t a3 = UNALIGNED_LOAD64(s2 + 4); #ifndef __x86_64__ a2 = static_cast(xorval) == 0 ? a3 : a2; #else // Ideally this would just be // // a2 = static_cast(xorval) == 0 ? a3 : a2; // // However clang correctly infers that the above statement participates on // a critical data dependency chain and thus, unfortunately, refuses to // use a conditional move (it's tuned to cut data dependencies). In this // case there is a longer parallel chain anyway AND this will be fairly // unpredictable. asm("testl %k2, %k2\n\t" "cmovzq %1, %0\n\t" : "+r"(a2) : "r"(a3), "r"(xorval) : "cc"); #endif *data = a2 >> (shift & (3 * 8)); return std::pair(matched_bytes, true); } else { matched = 8; s2 += 8; } } SNAPPY_PREFETCH(s1 + 64); SNAPPY_PREFETCH(s2 + 64); // Find out how long the match is. We loop over the data 64 bits at a // time until we find a 64-bit block that doesn't match; then we find // the first non-matching bit and use that to calculate the total // length of the match. while (SNAPPY_PREDICT_TRUE(s2 <= s2_limit - 16)) { uint64_t a1 = UNALIGNED_LOAD64(s1 + matched); uint64_t a2 = UNALIGNED_LOAD64(s2); if (a1 == a2) { s2 += 8; matched += 8; } else { uint64_t xorval = a1 ^ a2; int shift = Bits::FindLSBSetNonZero64(xorval); size_t matched_bytes = shift >> 3; uint64_t a3 = UNALIGNED_LOAD64(s2 + 4); #ifndef __x86_64__ a2 = static_cast(xorval) == 0 ? a3 : a2; #else asm("testl %k2, %k2\n\t" "cmovzq %1, %0\n\t" : "+r"(a2) : "r"(a3), "r"(xorval) : "cc"); #endif *data = a2 >> (shift & (3 * 8)); matched += matched_bytes; assert(matched >= 8); return std::pair(matched, false); } } while (SNAPPY_PREDICT_TRUE(s2 < s2_limit)) { if (s1[matched] == *s2) { ++s2; ++matched; } else { if (s2 <= s2_limit - 8) { *data = UNALIGNED_LOAD64(s2); } return std::pair(matched, matched < 8); } } return std::pair(matched, matched < 8); } #else static inline std::pair FindMatchLength(const char* s1, const char* s2, const char* s2_limit, uint64_t* data) { // Implementation based on the x86-64 version, above. assert(s2_limit >= s2); int matched = 0; while (s2 <= s2_limit - 4 && UNALIGNED_LOAD32(s2) == UNALIGNED_LOAD32(s1 + matched)) { s2 += 4; matched += 4; } if (LittleEndian::IsLittleEndian() && s2 <= s2_limit - 4) { uint32_t x = UNALIGNED_LOAD32(s2) ^ UNALIGNED_LOAD32(s1 + matched); int matching_bits = Bits::FindLSBSetNonZero(x); matched += matching_bits >> 3; s2 += matching_bits >> 3; } else { while ((s2 < s2_limit) && (s1[matched] == *s2)) { ++s2; ++matched; } } if (s2 <= s2_limit - 8) *data = LittleEndian::Load64(s2); return std::pair(matched, matched < 8); } #endif static inline size_t FindMatchLengthPlain(const char* s1, const char* s2, const char* s2_limit) { // Implementation based on the x86-64 version, above. assert(s2_limit >= s2); int matched = 0; while (s2 <= s2_limit - 8 && UNALIGNED_LOAD64(s2) == UNALIGNED_LOAD64(s1 + matched)) { s2 += 8; matched += 8; } if (LittleEndian::IsLittleEndian() && s2 <= s2_limit - 8) { uint64_t x = UNALIGNED_LOAD64(s2) ^ UNALIGNED_LOAD64(s1 + matched); int matching_bits = Bits::FindLSBSetNonZero64(x); matched += matching_bits >> 3; s2 += matching_bits >> 3; } else { while ((s2 < s2_limit) && (s1[matched] == *s2)) { ++s2; ++matched; } } return matched; } // Lookup tables for decompression code. Give --snappy_dump_decompression_table // to the unit test to recompute char_table. enum { LITERAL = 0, COPY_1_BYTE_OFFSET = 1, // 3 bit length + 3 bits of offset in opcode COPY_2_BYTE_OFFSET = 2, COPY_4_BYTE_OFFSET = 3 }; static const int kMaximumTagLength = 5; // COPY_4_BYTE_OFFSET plus the actual offset. // Data stored per entry in lookup table: // Range Bits-used Description // ------------------------------------ // 1..64 0..7 Literal/copy length encoded in opcode byte // 0..7 8..10 Copy offset encoded in opcode byte / 256 // 0..4 11..13 Extra bytes after opcode // // We use eight bits for the length even though 7 would have sufficed // because of efficiency reasons: // (1) Extracting a byte is faster than a bit-field // (2) It properly aligns copy offset so we do not need a <<8 static constexpr uint16_t char_table[256] = { // clang-format off 0x0001, 0x0804, 0x1001, 0x2001, 0x0002, 0x0805, 0x1002, 0x2002, 0x0003, 0x0806, 0x1003, 0x2003, 0x0004, 0x0807, 0x1004, 0x2004, 0x0005, 0x0808, 0x1005, 0x2005, 0x0006, 0x0809, 0x1006, 0x2006, 0x0007, 0x080a, 0x1007, 0x2007, 0x0008, 0x080b, 0x1008, 0x2008, 0x0009, 0x0904, 0x1009, 0x2009, 0x000a, 0x0905, 0x100a, 0x200a, 0x000b, 0x0906, 0x100b, 0x200b, 0x000c, 0x0907, 0x100c, 0x200c, 0x000d, 0x0908, 0x100d, 0x200d, 0x000e, 0x0909, 0x100e, 0x200e, 0x000f, 0x090a, 0x100f, 0x200f, 0x0010, 0x090b, 0x1010, 0x2010, 0x0011, 0x0a04, 0x1011, 0x2011, 0x0012, 0x0a05, 0x1012, 0x2012, 0x0013, 0x0a06, 0x1013, 0x2013, 0x0014, 0x0a07, 0x1014, 0x2014, 0x0015, 0x0a08, 0x1015, 0x2015, 0x0016, 0x0a09, 0x1016, 0x2016, 0x0017, 0x0a0a, 0x1017, 0x2017, 0x0018, 0x0a0b, 0x1018, 0x2018, 0x0019, 0x0b04, 0x1019, 0x2019, 0x001a, 0x0b05, 0x101a, 0x201a, 0x001b, 0x0b06, 0x101b, 0x201b, 0x001c, 0x0b07, 0x101c, 0x201c, 0x001d, 0x0b08, 0x101d, 0x201d, 0x001e, 0x0b09, 0x101e, 0x201e, 0x001f, 0x0b0a, 0x101f, 0x201f, 0x0020, 0x0b0b, 0x1020, 0x2020, 0x0021, 0x0c04, 0x1021, 0x2021, 0x0022, 0x0c05, 0x1022, 0x2022, 0x0023, 0x0c06, 0x1023, 0x2023, 0x0024, 0x0c07, 0x1024, 0x2024, 0x0025, 0x0c08, 0x1025, 0x2025, 0x0026, 0x0c09, 0x1026, 0x2026, 0x0027, 0x0c0a, 0x1027, 0x2027, 0x0028, 0x0c0b, 0x1028, 0x2028, 0x0029, 0x0d04, 0x1029, 0x2029, 0x002a, 0x0d05, 0x102a, 0x202a, 0x002b, 0x0d06, 0x102b, 0x202b, 0x002c, 0x0d07, 0x102c, 0x202c, 0x002d, 0x0d08, 0x102d, 0x202d, 0x002e, 0x0d09, 0x102e, 0x202e, 0x002f, 0x0d0a, 0x102f, 0x202f, 0x0030, 0x0d0b, 0x1030, 0x2030, 0x0031, 0x0e04, 0x1031, 0x2031, 0x0032, 0x0e05, 0x1032, 0x2032, 0x0033, 0x0e06, 0x1033, 0x2033, 0x0034, 0x0e07, 0x1034, 0x2034, 0x0035, 0x0e08, 0x1035, 0x2035, 0x0036, 0x0e09, 0x1036, 0x2036, 0x0037, 0x0e0a, 0x1037, 0x2037, 0x0038, 0x0e0b, 0x1038, 0x2038, 0x0039, 0x0f04, 0x1039, 0x2039, 0x003a, 0x0f05, 0x103a, 0x203a, 0x003b, 0x0f06, 0x103b, 0x203b, 0x003c, 0x0f07, 0x103c, 0x203c, 0x0801, 0x0f08, 0x103d, 0x203d, 0x1001, 0x0f09, 0x103e, 0x203e, 0x1801, 0x0f0a, 0x103f, 0x203f, 0x2001, 0x0f0b, 0x1040, 0x2040, // clang-format on }; } // end namespace internal } // end namespace snappy #endif // THIRD_PARTY_SNAPPY_SNAPPY_INTERNAL_H_ snappy-1.2.2/snappy-sinksource.cc000066400000000000000000000072441477101537200170500ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include "snappy-sinksource.h" namespace snappy { Source::~Source() = default; Sink::~Sink() = default; char* Sink::GetAppendBuffer(size_t length, char* scratch) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)length; return scratch; } char* Sink::GetAppendBufferVariable( size_t min_size, size_t desired_size_hint, char* scratch, size_t scratch_size, size_t* allocated_size) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)min_size; (void)desired_size_hint; *allocated_size = scratch_size; return scratch; } void Sink::AppendAndTakeOwnership( char* bytes, size_t n, void (*deleter)(void*, const char*, size_t), void *deleter_arg) { Append(bytes, n); (*deleter)(deleter_arg, bytes, n); } ByteArraySource::~ByteArraySource() = default; size_t ByteArraySource::Available() const { return left_; } const char* ByteArraySource::Peek(size_t* len) { *len = left_; return ptr_; } void ByteArraySource::Skip(size_t n) { left_ -= n; ptr_ += n; } UncheckedByteArraySink::~UncheckedByteArraySink() { } void UncheckedByteArraySink::Append(const char* data, size_t n) { // Do no copying if the caller filled in the result of GetAppendBuffer() if (data != dest_) { std::memcpy(dest_, data, n); } dest_ += n; } char* UncheckedByteArraySink::GetAppendBuffer(size_t len, char* scratch) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)len; (void)scratch; return dest_; } void UncheckedByteArraySink::AppendAndTakeOwnership( char* bytes, size_t n, void (*deleter)(void*, const char*, size_t), void *deleter_arg) { if (bytes != dest_) { std::memcpy(dest_, bytes, n); (*deleter)(deleter_arg, bytes, n); } dest_ += n; } char* UncheckedByteArraySink::GetAppendBufferVariable( size_t min_size, size_t desired_size_hint, char* scratch, size_t scratch_size, size_t* allocated_size) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)min_size; (void)scratch; (void)scratch_size; *allocated_size = desired_size_hint; return dest_; } } // namespace snappy snappy-1.2.2/snappy-sinksource.h000066400000000000000000000161411477101537200167060ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #ifndef THIRD_PARTY_SNAPPY_SNAPPY_SINKSOURCE_H_ #define THIRD_PARTY_SNAPPY_SNAPPY_SINKSOURCE_H_ #include namespace snappy { // A Sink is an interface that consumes a sequence of bytes. class Sink { public: Sink() { } virtual ~Sink(); // Append "bytes[0,n-1]" to this. virtual void Append(const char* bytes, size_t n) = 0; // Returns a writable buffer of the specified length for appending. // May return a pointer to the caller-owned scratch buffer which // must have at least the indicated length. The returned buffer is // only valid until the next operation on this Sink. // // After writing at most "length" bytes, call Append() with the // pointer returned from this function and the number of bytes // written. Many Append() implementations will avoid copying // bytes if this function returned an internal buffer. // // If a non-scratch buffer is returned, the caller may only pass a // prefix of it to Append(). That is, it is not correct to pass an // interior pointer of the returned array to Append(). // // The default implementation always returns the scratch buffer. virtual char* GetAppendBuffer(size_t length, char* scratch); // For higher performance, Sink implementations can provide custom // AppendAndTakeOwnership() and GetAppendBufferVariable() methods. // These methods can reduce the number of copies done during // compression/decompression. // Append "bytes[0,n-1] to the sink. Takes ownership of "bytes" // and calls the deleter function as (*deleter)(deleter_arg, bytes, n) // to free the buffer. deleter function must be non NULL. // // The default implementation just calls Append and frees "bytes". // Other implementations may avoid a copy while appending the buffer. virtual void AppendAndTakeOwnership( char* bytes, size_t n, void (*deleter)(void*, const char*, size_t), void *deleter_arg); // Returns a writable buffer for appending and writes the buffer's capacity to // *allocated_size. Guarantees *allocated_size >= min_size. // May return a pointer to the caller-owned scratch buffer which must have // scratch_size >= min_size. // // The returned buffer is only valid until the next operation // on this ByteSink. // // After writing at most *allocated_size bytes, call Append() with the // pointer returned from this function and the number of bytes written. // Many Append() implementations will avoid copying bytes if this function // returned an internal buffer. // // If the sink implementation allocates or reallocates an internal buffer, // it should use the desired_size_hint if appropriate. If a caller cannot // provide a reasonable guess at the desired capacity, it should set // desired_size_hint = 0. // // If a non-scratch buffer is returned, the caller may only pass // a prefix to it to Append(). That is, it is not correct to pass an // interior pointer to Append(). // // The default implementation always returns the scratch buffer. virtual char* GetAppendBufferVariable( size_t min_size, size_t desired_size_hint, char* scratch, size_t scratch_size, size_t* allocated_size); private: // No copying Sink(const Sink&); void operator=(const Sink&); }; // A Source is an interface that yields a sequence of bytes class Source { public: Source() { } virtual ~Source(); // Return the number of bytes left to read from the source virtual size_t Available() const = 0; // Peek at the next flat region of the source. Does not reposition // the source. The returned region is empty iff Available()==0. // // Returns a pointer to the beginning of the region and store its // length in *len. // // The returned region is valid until the next call to Skip() or // until this object is destroyed, whichever occurs first. // // The returned region may be larger than Available() (for example // if this ByteSource is a view on a substring of a larger source). // The caller is responsible for ensuring that it only reads the // Available() bytes. virtual const char* Peek(size_t* len) = 0; // Skip the next n bytes. Invalidates any buffer returned by // a previous call to Peek(). // REQUIRES: Available() >= n virtual void Skip(size_t n) = 0; private: // No copying Source(const Source&); void operator=(const Source&); }; // A Source implementation that yields the contents of a flat array class ByteArraySource : public Source { public: ByteArraySource(const char* p, size_t n) : ptr_(p), left_(n) { } ~ByteArraySource() override; size_t Available() const override; const char* Peek(size_t* len) override; void Skip(size_t n) override; private: const char* ptr_; size_t left_; }; // A Sink implementation that writes to a flat array without any bound checks. class UncheckedByteArraySink : public Sink { public: explicit UncheckedByteArraySink(char* dest) : dest_(dest) { } ~UncheckedByteArraySink() override; void Append(const char* data, size_t n) override; char* GetAppendBuffer(size_t len, char* scratch) override; char* GetAppendBufferVariable( size_t min_size, size_t desired_size_hint, char* scratch, size_t scratch_size, size_t* allocated_size) override; void AppendAndTakeOwnership( char* bytes, size_t n, void (*deleter)(void*, const char*, size_t), void *deleter_arg) override; // Return the current output pointer so that a caller can see how // many bytes were produced. // Note: this is not a Sink method. char* CurrentDestination() const { return dest_; } private: char* dest_; }; } // namespace snappy #endif // THIRD_PARTY_SNAPPY_SNAPPY_SINKSOURCE_H_ snappy-1.2.2/snappy-stubs-internal.cc000066400000000000000000000034521477101537200176320ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include "snappy-stubs-internal.h" namespace snappy { void Varint::Append32(std::string* s, uint32_t value) { char buf[Varint::kMax32]; const char* p = Varint::Encode32(buf, value); s->append(buf, p - buf); } } // namespace snappy snappy-1.2.2/snappy-stubs-internal.h000066400000000000000000000416661477101537200175050ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Various stubs for the open-source version of Snappy. #ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_INTERNAL_H_ #define THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_INTERNAL_H_ #if HAVE_CONFIG_H #include "config.h" #endif #include #include #include #include #include #include #if HAVE_SYS_MMAN_H #include #endif #if HAVE_UNISTD_H #include #endif #if defined(_MSC_VER) #include #endif // defined(_MSC_VER) #ifndef __has_feature #define __has_feature(x) 0 #endif #if __has_feature(memory_sanitizer) #include #define SNAPPY_ANNOTATE_MEMORY_IS_INITIALIZED(address, size) \ __msan_unpoison((address), (size)) #else #define SNAPPY_ANNOTATE_MEMORY_IS_INITIALIZED(address, size) /* empty */ #endif // __has_feature(memory_sanitizer) #include "snappy-stubs-public.h" // Used to enable 64-bit optimized versions of some routines. #if defined(__PPC64__) || defined(__powerpc64__) #define ARCH_PPC 1 #elif defined(__aarch64__) || defined(_M_ARM64) #define ARCH_ARM 1 #endif // Needed by OS X, among others. #ifndef MAP_ANONYMOUS #define MAP_ANONYMOUS MAP_ANON #endif // The size of an array, if known at compile-time. // Will give unexpected results if used on a pointer. // We undefine it first, since some compilers already have a definition. #ifdef ARRAYSIZE #undef ARRAYSIZE #endif #define ARRAYSIZE(a) int{sizeof(a) / sizeof(*(a))} // Static prediction hints. #if HAVE_BUILTIN_EXPECT #define SNAPPY_PREDICT_FALSE(x) (__builtin_expect(x, 0)) #define SNAPPY_PREDICT_TRUE(x) (__builtin_expect(!!(x), 1)) #else #define SNAPPY_PREDICT_FALSE(x) x #define SNAPPY_PREDICT_TRUE(x) x #endif // HAVE_BUILTIN_EXPECT // Inlining hints. #if HAVE_ATTRIBUTE_ALWAYS_INLINE #define SNAPPY_ATTRIBUTE_ALWAYS_INLINE __attribute__((always_inline)) #else #define SNAPPY_ATTRIBUTE_ALWAYS_INLINE #endif // HAVE_ATTRIBUTE_ALWAYS_INLINE #if HAVE_BUILTIN_PREFETCH #define SNAPPY_PREFETCH(ptr) __builtin_prefetch(ptr, 0, 3) #else #define SNAPPY_PREFETCH(ptr) (void)(ptr) #endif // Stubbed version of ABSL_FLAG. // // In the open source version, flags can only be changed at compile time. #define SNAPPY_FLAG(flag_type, flag_name, default_value, help) \ flag_type FLAGS_ ## flag_name = default_value namespace snappy { // Stubbed version of absl::GetFlag(). template inline T GetFlag(T flag) { return flag; } static const uint32_t kuint32max = std::numeric_limits::max(); static const int64_t kint64max = std::numeric_limits::max(); // Potentially unaligned loads and stores. inline uint16_t UNALIGNED_LOAD16(const void *p) { // Compiles to a single movzx/ldrh on clang/gcc/msvc. uint16_t v; std::memcpy(&v, p, sizeof(v)); return v; } inline uint32_t UNALIGNED_LOAD32(const void *p) { // Compiles to a single mov/ldr on clang/gcc/msvc. uint32_t v; std::memcpy(&v, p, sizeof(v)); return v; } inline uint64_t UNALIGNED_LOAD64(const void *p) { // Compiles to a single mov/ldr on clang/gcc/msvc. uint64_t v; std::memcpy(&v, p, sizeof(v)); return v; } inline void UNALIGNED_STORE16(void *p, uint16_t v) { // Compiles to a single mov/strh on clang/gcc/msvc. std::memcpy(p, &v, sizeof(v)); } inline void UNALIGNED_STORE32(void *p, uint32_t v) { // Compiles to a single mov/str on clang/gcc/msvc. std::memcpy(p, &v, sizeof(v)); } inline void UNALIGNED_STORE64(void *p, uint64_t v) { // Compiles to a single mov/str on clang/gcc/msvc. std::memcpy(p, &v, sizeof(v)); } // Convert to little-endian storage, opposite of network format. // Convert x from host to little endian: x = LittleEndian.FromHost(x); // convert x from little endian to host: x = LittleEndian.ToHost(x); // // Store values into unaligned memory converting to little endian order: // LittleEndian.Store16(p, x); // // Load unaligned values stored in little endian converting to host order: // x = LittleEndian.Load16(p); class LittleEndian { public: // Functions to do unaligned loads and stores in little-endian order. static inline uint16_t Load16(const void *ptr) { // Compiles to a single mov/str on recent clang and gcc. #if SNAPPY_IS_BIG_ENDIAN const uint8_t* const buffer = reinterpret_cast(ptr); return (static_cast(buffer[0])) | (static_cast(buffer[1]) << 8); #else // memcpy() turns into a single instruction early in the optimization // pipeline (relatively to a series of byte accesses). So, using memcpy // instead of byte accesses may lead to better decisions in more stages of // the optimization pipeline. uint16_t value; std::memcpy(&value, ptr, 2); return value; #endif } static inline uint32_t Load32(const void *ptr) { // Compiles to a single mov/str on recent clang and gcc. #if SNAPPY_IS_BIG_ENDIAN const uint8_t* const buffer = reinterpret_cast(ptr); return (static_cast(buffer[0])) | (static_cast(buffer[1]) << 8) | (static_cast(buffer[2]) << 16) | (static_cast(buffer[3]) << 24); #else // See Load16() for the rationale of using memcpy(). uint32_t value; std::memcpy(&value, ptr, 4); return value; #endif } static inline uint64_t Load64(const void *ptr) { // Compiles to a single mov/str on recent clang and gcc. #if SNAPPY_IS_BIG_ENDIAN const uint8_t* const buffer = reinterpret_cast(ptr); return (static_cast(buffer[0])) | (static_cast(buffer[1]) << 8) | (static_cast(buffer[2]) << 16) | (static_cast(buffer[3]) << 24) | (static_cast(buffer[4]) << 32) | (static_cast(buffer[5]) << 40) | (static_cast(buffer[6]) << 48) | (static_cast(buffer[7]) << 56); #else // See Load16() for the rationale of using memcpy(). uint64_t value; std::memcpy(&value, ptr, 8); return value; #endif } static inline void Store16(void *dst, uint16_t value) { // Compiles to a single mov/str on recent clang and gcc. #if SNAPPY_IS_BIG_ENDIAN uint8_t* const buffer = reinterpret_cast(dst); buffer[0] = static_cast(value); buffer[1] = static_cast(value >> 8); #else // See Load16() for the rationale of using memcpy(). std::memcpy(dst, &value, 2); #endif } static void Store32(void *dst, uint32_t value) { // Compiles to a single mov/str on recent clang and gcc. #if SNAPPY_IS_BIG_ENDIAN uint8_t* const buffer = reinterpret_cast(dst); buffer[0] = static_cast(value); buffer[1] = static_cast(value >> 8); buffer[2] = static_cast(value >> 16); buffer[3] = static_cast(value >> 24); #else // See Load16() for the rationale of using memcpy(). std::memcpy(dst, &value, 4); #endif } static void Store64(void* dst, uint64_t value) { // Compiles to a single mov/str on recent clang and gcc. #if SNAPPY_IS_BIG_ENDIAN uint8_t* const buffer = reinterpret_cast(dst); buffer[0] = static_cast(value); buffer[1] = static_cast(value >> 8); buffer[2] = static_cast(value >> 16); buffer[3] = static_cast(value >> 24); buffer[4] = static_cast(value >> 32); buffer[5] = static_cast(value >> 40); buffer[6] = static_cast(value >> 48); buffer[7] = static_cast(value >> 56); #else // See Load16() for the rationale of using memcpy(). std::memcpy(dst, &value, 8); #endif } static inline constexpr bool IsLittleEndian() { #if SNAPPY_IS_BIG_ENDIAN return false; #else return true; #endif // SNAPPY_IS_BIG_ENDIAN } }; // Some bit-manipulation functions. class Bits { public: // Return floor(log2(n)) for positive integer n. static int Log2FloorNonZero(uint32_t n); // Return floor(log2(n)) for positive integer n. Returns -1 iff n == 0. static int Log2Floor(uint32_t n); // Return the first set least / most significant bit, 0-indexed. Returns an // undefined value if n == 0. FindLSBSetNonZero() is similar to ffs() except // that it's 0-indexed. static int FindLSBSetNonZero(uint32_t n); static int FindLSBSetNonZero64(uint64_t n); private: // No copying Bits(const Bits&); void operator=(const Bits&); }; #if HAVE_BUILTIN_CTZ inline int Bits::Log2FloorNonZero(uint32_t n) { assert(n != 0); // (31 ^ x) is equivalent to (31 - x) for x in [0, 31]. An easy proof // represents subtraction in base 2 and observes that there's no carry. // // GCC and Clang represent __builtin_clz on x86 as 31 ^ _bit_scan_reverse(x). // Using "31 ^" here instead of "31 -" allows the optimizer to strip the // function body down to _bit_scan_reverse(x). return 31 ^ __builtin_clz(n); } inline int Bits::Log2Floor(uint32_t n) { return (n == 0) ? -1 : Bits::Log2FloorNonZero(n); } inline int Bits::FindLSBSetNonZero(uint32_t n) { assert(n != 0); return __builtin_ctz(n); } #elif defined(_MSC_VER) inline int Bits::Log2FloorNonZero(uint32_t n) { assert(n != 0); // NOLINTNEXTLINE(runtime/int): The MSVC intrinsic demands unsigned long. unsigned long where; _BitScanReverse(&where, n); return static_cast(where); } inline int Bits::Log2Floor(uint32_t n) { // NOLINTNEXTLINE(runtime/int): The MSVC intrinsic demands unsigned long. unsigned long where; if (_BitScanReverse(&where, n)) return static_cast(where); return -1; } inline int Bits::FindLSBSetNonZero(uint32_t n) { assert(n != 0); // NOLINTNEXTLINE(runtime/int): The MSVC intrinsic demands unsigned long. unsigned long where; if (_BitScanForward(&where, n)) return static_cast(where); return 32; } #else // Portable versions. inline int Bits::Log2FloorNonZero(uint32_t n) { assert(n != 0); int log = 0; uint32_t value = n; for (int i = 4; i >= 0; --i) { int shift = (1 << i); uint32_t x = value >> shift; if (x != 0) { value = x; log += shift; } } assert(value == 1); return log; } inline int Bits::Log2Floor(uint32_t n) { return (n == 0) ? -1 : Bits::Log2FloorNonZero(n); } inline int Bits::FindLSBSetNonZero(uint32_t n) { assert(n != 0); int rc = 31; for (int i = 4, shift = 1 << 4; i >= 0; --i) { const uint32_t x = n << shift; if (x != 0) { n = x; rc -= shift; } shift >>= 1; } return rc; } #endif // End portable versions. #if HAVE_BUILTIN_CTZ inline int Bits::FindLSBSetNonZero64(uint64_t n) { assert(n != 0); return __builtin_ctzll(n); } #elif defined(_MSC_VER) && (defined(_M_X64) || defined(_M_ARM64)) // _BitScanForward64() is only available on x64 and ARM64. inline int Bits::FindLSBSetNonZero64(uint64_t n) { assert(n != 0); // NOLINTNEXTLINE(runtime/int): The MSVC intrinsic demands unsigned long. unsigned long where; if (_BitScanForward64(&where, n)) return static_cast(where); return 64; } #else // Portable version. // FindLSBSetNonZero64() is defined in terms of FindLSBSetNonZero(). inline int Bits::FindLSBSetNonZero64(uint64_t n) { assert(n != 0); const uint32_t bottombits = static_cast(n); if (bottombits == 0) { // Bottom bits are zero, so scan the top bits. return 32 + FindLSBSetNonZero(static_cast(n >> 32)); } else { return FindLSBSetNonZero(bottombits); } } #endif // HAVE_BUILTIN_CTZ // Variable-length integer encoding. class Varint { public: // Maximum lengths of varint encoding of uint32_t. static const int kMax32 = 5; // Attempts to parse a varint32 from a prefix of the bytes in [ptr,limit-1]. // Never reads a character at or beyond limit. If a valid/terminated varint32 // was found in the range, stores it in *OUTPUT and returns a pointer just // past the last byte of the varint32. Else returns NULL. On success, // "result <= limit". static const char* Parse32WithLimit(const char* ptr, const char* limit, uint32_t* OUTPUT); // REQUIRES "ptr" points to a buffer of length sufficient to hold "v". // EFFECTS Encodes "v" into "ptr" and returns a pointer to the // byte just past the last encoded byte. static char* Encode32(char* ptr, uint32_t v); // EFFECTS Appends the varint representation of "value" to "*s". static void Append32(std::string* s, uint32_t value); }; inline const char* Varint::Parse32WithLimit(const char* p, const char* l, uint32_t* OUTPUT) { const unsigned char* ptr = reinterpret_cast(p); const unsigned char* limit = reinterpret_cast(l); uint32_t b, result; if (ptr >= limit) return NULL; b = *(ptr++); result = b & 127; if (b < 128) goto done; if (ptr >= limit) return NULL; b = *(ptr++); result |= (b & 127) << 7; if (b < 128) goto done; if (ptr >= limit) return NULL; b = *(ptr++); result |= (b & 127) << 14; if (b < 128) goto done; if (ptr >= limit) return NULL; b = *(ptr++); result |= (b & 127) << 21; if (b < 128) goto done; if (ptr >= limit) return NULL; b = *(ptr++); result |= (b & 127) << 28; if (b < 16) goto done; return NULL; // Value is too long to be a varint32 done: *OUTPUT = result; return reinterpret_cast(ptr); } inline char* Varint::Encode32(char* sptr, uint32_t v) { // Operate on characters as unsigneds uint8_t* ptr = reinterpret_cast(sptr); static const uint8_t B = 128; if (v < (1 << 7)) { *(ptr++) = static_cast(v); } else if (v < (1 << 14)) { *(ptr++) = static_cast(v | B); *(ptr++) = static_cast(v >> 7); } else if (v < (1 << 21)) { *(ptr++) = static_cast(v | B); *(ptr++) = static_cast((v >> 7) | B); *(ptr++) = static_cast(v >> 14); } else if (v < (1 << 28)) { *(ptr++) = static_cast(v | B); *(ptr++) = static_cast((v >> 7) | B); *(ptr++) = static_cast((v >> 14) | B); *(ptr++) = static_cast(v >> 21); } else { *(ptr++) = static_cast(v | B); *(ptr++) = static_cast((v>>7) | B); *(ptr++) = static_cast((v>>14) | B); *(ptr++) = static_cast((v>>21) | B); *(ptr++) = static_cast(v >> 28); } return reinterpret_cast(ptr); } // If you know the internal layout of the std::string in use, you can // replace this function with one that resizes the string without // filling the new space with zeros (if applicable) -- // it will be non-portable but faster. inline void STLStringResizeUninitialized(std::string* s, size_t new_size) { s->resize(new_size); } // Return a mutable char* pointing to a string's internal buffer, // which may not be null-terminated. Writing through this pointer will // modify the string. // // string_as_array(&str)[i] is valid for 0 <= i < str.size() until the // next call to a string method that invalidates iterators. // // As of 2006-04, there is no standard-blessed way of getting a // mutable reference to a string's internal buffer. However, issue 530 // (http://www.open-std.org/JTC1/SC22/WG21/docs/lwg-defects.html#530) // proposes this as the method. It will officially be part of the standard // for C++0x. This should already work on all current implementations. inline char* string_as_array(std::string* str) { return str->empty() ? NULL : &*str->begin(); } } // namespace snappy #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_INTERNAL_H_ snappy-1.2.2/snappy-stubs-public.h.in000066400000000000000000000051761477101537200175500ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Various type stubs for the open-source version of Snappy. // // This file cannot include config.h, as it is included from snappy.h, // which is a public header. Instead, snappy-stubs-public.h is generated by // from snappy-stubs-public.h.in at configure time. #ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_ #define THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_ #include #if ${HAVE_SYS_UIO_H_01} // HAVE_SYS_UIO_H #include #endif // HAVE_SYS_UIO_H #define SNAPPY_MAJOR ${PROJECT_VERSION_MAJOR} #define SNAPPY_MINOR ${PROJECT_VERSION_MINOR} #define SNAPPY_PATCHLEVEL ${PROJECT_VERSION_PATCH} #define SNAPPY_VERSION \ ((SNAPPY_MAJOR << 16) | (SNAPPY_MINOR << 8) | SNAPPY_PATCHLEVEL) namespace snappy { #if !${HAVE_SYS_UIO_H_01} // !HAVE_SYS_UIO_H // Windows does not have an iovec type, yet the concept is universally useful. // It is simple to define it ourselves, so we put it inside our own namespace. struct iovec { void* iov_base; size_t iov_len; }; #endif // !HAVE_SYS_UIO_H } // namespace snappy #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_STUBS_PUBLIC_H_ snappy-1.2.2/snappy-test.cc000066400000000000000000000375461477101537200156520ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Various stubs for the unit tests for the open-source version of Snappy. #include "snappy-test.h" #include #include #include #include #include #include namespace file { OptionsStub::OptionsStub() = default; OptionsStub::~OptionsStub() = default; const OptionsStub &Defaults() { static OptionsStub defaults; return defaults; } StatusStub::StatusStub() = default; StatusStub::StatusStub(const StatusStub &) = default; StatusStub &StatusStub::operator=(const StatusStub &) = default; StatusStub::~StatusStub() = default; bool StatusStub::ok() { return true; } StatusStub GetContents(const std::string &filename, std::string *output, const OptionsStub & /* options */) { std::FILE *fp = std::fopen(filename.c_str(), "rb"); if (fp == nullptr) { std::perror(filename.c_str()); std::exit(1); } output->clear(); while (!std::feof(fp)) { char buffer[4096]; size_t bytes_read = std::fread(buffer, 1, sizeof(buffer), fp); if (bytes_read == 0 && std::ferror(fp)) { std::perror("fread"); std::exit(1); } output->append(buffer, bytes_read); } std::fclose(fp); return StatusStub(); } StatusStub SetContents(const std::string &file_name, const std::string &content, const OptionsStub & /* options */) { std::FILE *fp = std::fopen(file_name.c_str(), "wb"); if (fp == nullptr) { std::perror(file_name.c_str()); std::exit(1); } size_t bytes_written = std::fwrite(content.data(), 1, content.size(), fp); if (bytes_written != content.size()) { std::perror("fwrite"); std::exit(1); } std::fclose(fp); return StatusStub(); } } // namespace file namespace snappy { std::string ReadTestDataFile(const std::string& base, size_t size_limit) { std::string contents; const char* srcdir = getenv("srcdir"); // This is set by Automake. std::string prefix; if (srcdir) { prefix = std::string(srcdir) + "/"; } file::GetContents(prefix + "testdata/" + base, &contents, file::Defaults() ).ok(); if (size_limit > 0) { contents = contents.substr(0, size_limit); } return contents; } std::string StrFormat(const char* format, ...) { char buffer[4096]; std::va_list ap; va_start(ap, format); std::vsnprintf(buffer, sizeof(buffer), format, ap); va_end(ap); return buffer; } LogMessage::~LogMessage() { std::cerr << std::endl; } LogMessage &LogMessage::operator<<(const std::string &message) { std::cerr << message; return *this; } LogMessage &LogMessage::operator<<(int number) { std::cerr << number; return *this; } #ifdef _MSC_VER // ~LogMessageCrash calls std::abort() and therefore never exits. This is by // design, so temporarily disable warning C4722. #pragma warning(push) #pragma warning(disable : 4722) #endif LogMessageCrash::~LogMessageCrash() { std::cerr << std::endl; std::abort(); } #ifdef _MSC_VER #pragma warning(pop) #endif #if HAVE_LIBZ ZLib::ZLib() : comp_init_(false), uncomp_init_(false) { Reinit(); } ZLib::~ZLib() { if (comp_init_) { deflateEnd(&comp_stream_); } if (uncomp_init_) { inflateEnd(&uncomp_stream_); } } void ZLib::Reinit() { compression_level_ = Z_DEFAULT_COMPRESSION; window_bits_ = MAX_WBITS; mem_level_ = 8; // DEF_MEM_LEVEL if (comp_init_) { deflateEnd(&comp_stream_); comp_init_ = false; } if (uncomp_init_) { inflateEnd(&uncomp_stream_); uncomp_init_ = false; } first_chunk_ = true; } void ZLib::Reset() { first_chunk_ = true; } // --------- COMPRESS MODE // Initialization method to be called if we hit an error while // compressing. On hitting an error, call this method before returning // the error. void ZLib::CompressErrorInit() { deflateEnd(&comp_stream_); comp_init_ = false; Reset(); } int ZLib::DeflateInit() { return deflateInit2(&comp_stream_, compression_level_, Z_DEFLATED, window_bits_, mem_level_, Z_DEFAULT_STRATEGY); } int ZLib::CompressInit(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen) { int err; comp_stream_.next_in = (Bytef*)source; comp_stream_.avail_in = (uInt)*sourceLen; if ((uLong)comp_stream_.avail_in != *sourceLen) return Z_BUF_ERROR; comp_stream_.next_out = dest; comp_stream_.avail_out = (uInt)*destLen; if ((uLong)comp_stream_.avail_out != *destLen) return Z_BUF_ERROR; if ( !first_chunk_ ) // only need to set up stream the first time through return Z_OK; if (comp_init_) { // we've already initted it err = deflateReset(&comp_stream_); if (err != Z_OK) { LOG(WARNING) << "ERROR: Can't reset compress object; creating a new one"; deflateEnd(&comp_stream_); comp_init_ = false; } } if (!comp_init_) { // first use comp_stream_.zalloc = (alloc_func)0; comp_stream_.zfree = (free_func)0; comp_stream_.opaque = (voidpf)0; err = DeflateInit(); if (err != Z_OK) return err; comp_init_ = true; } return Z_OK; } // In a perfect world we'd always have the full buffer to compress // when the time came, and we could just call Compress(). Alas, we // want to do chunked compression on our webserver. In this // application, we compress the header, send it off, then compress the // results, send them off, then compress the footer. Thus we need to // use the chunked compression features of zlib. int ZLib::CompressAtMostOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen, int flush_mode) { // Z_FULL_FLUSH or Z_FINISH int err; if ( (err=CompressInit(dest, destLen, source, sourceLen)) != Z_OK ) return err; // This is used to figure out how many bytes we wrote *this chunk* int compressed_size = comp_stream_.total_out; // Some setup happens only for the first chunk we compress in a run if ( first_chunk_ ) { first_chunk_ = false; } // flush_mode is Z_FINISH for all mode, Z_SYNC_FLUSH for incremental // compression. err = deflate(&comp_stream_, flush_mode); *sourceLen = comp_stream_.avail_in; if ((err == Z_STREAM_END || err == Z_OK) && comp_stream_.avail_in == 0 && comp_stream_.avail_out != 0 ) { // we processed everything ok and the output buffer was large enough. ; } else if (err == Z_STREAM_END && comp_stream_.avail_in > 0) { return Z_BUF_ERROR; // should never happen } else if (err != Z_OK && err != Z_STREAM_END && err != Z_BUF_ERROR) { // an error happened CompressErrorInit(); return err; } else if (comp_stream_.avail_out == 0) { // not enough space err = Z_BUF_ERROR; } assert(err == Z_OK || err == Z_STREAM_END || err == Z_BUF_ERROR); if (err == Z_STREAM_END) err = Z_OK; // update the crc and other metadata compressed_size = comp_stream_.total_out - compressed_size; // delta *destLen = compressed_size; return err; } int ZLib::CompressChunkOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int flush_mode) { // Z_FULL_FLUSH or Z_FINISH const int ret = CompressAtMostOrAll(dest, destLen, source, &sourceLen, flush_mode); if (ret == Z_BUF_ERROR) CompressErrorInit(); return ret; } // This routine only initializes the compression stream once. Thereafter, it // just does a deflateReset on the stream, which should be faster. int ZLib::Compress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) { int err; if ( (err=CompressChunkOrAll(dest, destLen, source, sourceLen, Z_FINISH)) != Z_OK ) return err; Reset(); // reset for next call to Compress return Z_OK; } // --------- UNCOMPRESS MODE int ZLib::InflateInit() { return inflateInit2(&uncomp_stream_, MAX_WBITS); } // Initialization method to be called if we hit an error while // uncompressing. On hitting an error, call this method before // returning the error. void ZLib::UncompressErrorInit() { inflateEnd(&uncomp_stream_); uncomp_init_ = false; Reset(); } int ZLib::UncompressInit(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen) { int err; uncomp_stream_.next_in = (Bytef*)source; uncomp_stream_.avail_in = (uInt)*sourceLen; // Check for source > 64K on 16-bit machine: if ((uLong)uncomp_stream_.avail_in != *sourceLen) return Z_BUF_ERROR; uncomp_stream_.next_out = dest; uncomp_stream_.avail_out = (uInt)*destLen; if ((uLong)uncomp_stream_.avail_out != *destLen) return Z_BUF_ERROR; if ( !first_chunk_ ) // only need to set up stream the first time through return Z_OK; if (uncomp_init_) { // we've already initted it err = inflateReset(&uncomp_stream_); if (err != Z_OK) { LOG(WARNING) << "ERROR: Can't reset uncompress object; creating a new one"; UncompressErrorInit(); } } if (!uncomp_init_) { uncomp_stream_.zalloc = (alloc_func)0; uncomp_stream_.zfree = (free_func)0; uncomp_stream_.opaque = (voidpf)0; err = InflateInit(); if (err != Z_OK) return err; uncomp_init_ = true; } return Z_OK; } // If you compressed your data a chunk at a time, with CompressChunk, // you can uncompress it a chunk at a time with UncompressChunk. // Only difference bewteen chunked and unchunked uncompression // is the flush mode we use: Z_SYNC_FLUSH (chunked) or Z_FINISH (unchunked). int ZLib::UncompressAtMostOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen, int flush_mode) { // Z_SYNC_FLUSH or Z_FINISH int err = Z_OK; if ( (err=UncompressInit(dest, destLen, source, sourceLen)) != Z_OK ) { LOG(WARNING) << "UncompressInit: Error: " << err << " SourceLen: " << *sourceLen; return err; } // This is used to figure out how many output bytes we wrote *this chunk*: const uLong old_total_out = uncomp_stream_.total_out; // This is used to figure out how many input bytes we read *this chunk*: const uLong old_total_in = uncomp_stream_.total_in; // Some setup happens only for the first chunk we compress in a run if ( first_chunk_ ) { first_chunk_ = false; // so we don't do this again // For the first chunk *only* (to avoid infinite troubles), we let // there be no actual data to uncompress. This sometimes triggers // when the input is only the gzip header, say. if ( *sourceLen == 0 ) { *destLen = 0; return Z_OK; } } // We'll uncompress as much as we can. If we end OK great, otherwise // if we get an error that seems to be the gzip footer, we store the // gzip footer and return OK, otherwise we return the error. // flush_mode is Z_SYNC_FLUSH for chunked mode, Z_FINISH for all mode. err = inflate(&uncomp_stream_, flush_mode); // Figure out how many bytes of the input zlib slurped up: const uLong bytes_read = uncomp_stream_.total_in - old_total_in; CHECK_LE(source + bytes_read, source + *sourceLen); *sourceLen = uncomp_stream_.avail_in; if ((err == Z_STREAM_END || err == Z_OK) // everything went ok && uncomp_stream_.avail_in == 0) { // and we read it all ; } else if (err == Z_STREAM_END && uncomp_stream_.avail_in > 0) { LOG(WARNING) << "UncompressChunkOrAll: Received some extra data, bytes total: " << uncomp_stream_.avail_in << " bytes: " << std::string(reinterpret_cast(uncomp_stream_.next_in), std::min(int(uncomp_stream_.avail_in), 20)); UncompressErrorInit(); return Z_DATA_ERROR; // what's the extra data for? } else if (err != Z_OK && err != Z_STREAM_END && err != Z_BUF_ERROR) { // an error happened LOG(WARNING) << "UncompressChunkOrAll: Error: " << err << " avail_out: " << uncomp_stream_.avail_out; UncompressErrorInit(); return err; } else if (uncomp_stream_.avail_out == 0) { err = Z_BUF_ERROR; } assert(err == Z_OK || err == Z_BUF_ERROR || err == Z_STREAM_END); if (err == Z_STREAM_END) err = Z_OK; *destLen = uncomp_stream_.total_out - old_total_out; // size for this call return err; } int ZLib::UncompressChunkOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int flush_mode) { // Z_SYNC_FLUSH or Z_FINISH const int ret = UncompressAtMostOrAll(dest, destLen, source, &sourceLen, flush_mode); if (ret == Z_BUF_ERROR) UncompressErrorInit(); return ret; } int ZLib::UncompressAtMost(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen) { return UncompressAtMostOrAll(dest, destLen, source, sourceLen, Z_SYNC_FLUSH); } // We make sure we've uncompressed everything, that is, the current // uncompress stream is at a compressed-buffer-EOF boundary. In gzip // mode, we also check the gzip footer to make sure we pass the gzip // consistency checks. We RETURN true iff both types of checks pass. bool ZLib::UncompressChunkDone() { assert(!first_chunk_ && uncomp_init_); // Make sure we're at the end-of-compressed-data point. This means // if we call inflate with Z_FINISH we won't consume any input or // write any output Bytef dummyin, dummyout; uLongf dummylen = 0; if ( UncompressChunkOrAll(&dummyout, &dummylen, &dummyin, 0, Z_FINISH) != Z_OK ) { return false; } // Make sure that when we exit, we can start a new round of chunks later Reset(); return true; } // Uncompresses the source buffer into the destination buffer. // The destination buffer must be long enough to hold the entire // decompressed contents. // // We only initialize the uncomp_stream once. Thereafter, we use // inflateReset, which should be faster. // // Returns Z_OK on success, otherwise, it returns a zlib error code. int ZLib::Uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen) { int err; if ( (err=UncompressChunkOrAll(dest, destLen, source, sourceLen, Z_FINISH)) != Z_OK ) { Reset(); // let us try to compress again return err; } if ( !UncompressChunkDone() ) // calls Reset() return Z_DATA_ERROR; return Z_OK; // stream_end is ok } #endif // HAVE_LIBZ } // namespace snappy snappy-1.2.2/snappy-test.h000066400000000000000000000263501477101537200155030ustar00rootroot00000000000000// Copyright 2011 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Various stubs for the unit tests for the open-source version of Snappy. #ifndef THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_TEST_H_ #define THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_TEST_H_ #if HAVE_CONFIG_H #include "config.h" #endif #include "snappy-stubs-internal.h" #if HAVE_SYS_MMAN_H #include #endif #if HAVE_SYS_RESOURCE_H #include #endif #if HAVE_SYS_TIME_H #include #endif #if HAVE_WINDOWS_H // Needed to be able to use std::max without workarounds in the source code. // https://support.microsoft.com/en-us/help/143208/prb-using-stl-in-windows-program-can-cause-min-max-conflicts #define NOMINMAX #include #endif #define InitGoogle(argv0, argc, argv, remove_flags) ((void)(0)) #if HAVE_LIBZ #include "zlib.h" #endif #if HAVE_LIBLZO2 #include "lzo/lzo1x.h" #endif #if HAVE_LIBLZ4 #include "lz4.h" #endif namespace file { // Stubs the class file::Options. // // This class should not be instantiated explicitly. It should only be used by // passing file::Defaults() to file::GetContents() / file::SetContents(). class OptionsStub { public: OptionsStub(); OptionsStub(const OptionsStub &) = delete; OptionsStub &operator=(const OptionsStub &) = delete; ~OptionsStub(); }; const OptionsStub &Defaults(); // Stubs the class absl::Status. // // This class should not be instantiated explicitly. It should only be used by // passing the result of file::GetContents() / file::SetContents() to // CHECK_OK(). class StatusStub { public: StatusStub(); StatusStub(const StatusStub &); StatusStub &operator=(const StatusStub &); ~StatusStub(); bool ok(); }; StatusStub GetContents(const std::string &file_name, std::string *output, const OptionsStub & /* options */); StatusStub SetContents(const std::string &file_name, const std::string &content, const OptionsStub & /* options */); } // namespace file namespace snappy { #define FLAGS_test_random_seed 301 std::string ReadTestDataFile(const std::string& base, size_t size_limit); // A std::sprintf() variant that returns a std::string. // Not safe for general use due to truncation issues. std::string StrFormat(const char* format, ...); // A wall-time clock. This stub is not super-accurate, nor resistant to the // system time changing. class CycleTimer { public: inline CycleTimer() : real_time_us_(0) {} inline ~CycleTimer() = default; inline void Start() { #ifdef WIN32 QueryPerformanceCounter(&start_); #else ::gettimeofday(&start_, nullptr); #endif } inline void Stop() { #ifdef WIN32 LARGE_INTEGER stop; LARGE_INTEGER frequency; QueryPerformanceCounter(&stop); QueryPerformanceFrequency(&frequency); double elapsed = static_cast(stop.QuadPart - start_.QuadPart) / frequency.QuadPart; real_time_us_ += elapsed * 1e6 + 0.5; #else struct ::timeval stop; ::gettimeofday(&stop, nullptr); real_time_us_ += 1000000 * (stop.tv_sec - start_.tv_sec); real_time_us_ += (stop.tv_usec - start_.tv_usec); #endif } inline double Get() { return real_time_us_ * 1e-6; } private: int64_t real_time_us_; #ifdef WIN32 LARGE_INTEGER start_; #else struct ::timeval start_; #endif }; // Logging. class LogMessage { public: inline LogMessage() = default; ~LogMessage(); LogMessage &operator<<(const std::string &message); LogMessage &operator<<(int number); }; class LogMessageCrash : public LogMessage { public: inline LogMessageCrash() = default; ~LogMessageCrash(); }; // This class is used to explicitly ignore values in the conditional // logging macros. This avoids compiler warnings like "value computed // is not used" and "statement has no effect". class LogMessageVoidify { public: inline LogMessageVoidify() = default; inline ~LogMessageVoidify() = default; // This has to be an operator with a precedence lower than << but // higher than ?: inline void operator&(const LogMessage &) {} }; // Asserts, both versions activated in debug mode only, // and ones that are always active. #define CRASH_UNLESS(condition) \ SNAPPY_PREDICT_TRUE(condition) \ ? (void)0 \ : snappy::LogMessageVoidify() & snappy::LogMessageCrash() #define LOG(level) LogMessage() #define VLOG(level) \ true ? (void)0 : snappy::LogMessageVoidify() & snappy::LogMessage() #define CHECK(cond) CRASH_UNLESS(cond) #define CHECK_LE(a, b) CRASH_UNLESS((a) <= (b)) #define CHECK_GE(a, b) CRASH_UNLESS((a) >= (b)) #define CHECK_EQ(a, b) CRASH_UNLESS((a) == (b)) #define CHECK_NE(a, b) CRASH_UNLESS((a) != (b)) #define CHECK_LT(a, b) CRASH_UNLESS((a) < (b)) #define CHECK_GT(a, b) CRASH_UNLESS((a) > (b)) #define CHECK_OK(cond) (cond).ok() #if HAVE_LIBZ // Object-oriented wrapper around zlib. class ZLib { public: ZLib(); ~ZLib(); // Wipe a ZLib object to a virgin state. This differs from Reset() // in that it also breaks any state. void Reinit(); // Call this to make a zlib buffer as good as new. Here's the only // case where they differ: // CompressChunk(a); CompressChunk(b); CompressChunkDone(); vs // CompressChunk(a); Reset(); CompressChunk(b); CompressChunkDone(); // You'll want to use Reset(), then, when you interrupt a compress // (or uncompress) in the middle of a chunk and want to start over. void Reset(); // According to the zlib manual, when you Compress, the destination // buffer must have size at least src + .1%*src + 12. This function // helps you calculate that. Augment this to account for a potential // gzip header and footer, plus a few bytes of slack. static int MinCompressbufSize(int uncompress_size) { return uncompress_size + uncompress_size/1000 + 40; } // Compresses the source buffer into the destination buffer. // sourceLen is the byte length of the source buffer. // Upon entry, destLen is the total size of the destination buffer, // which must be of size at least MinCompressbufSize(sourceLen). // Upon exit, destLen is the actual size of the compressed buffer. // // This function can be used to compress a whole file at once if the // input file is mmap'ed. // // Returns Z_OK if success, Z_MEM_ERROR if there was not // enough memory, Z_BUF_ERROR if there was not enough room in the // output buffer. Note that if the output buffer is exactly the same // size as the compressed result, we still return Z_BUF_ERROR. // (check CL#1936076) int Compress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen); // Uncompresses the source buffer into the destination buffer. // The destination buffer must be long enough to hold the entire // decompressed contents. // // Returns Z_OK on success, otherwise, it returns a zlib error code. int Uncompress(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen); // Uncompress data one chunk at a time -- ie you can call this // more than once. To get this to work you need to call per-chunk // and "done" routines. // // Returns Z_OK if success, Z_MEM_ERROR if there was not // enough memory, Z_BUF_ERROR if there was not enough room in the // output buffer. int UncompressAtMost(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen); // Checks gzip footer information, as needed. Mostly this just // makes sure the checksums match. Whenever you call this, it // will assume the last 8 bytes from the previous UncompressChunk // call are the footer. Returns true iff everything looks ok. bool UncompressChunkDone(); private: int InflateInit(); // sets up the zlib inflate structure int DeflateInit(); // sets up the zlib deflate structure // These init the zlib data structures for compressing/uncompressing int CompressInit(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen); int UncompressInit(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen); // Initialization method to be called if we hit an error while // uncompressing. On hitting an error, call this method before // returning the error. void UncompressErrorInit(); // Helper function for Compress int CompressChunkOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int flush_mode); int CompressAtMostOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen, int flush_mode); // Likewise for UncompressAndUncompressChunk int UncompressChunkOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong sourceLen, int flush_mode); int UncompressAtMostOrAll(Bytef *dest, uLongf *destLen, const Bytef *source, uLong *sourceLen, int flush_mode); // Initialization method to be called if we hit an error while // compressing. On hitting an error, call this method before // returning the error. void CompressErrorInit(); int compression_level_; // compression level int window_bits_; // log base 2 of the window size used in compression int mem_level_; // specifies the amount of memory to be used by // compressor (1-9) z_stream comp_stream_; // Zlib stream data structure bool comp_init_; // True if we have initialized comp_stream_ z_stream uncomp_stream_; // Zlib stream data structure bool uncomp_init_; // True if we have initialized uncomp_stream_ // These are used only with chunked compression. bool first_chunk_; // true if we need to emit headers with this chunk }; #endif // HAVE_LIBZ } // namespace snappy #endif // THIRD_PARTY_SNAPPY_OPENSOURCE_SNAPPY_TEST_H_ snappy-1.2.2/snappy.cc000066400000000000000000003043241477101537200146640ustar00rootroot00000000000000// Copyright 2005 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include "snappy-internal.h" #include "snappy-sinksource.h" #include "snappy.h" #if !defined(SNAPPY_HAVE_BMI2) // __BMI2__ is defined by GCC and Clang. Visual Studio doesn't target BMI2 // specifically, but it does define __AVX2__ when AVX2 support is available. // Fortunately, AVX2 was introduced in Haswell, just like BMI2. // // BMI2 is not defined as a subset of AVX2 (unlike SSSE3 and AVX above). So, // GCC and Clang can build code with AVX2 enabled but BMI2 disabled, in which // case issuing BMI2 instructions results in a compiler error. #if defined(__BMI2__) || (defined(_MSC_VER) && defined(__AVX2__)) #define SNAPPY_HAVE_BMI2 1 #else #define SNAPPY_HAVE_BMI2 0 #endif #endif // !defined(SNAPPY_HAVE_BMI2) #if !defined(SNAPPY_HAVE_X86_CRC32) #if defined(__SSE4_2__) #define SNAPPY_HAVE_X86_CRC32 1 #else #define SNAPPY_HAVE_X86_CRC32 0 #endif #endif // !defined(SNAPPY_HAVE_X86_CRC32) #if !defined(SNAPPY_HAVE_NEON_CRC32) #if SNAPPY_HAVE_NEON && defined(__ARM_FEATURE_CRC32) #define SNAPPY_HAVE_NEON_CRC32 1 #else #define SNAPPY_HAVE_NEON_CRC32 0 #endif #endif // !defined(SNAPPY_HAVE_NEON_CRC32) #if SNAPPY_HAVE_BMI2 || SNAPPY_HAVE_X86_CRC32 // Please do not replace with . or with headers that assume more // advanced SSE versions without checking with all the OWNERS. #include #elif SNAPPY_HAVE_NEON_CRC32 #include #endif #include #include #include #include #include #include #include #include #include #include #include namespace snappy { namespace { // The amount of slop bytes writers are using for unconditional copies. constexpr int kSlopBytes = 64; using internal::char_table; using internal::COPY_1_BYTE_OFFSET; using internal::COPY_2_BYTE_OFFSET; using internal::COPY_4_BYTE_OFFSET; using internal::kMaximumTagLength; using internal::LITERAL; #if SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE using internal::V128; using internal::V128_Load; using internal::V128_LoadU; using internal::V128_Shuffle; using internal::V128_StoreU; using internal::V128_DupChar; #endif // We translate the information encoded in a tag through a lookup table to a // format that requires fewer instructions to decode. Effectively we store // the length minus the tag part of the offset. The lowest significant byte // thus stores the length. While total length - offset is given by // entry - ExtractOffset(type). The nice thing is that the subtraction // immediately sets the flags for the necessary check that offset >= length. // This folds the cmp with sub. We engineer the long literals and copy-4 to // always fail this check, so their presence doesn't affect the fast path. // To prevent literals from triggering the guard against offset < length (offset // does not apply to literals) the table is giving them a spurious offset of // 256. inline constexpr int16_t MakeEntry(int16_t len, int16_t offset) { return len - (offset << 8); } inline constexpr int16_t LengthMinusOffset(int data, int type) { return type == 3 ? 0xFF // copy-4 (or type == 3) : type == 2 ? MakeEntry(data + 1, 0) // copy-2 : type == 1 ? MakeEntry((data & 7) + 4, data >> 3) // copy-1 : data < 60 ? MakeEntry(data + 1, 1) // note spurious offset. : 0xFF; // long literal } inline constexpr int16_t LengthMinusOffset(uint8_t tag) { return LengthMinusOffset(tag >> 2, tag & 3); } template struct index_sequence {}; template struct make_index_sequence : make_index_sequence {}; template struct make_index_sequence<0, Is...> : index_sequence {}; template constexpr std::array MakeTable(index_sequence) { return std::array{LengthMinusOffset(seq)...}; } alignas(64) const std::array kLengthMinusOffset = MakeTable(make_index_sequence<256>{}); // Given a table of uint16_t whose size is mask / 2 + 1, return a pointer to the // relevant entry, if any, for the given bytes. Any hash function will do, // but a good hash function reduces the number of collisions and thus yields // better compression for compressible input. // // REQUIRES: mask is 2 * (table_size - 1), and table_size is a power of two. inline uint16_t* TableEntry(uint16_t* table, uint32_t bytes, uint32_t mask) { // Our choice is quicker-and-dirtier than the typical hash function; // empirically, that seems beneficial. The upper bits of kMagic * bytes are a // higher-quality hash than the lower bits, so when using kMagic * bytes we // also shift right to get a higher-quality end result. There's no similar // issue with a CRC because all of the output bits of a CRC are equally good // "hashes." So, a CPU instruction for CRC, if available, tends to be a good // choice. #if SNAPPY_HAVE_NEON_CRC32 // We use mask as the second arg to the CRC function, as it's about to // be used anyway; it'd be equally correct to use 0 or some constant. // Mathematically, _mm_crc32_u32 (or similar) is a function of the // xor of its arguments. const uint32_t hash = __crc32cw(bytes, mask); #elif SNAPPY_HAVE_X86_CRC32 const uint32_t hash = _mm_crc32_u32(bytes, mask); #else constexpr uint32_t kMagic = 0x1e35a7bd; const uint32_t hash = (kMagic * bytes) >> (31 - kMaxHashTableBits); #endif return reinterpret_cast(reinterpret_cast(table) + (hash & mask)); } inline uint16_t* TableEntry4ByteMatch(uint16_t* table, uint32_t bytes, uint32_t mask) { constexpr uint32_t kMagic = 2654435761U; const uint32_t hash = (kMagic * bytes) >> (32 - kMaxHashTableBits); return reinterpret_cast(reinterpret_cast(table) + (hash & mask)); } inline uint16_t* TableEntry8ByteMatch(uint16_t* table, uint64_t bytes, uint32_t mask) { constexpr uint64_t kMagic = 58295818150454627ULL; const uint32_t hash = (kMagic * bytes) >> (64 - kMaxHashTableBits); return reinterpret_cast(reinterpret_cast(table) + (hash & mask)); } } // namespace size_t MaxCompressedLength(size_t source_bytes) { // Compressed data can be defined as: // compressed := item* literal* // item := literal* copy // // The trailing literal sequence has a space blowup of at most 62/60 // since a literal of length 60 needs one tag byte + one extra byte // for length information. // // Item blowup is trickier to measure. Suppose the "copy" op copies // 4 bytes of data. Because of a special check in the encoding code, // we produce a 4-byte copy only if the offset is < 65536. Therefore // the copy op takes 3 bytes to encode, and this type of item leads // to at most the 62/60 blowup for representing literals. // // Suppose the "copy" op copies 5 bytes of data. If the offset is big // enough, it will take 5 bytes to encode the copy op. Therefore the // worst case here is a one-byte literal followed by a five-byte copy. // I.e., 6 bytes of input turn into 7 bytes of "compressed" data. // // This last factor dominates the blowup, so the final estimate is: return 32 + source_bytes + source_bytes / 6; } namespace { void UnalignedCopy64(const void* src, void* dst) { char tmp[8]; std::memcpy(tmp, src, 8); std::memcpy(dst, tmp, 8); } void UnalignedCopy128(const void* src, void* dst) { // std::memcpy() gets vectorized when the appropriate compiler options are // used. For example, x86 compilers targeting SSE2+ will optimize to an SSE2 // load and store. char tmp[16]; std::memcpy(tmp, src, 16); std::memcpy(dst, tmp, 16); } template inline void ConditionalUnalignedCopy128(const char* src, char* dst) { if (use_16bytes_chunk) { UnalignedCopy128(src, dst); } else { UnalignedCopy64(src, dst); UnalignedCopy64(src + 8, dst + 8); } } // Copy [src, src+(op_limit-op)) to [op, (op_limit-op)) a byte at a time. Used // for handling COPY operations where the input and output regions may overlap. // For example, suppose: // src == "ab" // op == src + 2 // op_limit == op + 20 // After IncrementalCopySlow(src, op, op_limit), the result will have eleven // copies of "ab" // ababababababababababab // Note that this does not match the semantics of either std::memcpy() or // std::memmove(). inline char* IncrementalCopySlow(const char* src, char* op, char* const op_limit) { // TODO: Remove pragma when LLVM is aware this // function is only called in cold regions and when cold regions don't get // vectorized or unrolled. #ifdef __clang__ #pragma clang loop unroll(disable) #endif while (op < op_limit) { *op++ = *src++; } return op_limit; } #if SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE // Computes the bytes for shuffle control mask (please read comments on // 'pattern_generation_masks' as well) for the given index_offset and // pattern_size. For example, when the 'offset' is 6, it will generate a // repeating pattern of size 6. So, the first 16 byte indexes will correspond to // the pattern-bytes {0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3} and the // next 16 byte indexes will correspond to the pattern-bytes {4, 5, 0, 1, 2, 3, // 4, 5, 0, 1, 2, 3, 4, 5, 0, 1}. These byte index sequences are generated by // calling MakePatternMaskBytes(0, 6, index_sequence<16>()) and // MakePatternMaskBytes(16, 6, index_sequence<16>()) respectively. template inline constexpr std::array MakePatternMaskBytes( int index_offset, int pattern_size, index_sequence) { return {static_cast((index_offset + indexes) % pattern_size)...}; } // Computes the shuffle control mask bytes array for given pattern-sizes and // returns an array. template inline constexpr std::array, sizeof...(pattern_sizes_minus_one)> MakePatternMaskBytesTable(int index_offset, index_sequence) { return { MakePatternMaskBytes(index_offset, pattern_sizes_minus_one + 1, make_index_sequence())...}; } // This is an array of shuffle control masks that can be used as the source // operand for PSHUFB to permute the contents of the destination XMM register // into a repeating byte pattern. alignas(16) constexpr std::array, 16> pattern_generation_masks = MakePatternMaskBytesTable( /*index_offset=*/0, /*pattern_sizes_minus_one=*/make_index_sequence<16>()); // Similar to 'pattern_generation_masks', this table is used to "rotate" the // pattern so that we can copy the *next 16 bytes* consistent with the pattern. // Basically, pattern_reshuffle_masks is a continuation of // pattern_generation_masks. It follows that, pattern_reshuffle_masks is same as // pattern_generation_masks for offsets 1, 2, 4, 8 and 16. alignas(16) constexpr std::array, 16> pattern_reshuffle_masks = MakePatternMaskBytesTable( /*index_offset=*/16, /*pattern_sizes_minus_one=*/make_index_sequence<16>()); SNAPPY_ATTRIBUTE_ALWAYS_INLINE static inline V128 LoadPattern(const char* src, const size_t pattern_size) { V128 generation_mask = V128_Load(reinterpret_cast( pattern_generation_masks[pattern_size - 1].data())); // Uninitialized bytes are masked out by the shuffle mask. // TODO: remove annotation and macro defs once MSan is fixed. SNAPPY_ANNOTATE_MEMORY_IS_INITIALIZED(src + pattern_size, 16 - pattern_size); return V128_Shuffle(V128_LoadU(reinterpret_cast(src)), generation_mask); } SNAPPY_ATTRIBUTE_ALWAYS_INLINE static inline std::pair LoadPatternAndReshuffleMask(const char* src, const size_t pattern_size) { V128 pattern = LoadPattern(src, pattern_size); // This mask will generate the next 16 bytes in-place. Doing so enables us to // write data by at most 4 V128_StoreU. // // For example, suppose pattern is: abcdefabcdefabcd // Shuffling with this mask will generate: efabcdefabcdefab // Shuffling again will generate: cdefabcdefabcdef V128 reshuffle_mask = V128_Load(reinterpret_cast( pattern_reshuffle_masks[pattern_size - 1].data())); return {pattern, reshuffle_mask}; } #endif // SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE // Fallback for when we need to copy while extending the pattern, for example // copying 10 bytes from 3 positions back abc -> abcabcabcabca. // // REQUIRES: [dst - offset, dst + 64) is a valid address range. SNAPPY_ATTRIBUTE_ALWAYS_INLINE static inline bool Copy64BytesWithPatternExtension(char* dst, size_t offset) { #if SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE if (SNAPPY_PREDICT_TRUE(offset <= 16)) { switch (offset) { case 0: return false; case 1: { // TODO: Ideally we should memset, move back once the // codegen issues are fixed. V128 pattern = V128_DupChar(dst[-1]); for (int i = 0; i < 4; i++) { V128_StoreU(reinterpret_cast(dst + 16 * i), pattern); } return true; } case 2: case 4: case 8: case 16: { V128 pattern = LoadPattern(dst - offset, offset); for (int i = 0; i < 4; i++) { V128_StoreU(reinterpret_cast(dst + 16 * i), pattern); } return true; } default: { auto pattern_and_reshuffle_mask = LoadPatternAndReshuffleMask(dst - offset, offset); V128 pattern = pattern_and_reshuffle_mask.first; V128 reshuffle_mask = pattern_and_reshuffle_mask.second; for (int i = 0; i < 4; i++) { V128_StoreU(reinterpret_cast(dst + 16 * i), pattern); pattern = V128_Shuffle(pattern, reshuffle_mask); } return true; } } } #else if (SNAPPY_PREDICT_TRUE(offset < 16)) { if (SNAPPY_PREDICT_FALSE(offset == 0)) return false; // Extend the pattern to the first 16 bytes. // The simpler formulation of `dst[i - offset]` induces undefined behavior. for (int i = 0; i < 16; i++) dst[i] = (dst - offset)[i]; // Find a multiple of pattern >= 16. static std::array pattern_sizes = []() { std::array res; for (int i = 1; i < 16; i++) res[i] = (16 / i + 1) * i; return res; }(); offset = pattern_sizes[offset]; for (int i = 1; i < 4; i++) { std::memcpy(dst + i * 16, dst + i * 16 - offset, 16); } return true; } #endif // SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE // Very rare. for (int i = 0; i < 4; i++) { std::memcpy(dst + i * 16, dst + i * 16 - offset, 16); } return true; } // Copy [src, src+(op_limit-op)) to [op, op_limit) but faster than // IncrementalCopySlow. buf_limit is the address past the end of the writable // region of the buffer. inline char* IncrementalCopy(const char* src, char* op, char* const op_limit, char* const buf_limit) { #if SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE constexpr int big_pattern_size_lower_bound = 16; #else constexpr int big_pattern_size_lower_bound = 8; #endif // Terminology: // // slop = buf_limit - op // pat = op - src // len = op_limit - op assert(src < op); assert(op < op_limit); assert(op_limit <= buf_limit); // NOTE: The copy tags use 3 or 6 bits to store the copy length, so len <= 64. assert(op_limit - op <= 64); // NOTE: In practice the compressor always emits len >= 4, so it is ok to // assume that to optimize this function, but this is not guaranteed by the // compression format, so we have to also handle len < 4 in case the input // does not satisfy these conditions. size_t pattern_size = op - src; // The cases are split into different branches to allow the branch predictor, // FDO, and static prediction hints to work better. For each input we list the // ratio of invocations that match each condition. // // input slop < 16 pat < 8 len > 16 // ------------------------------------------ // html|html4|cp 0% 1.01% 27.73% // urls 0% 0.88% 14.79% // jpg 0% 64.29% 7.14% // pdf 0% 2.56% 58.06% // txt[1-4] 0% 0.23% 0.97% // pb 0% 0.96% 13.88% // bin 0.01% 22.27% 41.17% // // It is very rare that we don't have enough slop for doing block copies. It // is also rare that we need to expand a pattern. Small patterns are common // for incompressible formats and for those we are plenty fast already. // Lengths are normally not greater than 16 but they vary depending on the // input. In general if we always predict len <= 16 it would be an ok // prediction. // // In order to be fast we want a pattern >= 16 bytes (or 8 bytes in non-SSE) // and an unrolled loop copying 1x 16 bytes (or 2x 8 bytes in non-SSE) at a // time. // Handle the uncommon case where pattern is less than 16 (or 8 in non-SSE) // bytes. if (pattern_size < big_pattern_size_lower_bound) { #if SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE // Load the first eight bytes into an 128-bit XMM register, then use PSHUFB // to permute the register's contents in-place into a repeating sequence of // the first "pattern_size" bytes. // For example, suppose: // src == "abc" // op == op + 3 // After V128_Shuffle(), "pattern" will have five copies of "abc" // followed by one byte of slop: abcabcabcabcabca. // // The non-SSE fallback implementation suffers from store-forwarding stalls // because its loads and stores partly overlap. By expanding the pattern // in-place, we avoid the penalty. // Typically, the op_limit is the gating factor so try to simplify the loop // based on that. if (SNAPPY_PREDICT_TRUE(op_limit <= buf_limit - 15)) { auto pattern_and_reshuffle_mask = LoadPatternAndReshuffleMask(src, pattern_size); V128 pattern = pattern_and_reshuffle_mask.first; V128 reshuffle_mask = pattern_and_reshuffle_mask.second; // There is at least one, and at most four 16-byte blocks. Writing four // conditionals instead of a loop allows FDO to layout the code with // respect to the actual probabilities of each length. // TODO: Replace with loop with trip count hint. V128_StoreU(reinterpret_cast(op), pattern); if (op + 16 < op_limit) { pattern = V128_Shuffle(pattern, reshuffle_mask); V128_StoreU(reinterpret_cast(op + 16), pattern); } if (op + 32 < op_limit) { pattern = V128_Shuffle(pattern, reshuffle_mask); V128_StoreU(reinterpret_cast(op + 32), pattern); } if (op + 48 < op_limit) { pattern = V128_Shuffle(pattern, reshuffle_mask); V128_StoreU(reinterpret_cast(op + 48), pattern); } return op_limit; } char* const op_end = buf_limit - 15; if (SNAPPY_PREDICT_TRUE(op < op_end)) { auto pattern_and_reshuffle_mask = LoadPatternAndReshuffleMask(src, pattern_size); V128 pattern = pattern_and_reshuffle_mask.first; V128 reshuffle_mask = pattern_and_reshuffle_mask.second; // This code path is relatively cold however so we save code size // by avoiding unrolling and vectorizing. // // TODO: Remove pragma when when cold regions don't get // vectorized or unrolled. #ifdef __clang__ #pragma clang loop unroll(disable) #endif do { V128_StoreU(reinterpret_cast(op), pattern); pattern = V128_Shuffle(pattern, reshuffle_mask); op += 16; } while (SNAPPY_PREDICT_TRUE(op < op_end)); } return IncrementalCopySlow(op - pattern_size, op, op_limit); #else // !SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE // If plenty of buffer space remains, expand the pattern to at least 8 // bytes. The way the following loop is written, we need 8 bytes of buffer // space if pattern_size >= 4, 11 bytes if pattern_size is 1 or 3, and 10 // bytes if pattern_size is 2. Precisely encoding that is probably not // worthwhile; instead, invoke the slow path if we cannot write 11 bytes // (because 11 are required in the worst case). if (SNAPPY_PREDICT_TRUE(op <= buf_limit - 11)) { while (pattern_size < 8) { UnalignedCopy64(src, op); op += pattern_size; pattern_size *= 2; } if (SNAPPY_PREDICT_TRUE(op >= op_limit)) return op_limit; } else { return IncrementalCopySlow(src, op, op_limit); } #endif // SNAPPY_HAVE_VECTOR_BYTE_SHUFFLE } assert(pattern_size >= big_pattern_size_lower_bound); constexpr bool use_16bytes_chunk = big_pattern_size_lower_bound == 16; // Copy 1x 16 bytes (or 2x 8 bytes in non-SSE) at a time. Because op - src can // be < 16 in non-SSE, a single UnalignedCopy128 might overwrite data in op. // UnalignedCopy64 is safe because expanding the pattern to at least 8 bytes // guarantees that op - src >= 8. // // Typically, the op_limit is the gating factor so try to simplify the loop // based on that. if (SNAPPY_PREDICT_TRUE(op_limit <= buf_limit - 15)) { // There is at least one, and at most four 16-byte blocks. Writing four // conditionals instead of a loop allows FDO to layout the code with respect // to the actual probabilities of each length. // TODO: Replace with loop with trip count hint. ConditionalUnalignedCopy128(src, op); if (op + 16 < op_limit) { ConditionalUnalignedCopy128(src + 16, op + 16); } if (op + 32 < op_limit) { ConditionalUnalignedCopy128(src + 32, op + 32); } if (op + 48 < op_limit) { ConditionalUnalignedCopy128(src + 48, op + 48); } return op_limit; } // Fall back to doing as much as we can with the available slop in the // buffer. This code path is relatively cold however so we save code size by // avoiding unrolling and vectorizing. // // TODO: Remove pragma when when cold regions don't get vectorized // or unrolled. #ifdef __clang__ #pragma clang loop unroll(disable) #endif for (char* op_end = buf_limit - 16; op < op_end; op += 16, src += 16) { ConditionalUnalignedCopy128(src, op); } if (op >= op_limit) return op_limit; // We only take this branch if we didn't have enough slop and we can do a // single 8 byte copy. if (SNAPPY_PREDICT_FALSE(op <= buf_limit - 8)) { UnalignedCopy64(src, op); src += 8; op += 8; } return IncrementalCopySlow(src, op, op_limit); } } // namespace template static inline char* EmitLiteral(char* op, const char* literal, int len) { // The vast majority of copies are below 16 bytes, for which a // call to std::memcpy() is overkill. This fast path can sometimes // copy up to 15 bytes too much, but that is okay in the // main loop, since we have a bit to go on for both sides: // // - The input will always have kInputMarginBytes = 15 extra // available bytes, as long as we're in the main loop, and // if not, allow_fast_path = false. // - The output will always have 32 spare bytes (see // MaxCompressedLength). assert(len > 0); // Zero-length literals are disallowed int n = len - 1; if (allow_fast_path && len <= 16) { // Fits in tag byte *op++ = LITERAL | (n << 2); UnalignedCopy128(literal, op); return op + len; } if (n < 60) { // Fits in tag byte *op++ = LITERAL | (n << 2); } else { int count = (Bits::Log2Floor(n) >> 3) + 1; assert(count >= 1); assert(count <= 4); *op++ = LITERAL | ((59 + count) << 2); // Encode in upcoming bytes. // Write 4 bytes, though we may care about only 1 of them. The output buffer // is guaranteed to have at least 3 more spaces left as 'len >= 61' holds // here and there is a std::memcpy() of size 'len' below. LittleEndian::Store32(op, n); op += count; } // When allow_fast_path is true, we can overwrite up to 16 bytes. if (allow_fast_path) { char* destination = op; const char* source = literal; const char* end = destination + len; do { std::memcpy(destination, source, 16); destination += 16; source += 16; } while (destination < end); } else { std::memcpy(op, literal, len); } return op + len; } template static inline char* EmitCopyAtMost64(char* op, size_t offset, size_t len) { assert(len <= 64); assert(len >= 4); assert(offset < 65536); assert(len_less_than_12 == (len < 12)); if (len_less_than_12) { uint32_t u = (len << 2) + (offset << 8); uint32_t copy1 = COPY_1_BYTE_OFFSET - (4 << 2) + ((offset >> 3) & 0xe0); uint32_t copy2 = COPY_2_BYTE_OFFSET - (1 << 2); // It turns out that offset < 2048 is a difficult to predict branch. // `perf record` shows this is the highest percentage of branch misses in // benchmarks. This code produces branch free code, the data dependency // chain that bottlenecks the throughput is so long that a few extra // instructions are completely free (IPC << 6 because of data deps). u += offset < 2048 ? copy1 : copy2; LittleEndian::Store32(op, u); op += offset < 2048 ? 2 : 3; } else { // Write 4 bytes, though we only care about 3 of them. The output buffer // is required to have some slack, so the extra byte won't overrun it. uint32_t u = COPY_2_BYTE_OFFSET + ((len - 1) << 2) + (offset << 8); LittleEndian::Store32(op, u); op += 3; } return op; } template static inline char* EmitCopy(char* op, size_t offset, size_t len) { assert(len_less_than_12 == (len < 12)); if (len_less_than_12) { return EmitCopyAtMost64(op, offset, len); } else { // A special case for len <= 64 might help, but so far measurements suggest // it's in the noise. // Emit 64 byte copies but make sure to keep at least four bytes reserved. while (SNAPPY_PREDICT_FALSE(len >= 68)) { op = EmitCopyAtMost64(op, offset, 64); len -= 64; } // One or two copies will now finish the job. if (len > 64) { op = EmitCopyAtMost64(op, offset, 60); len -= 60; } // Emit remainder. if (len < 12) { op = EmitCopyAtMost64(op, offset, len); } else { op = EmitCopyAtMost64(op, offset, len); } return op; } } bool GetUncompressedLength(const char* start, size_t n, size_t* result) { uint32_t v = 0; const char* limit = start + n; if (Varint::Parse32WithLimit(start, limit, &v) != NULL) { *result = v; return true; } else { return false; } } namespace { uint32_t CalculateTableSize(uint32_t input_size) { static_assert( kMaxHashTableSize >= kMinHashTableSize, "kMaxHashTableSize should be greater or equal to kMinHashTableSize."); if (input_size > kMaxHashTableSize) { return kMaxHashTableSize; } if (input_size < kMinHashTableSize) { return kMinHashTableSize; } // This is equivalent to Log2Ceiling(input_size), assuming input_size > 1. // 2 << Log2Floor(x - 1) is equivalent to 1 << (1 + Log2Floor(x - 1)). return 2u << Bits::Log2Floor(input_size - 1); } } // namespace namespace internal { WorkingMemory::WorkingMemory(size_t input_size) { const size_t max_fragment_size = std::min(input_size, kBlockSize); const size_t table_size = CalculateTableSize(max_fragment_size); size_ = table_size * sizeof(*table_) + max_fragment_size + MaxCompressedLength(max_fragment_size); mem_ = std::allocator().allocate(size_); table_ = reinterpret_cast(mem_); input_ = mem_ + table_size * sizeof(*table_); output_ = input_ + max_fragment_size; } WorkingMemory::~WorkingMemory() { std::allocator().deallocate(mem_, size_); } uint16_t* WorkingMemory::GetHashTable(size_t fragment_size, int* table_size) const { const size_t htsize = CalculateTableSize(fragment_size); memset(table_, 0, htsize * sizeof(*table_)); *table_size = htsize; return table_; } } // end namespace internal // Flat array compression that does not emit the "uncompressed length" // prefix. Compresses "input" string to the "*op" buffer. // // REQUIRES: "input" is at most "kBlockSize" bytes long. // REQUIRES: "op" points to an array of memory that is at least // "MaxCompressedLength(input.size())" in size. // REQUIRES: All elements in "table[0..table_size-1]" are initialized to zero. // REQUIRES: "table_size" is a power of two // // Returns an "end" pointer into "op" buffer. // "end - op" is the compressed size of "input". namespace internal { char* CompressFragment(const char* input, size_t input_size, char* op, uint16_t* table, const int table_size) { // "ip" is the input pointer, and "op" is the output pointer. const char* ip = input; assert(input_size <= kBlockSize); assert((table_size & (table_size - 1)) == 0); // table must be power of two const uint32_t mask = 2 * (table_size - 1); const char* ip_end = input + input_size; const char* base_ip = ip; const size_t kInputMarginBytes = 15; if (SNAPPY_PREDICT_TRUE(input_size >= kInputMarginBytes)) { const char* ip_limit = input + input_size - kInputMarginBytes; for (uint32_t preload = LittleEndian::Load32(ip + 1);;) { // Bytes in [next_emit, ip) will be emitted as literal bytes. Or // [next_emit, ip_end) after the main loop. const char* next_emit = ip++; uint64_t data = LittleEndian::Load64(ip); // The body of this loop calls EmitLiteral once and then EmitCopy one or // more times. (The exception is that when we're close to exhausting // the input we goto emit_remainder.) // // In the first iteration of this loop we're just starting, so // there's nothing to copy, so calling EmitLiteral once is // necessary. And we only start a new iteration when the // current iteration has determined that a call to EmitLiteral will // precede the next call to EmitCopy (if any). // // Step 1: Scan forward in the input looking for a 4-byte-long match. // If we get close to exhausting the input then goto emit_remainder. // // Heuristic match skipping: If 32 bytes are scanned with no matches // found, start looking only at every other byte. If 32 more bytes are // scanned (or skipped), look at every third byte, etc.. When a match is // found, immediately go back to looking at every byte. This is a small // loss (~5% performance, ~0.1% density) for compressible data due to more // bookkeeping, but for non-compressible data (such as JPEG) it's a huge // win since the compressor quickly "realizes" the data is incompressible // and doesn't bother looking for matches everywhere. // // The "skip" variable keeps track of how many bytes there are since the // last match; dividing it by 32 (ie. right-shifting by five) gives the // number of bytes to move ahead for each iteration. uint32_t skip = 32; const char* candidate; if (ip_limit - ip >= 16) { auto delta = ip - base_ip; for (int j = 0; j < 4; ++j) { for (int k = 0; k < 4; ++k) { int i = 4 * j + k; // These for-loops are meant to be unrolled. So we can freely // special case the first iteration to use the value already // loaded in preload. uint32_t dword = i == 0 ? preload : static_cast(data); assert(dword == LittleEndian::Load32(ip + i)); uint16_t* table_entry = TableEntry(table, dword, mask); candidate = base_ip + *table_entry; assert(candidate >= base_ip); assert(candidate < ip + i); *table_entry = delta + i; if (SNAPPY_PREDICT_FALSE(LittleEndian::Load32(candidate) == dword)) { *op = LITERAL | (i << 2); UnalignedCopy128(next_emit, op + 1); ip += i; op = op + i + 2; goto emit_match; } data >>= 8; } data = LittleEndian::Load64(ip + 4 * j + 4); } ip += 16; skip += 16; } while (true) { assert(static_cast(data) == LittleEndian::Load32(ip)); uint16_t* table_entry = TableEntry(table, data, mask); uint32_t bytes_between_hash_lookups = skip >> 5; skip += bytes_between_hash_lookups; const char* next_ip = ip + bytes_between_hash_lookups; if (SNAPPY_PREDICT_FALSE(next_ip > ip_limit)) { ip = next_emit; goto emit_remainder; } candidate = base_ip + *table_entry; assert(candidate >= base_ip); assert(candidate < ip); *table_entry = ip - base_ip; if (SNAPPY_PREDICT_FALSE(static_cast(data) == LittleEndian::Load32(candidate))) { break; } data = LittleEndian::Load32(next_ip); ip = next_ip; } // Step 2: A 4-byte match has been found. We'll later see if more // than 4 bytes match. But, prior to the match, input // bytes [next_emit, ip) are unmatched. Emit them as "literal bytes." assert(next_emit + 16 <= ip_end); op = EmitLiteral(op, next_emit, ip - next_emit); // Step 3: Call EmitCopy, and then see if another EmitCopy could // be our next move. Repeat until we find no match for the // input immediately after what was consumed by the last EmitCopy call. // // If we exit this loop normally then we need to call EmitLiteral next, // though we don't yet know how big the literal will be. We handle that // by proceeding to the next iteration of the main loop. We also can exit // this loop via goto if we get close to exhausting the input. emit_match: do { // We have a 4-byte match at ip, and no need to emit any // "literal bytes" prior to ip. const char* base = ip; std::pair p = FindMatchLength(candidate + 4, ip + 4, ip_end, &data); size_t matched = 4 + p.first; ip += matched; size_t offset = base - candidate; assert(0 == memcmp(base, candidate, matched)); if (p.second) { op = EmitCopy(op, offset, matched); } else { op = EmitCopy(op, offset, matched); } if (SNAPPY_PREDICT_FALSE(ip >= ip_limit)) { goto emit_remainder; } // Expect 5 bytes to match assert((data & 0xFFFFFFFFFF) == (LittleEndian::Load64(ip) & 0xFFFFFFFFFF)); // We are now looking for a 4-byte match again. We read // table[Hash(ip, mask)] for that. To improve compression, // we also update table[Hash(ip - 1, mask)] and table[Hash(ip, mask)]. *TableEntry(table, LittleEndian::Load32(ip - 1), mask) = ip - base_ip - 1; uint16_t* table_entry = TableEntry(table, data, mask); candidate = base_ip + *table_entry; *table_entry = ip - base_ip; // Measurements on the benchmarks have shown the following probabilities // for the loop to exit (ie. avg. number of iterations is reciprocal). // BM_Flat/6 txt1 p = 0.3-0.4 // BM_Flat/7 txt2 p = 0.35 // BM_Flat/8 txt3 p = 0.3-0.4 // BM_Flat/9 txt3 p = 0.34-0.4 // BM_Flat/10 pb p = 0.4 // BM_Flat/11 gaviota p = 0.1 // BM_Flat/12 cp p = 0.5 // BM_Flat/13 c p = 0.3 } while (static_cast(data) == LittleEndian::Load32(candidate)); // Because the least significant 5 bytes matched, we can utilize data // for the next iteration. preload = data >> 8; } } emit_remainder: // Emit the remaining bytes as a literal if (ip < ip_end) { op = EmitLiteral(op, ip, ip_end - ip); } return op; } char* CompressFragmentDoubleHash(const char* input, size_t input_size, char* op, uint16_t* table, const int table_size, uint16_t* table2, const int table_size2) { (void)table_size2; assert(table_size == table_size2); // "ip" is the input pointer, and "op" is the output pointer. const char* ip = input; assert(input_size <= kBlockSize); assert((table_size & (table_size - 1)) == 0); // table must be power of two const uint32_t mask = 2 * (table_size - 1); const char* ip_end = input + input_size; const char* base_ip = ip; const size_t kInputMarginBytes = 15; if (SNAPPY_PREDICT_TRUE(input_size >= kInputMarginBytes)) { const char* ip_limit = input + input_size - kInputMarginBytes; for (;;) { const char* next_emit = ip++; uint64_t data = LittleEndian::Load64(ip); uint32_t skip = 512; const char* candidate; uint32_t candidate_length; while (true) { assert(static_cast(data) == LittleEndian::Load32(ip)); uint16_t* table_entry2 = TableEntry8ByteMatch(table2, data, mask); uint32_t bytes_between_hash_lookups = skip >> 9; skip++; const char* next_ip = ip + bytes_between_hash_lookups; if (SNAPPY_PREDICT_FALSE(next_ip > ip_limit)) { ip = next_emit; goto emit_remainder; } candidate = base_ip + *table_entry2; assert(candidate >= base_ip); assert(candidate < ip); *table_entry2 = ip - base_ip; if (SNAPPY_PREDICT_FALSE(static_cast(data) == LittleEndian::Load32(candidate))) { candidate_length = FindMatchLengthPlain(candidate + 4, ip + 4, ip_end) + 4; break; } uint16_t* table_entry = TableEntry4ByteMatch(table, data, mask); candidate = base_ip + *table_entry; assert(candidate >= base_ip); assert(candidate < ip); *table_entry = ip - base_ip; if (SNAPPY_PREDICT_FALSE(static_cast(data) == LittleEndian::Load32(candidate))) { candidate_length = FindMatchLengthPlain(candidate + 4, ip + 4, ip_end) + 4; table_entry2 = TableEntry8ByteMatch(table2, LittleEndian::Load64(ip + 1), mask); auto candidate2 = base_ip + *table_entry2; size_t candidate_length2 = FindMatchLengthPlain(candidate2, ip + 1, ip_end); if (candidate_length2 > candidate_length) { *table_entry2 = ip - base_ip; candidate = candidate2; candidate_length = candidate_length2; ++ip; } break; } data = LittleEndian::Load64(next_ip); ip = next_ip; } // Backtrack to the point it matches fully. while (ip > next_emit && candidate > base_ip && *(ip - 1) == *(candidate - 1)) { --ip; --candidate; ++candidate_length; } *TableEntry8ByteMatch(table2, LittleEndian::Load64(ip + 1), mask) = ip - base_ip + 1; *TableEntry8ByteMatch(table2, LittleEndian::Load64(ip + 2), mask) = ip - base_ip + 2; *TableEntry4ByteMatch(table, LittleEndian::Load32(ip + 1), mask) = ip - base_ip + 1; // Step 2: A 4-byte or 8-byte match has been found. // We'll later see if more than 4 bytes match. But, prior to the match, // input bytes [next_emit, ip) are unmatched. Emit them as // "literal bytes." assert(next_emit + 16 <= ip_end); if (ip - next_emit > 0) { op = EmitLiteral(op, next_emit, ip - next_emit); } // Step 3: Call EmitCopy, and then see if another EmitCopy could // be our next move. Repeat until we find no match for the // input immediately after what was consumed by the last EmitCopy call. // // If we exit this loop normally then we need to call EmitLiteral next, // though we don't yet know how big the literal will be. We handle that // by proceeding to the next iteration of the main loop. We also can exit // this loop via goto if we get close to exhausting the input. do { // We have a 4-byte match at ip, and no need to emit any // "literal bytes" prior to ip. const char* base = ip; ip += candidate_length; size_t offset = base - candidate; if (candidate_length < 12) { op = EmitCopy(op, offset, candidate_length); } else { op = EmitCopy(op, offset, candidate_length); } if (SNAPPY_PREDICT_FALSE(ip >= ip_limit)) { goto emit_remainder; } // We are now looking for a 4-byte match again. We read // table[Hash(ip, mask)] for that. To improve compression, // we also update several previous table entries. if (ip - base_ip > 7) { *TableEntry8ByteMatch(table2, LittleEndian::Load64(ip - 7), mask) = ip - base_ip - 7; *TableEntry8ByteMatch(table2, LittleEndian::Load64(ip - 4), mask) = ip - base_ip - 4; } *TableEntry8ByteMatch(table2, LittleEndian::Load64(ip - 3), mask) = ip - base_ip - 3; *TableEntry8ByteMatch(table2, LittleEndian::Load64(ip - 2), mask) = ip - base_ip - 2; *TableEntry4ByteMatch(table, LittleEndian::Load32(ip - 2), mask) = ip - base_ip - 2; *TableEntry4ByteMatch(table, LittleEndian::Load32(ip - 1), mask) = ip - base_ip - 1; uint16_t* table_entry = TableEntry8ByteMatch(table2, LittleEndian::Load64(ip), mask); candidate = base_ip + *table_entry; *table_entry = ip - base_ip; if (LittleEndian::Load32(ip) == LittleEndian::Load32(candidate)) { candidate_length = FindMatchLengthPlain(candidate + 4, ip + 4, ip_end) + 4; continue; } table_entry = TableEntry4ByteMatch(table, LittleEndian::Load32(ip), mask); candidate = base_ip + *table_entry; *table_entry = ip - base_ip; if (LittleEndian::Load32(ip) == LittleEndian::Load32(candidate)) { candidate_length = FindMatchLengthPlain(candidate + 4, ip + 4, ip_end) + 4; continue; } break; } while (true); } } emit_remainder: // Emit the remaining bytes as a literal if (ip < ip_end) { op = EmitLiteral(op, ip, ip_end - ip); } return op; } } // end namespace internal static inline void Report(int token, const char *algorithm, size_t compressed_size, size_t uncompressed_size) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)token; (void)algorithm; (void)compressed_size; (void)uncompressed_size; } // Signature of output types needed by decompression code. // The decompression code is templatized on a type that obeys this // signature so that we do not pay virtual function call overhead in // the middle of a tight decompression loop. // // class DecompressionWriter { // public: // // Called before decompression // void SetExpectedLength(size_t length); // // // For performance a writer may choose to donate the cursor variable to the // // decompression function. The decompression will inject it in all its // // function calls to the writer. Keeping the important output cursor as a // // function local stack variable allows the compiler to keep it in // // register, which greatly aids performance by avoiding loads and stores of // // this variable in the fast path loop iterations. // T GetOutputPtr() const; // // // At end of decompression the loop donates the ownership of the cursor // // variable back to the writer by calling this function. // void SetOutputPtr(T op); // // // Called after decompression // bool CheckLength() const; // // // Called repeatedly during decompression // // Each function get a pointer to the op (output pointer), that the writer // // can use and update. Note it's important that these functions get fully // // inlined so that no actual address of the local variable needs to be // // taken. // bool Append(const char* ip, size_t length, T* op); // bool AppendFromSelf(uint32_t offset, size_t length, T* op); // // // The rules for how TryFastAppend differs from Append are somewhat // // convoluted: // // // // - TryFastAppend is allowed to decline (return false) at any // // time, for any reason -- just "return false" would be // // a perfectly legal implementation of TryFastAppend. // // The intention is for TryFastAppend to allow a fast path // // in the common case of a small append. // // - TryFastAppend is allowed to read up to bytes // // from the input buffer, whereas Append is allowed to read // // . However, if it returns true, it must leave // // at least five (kMaximumTagLength) bytes in the input buffer // // afterwards, so that there is always enough space to read the // // next tag without checking for a refill. // // - TryFastAppend must always return decline (return false) // // if is 61 or more, as in this case the literal length is not // // decoded fully. In practice, this should not be a big problem, // // as it is unlikely that one would implement a fast path accepting // // this much data. // // // bool TryFastAppend(const char* ip, size_t available, size_t length, T* op); // }; static inline uint32_t ExtractLowBytes(const uint32_t& v, int n) { assert(n >= 0); assert(n <= 4); #if SNAPPY_HAVE_BMI2 return _bzhi_u32(v, 8 * n); #else // This needs to be wider than uint32_t otherwise `mask << 32` will be // undefined. uint64_t mask = 0xffffffff; return v & ~(mask << (8 * n)); #endif } static inline bool LeftShiftOverflows(uint8_t value, uint32_t shift) { assert(shift < 32); static const uint8_t masks[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, // 0x00, 0x80, 0xc0, 0xe0, 0xf0, 0xf8, 0xfc, 0xfe}; return (value & masks[shift]) != 0; } inline bool Copy64BytesWithPatternExtension(ptrdiff_t dst, size_t offset) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)dst; return offset != 0; } // Copies between size bytes and 64 bytes from src to dest. size cannot exceed // 64. More than size bytes, but never exceeding 64, might be copied if doing // so gives better performance. [src, src + size) must not overlap with // [dst, dst + size), but [src, src + 64) may overlap with [dst, dst + 64). void MemCopy64(char* dst, const void* src, size_t size) { // Always copy this many bytes. If that's below size then copy the full 64. constexpr int kShortMemCopy = 32; assert(size <= 64); assert(std::less_equal()(static_cast(src) + size, dst) || std::less_equal()(dst + size, src)); // We know that src and dst are at least size bytes apart. However, because we // might copy more than size bytes the copy still might overlap past size. // E.g. if src and dst appear consecutively in memory (src + size >= dst). // TODO: Investigate wider copies on other platforms. #if defined(__x86_64__) && defined(__AVX__) assert(kShortMemCopy <= 32); __m256i data = _mm256_lddqu_si256(static_cast(src)); _mm256_storeu_si256(reinterpret_cast<__m256i *>(dst), data); // Profiling shows that nearly all copies are short. if (SNAPPY_PREDICT_FALSE(size > kShortMemCopy)) { data = _mm256_lddqu_si256(static_cast(src) + 1); _mm256_storeu_si256(reinterpret_cast<__m256i *>(dst) + 1, data); } #else std::memmove(dst, src, kShortMemCopy); // Profiling shows that nearly all copies are short. if (SNAPPY_PREDICT_FALSE(size > kShortMemCopy)) { std::memmove(dst + kShortMemCopy, static_cast(src) + kShortMemCopy, 64 - kShortMemCopy); } #endif } void MemCopy64(ptrdiff_t dst, const void* src, size_t size) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)dst; (void)src; (void)size; } void ClearDeferred(const void** deferred_src, size_t* deferred_length, uint8_t* safe_source) { *deferred_src = safe_source; *deferred_length = 0; } void DeferMemCopy(const void** deferred_src, size_t* deferred_length, const void* src, size_t length) { *deferred_src = src; *deferred_length = length; } SNAPPY_ATTRIBUTE_ALWAYS_INLINE inline size_t AdvanceToNextTagARMOptimized(const uint8_t** ip_p, size_t* tag) { const uint8_t*& ip = *ip_p; // This section is crucial for the throughput of the decompression loop. // The latency of an iteration is fundamentally constrained by the // following data chain on ip. // ip -> c = Load(ip) -> delta1 = (c & 3) -> ip += delta1 or delta2 // delta2 = ((c >> 2) + 1) ip++ // This is different from X86 optimizations because ARM has conditional add // instruction (csinc) and it removes several register moves. const size_t tag_type = *tag & 3; const bool is_literal = (tag_type == 0); if (is_literal) { size_t next_literal_tag = (*tag >> 2) + 1; *tag = ip[next_literal_tag]; ip += next_literal_tag + 1; } else { *tag = ip[tag_type]; ip += tag_type + 1; } return tag_type; } SNAPPY_ATTRIBUTE_ALWAYS_INLINE inline size_t AdvanceToNextTagX86Optimized(const uint8_t** ip_p, size_t* tag) { const uint8_t*& ip = *ip_p; // This section is crucial for the throughput of the decompression loop. // The latency of an iteration is fundamentally constrained by the // following data chain on ip. // ip -> c = Load(ip) -> ip1 = ip + 1 + (c & 3) -> ip = ip1 or ip2 // ip2 = ip + 2 + (c >> 2) // This amounts to 8 cycles. // 5 (load) + 1 (c & 3) + 1 (lea ip1, [ip + (c & 3) + 1]) + 1 (cmov) size_t literal_len = *tag >> 2; size_t tag_type = *tag; bool is_literal; #if defined(__GCC_ASM_FLAG_OUTPUTS__) && defined(__x86_64__) // TODO clang misses the fact that the (c & 3) already correctly // sets the zero flag. asm("and $3, %k[tag_type]\n\t" : [tag_type] "+r"(tag_type), "=@ccz"(is_literal) :: "cc"); #else tag_type &= 3; is_literal = (tag_type == 0); #endif // TODO // This is code is subtle. Loading the values first and then cmov has less // latency then cmov ip and then load. However clang would move the loads // in an optimization phase, volatile prevents this transformation. // Note that we have enough slop bytes (64) that the loads are always valid. size_t tag_literal = static_cast(ip)[1 + literal_len]; size_t tag_copy = static_cast(ip)[tag_type]; *tag = is_literal ? tag_literal : tag_copy; const uint8_t* ip_copy = ip + 1 + tag_type; const uint8_t* ip_literal = ip + 2 + literal_len; ip = is_literal ? ip_literal : ip_copy; #if defined(__GNUC__) && defined(__x86_64__) // TODO Clang is "optimizing" zero-extension (a totally free // operation) this means that after the cmov of tag, it emits another movzb // tag, byte(tag). It really matters as it's on the core chain. This dummy // asm, persuades clang to do the zero-extension at the load (it's automatic) // removing the expensive movzb. asm("" ::"r"(tag_copy)); #endif return tag_type; } // Extract the offset for copy-1 and copy-2 returns 0 for literals or copy-4. inline uint32_t ExtractOffset(uint32_t val, size_t tag_type) { // For x86 non-static storage works better. For ARM static storage is better. // TODO: Once the array is recognized as a register, improve the // readability for x86. #if defined(__x86_64__) constexpr uint64_t kExtractMasksCombined = 0x0000FFFF00FF0000ull; uint16_t result; memcpy(&result, reinterpret_cast(&kExtractMasksCombined) + 2 * tag_type, sizeof(result)); return val & result; #elif defined(__aarch64__) constexpr uint64_t kExtractMasksCombined = 0x0000FFFF00FF0000ull; return val & static_cast( (kExtractMasksCombined >> (tag_type * 16)) & 0xFFFF); #else static constexpr uint32_t kExtractMasks[4] = {0, 0xFF, 0xFFFF, 0}; return val & kExtractMasks[tag_type]; #endif }; // Core decompression loop, when there is enough data available. // Decompresses the input buffer [ip, ip_limit) into the output buffer // [op, op_limit_min_slop). Returning when either we are too close to the end // of the input buffer, or we exceed op_limit_min_slop or when a exceptional // tag is encountered (literal of length > 60) or a copy-4. // Returns {ip, op} at the points it stopped decoding. // TODO This function probably does not need to be inlined, as it // should decode large chunks at a time. This allows runtime dispatch to // implementations based on CPU capability (BMI2 / perhaps 32 / 64 byte memcpy). template std::pair DecompressBranchless( const uint8_t* ip, const uint8_t* ip_limit, ptrdiff_t op, T op_base, ptrdiff_t op_limit_min_slop) { // If deferred_src is invalid point it here. uint8_t safe_source[64]; const void* deferred_src; size_t deferred_length; ClearDeferred(&deferred_src, &deferred_length, safe_source); // We unroll the inner loop twice so we need twice the spare room. op_limit_min_slop -= kSlopBytes; if (2 * (kSlopBytes + 1) < ip_limit - ip && op < op_limit_min_slop) { const uint8_t* const ip_limit_min_slop = ip_limit - 2 * kSlopBytes - 1; ip++; // ip points just past the tag and we are touching at maximum kSlopBytes // in an iteration. size_t tag = ip[-1]; #if defined(__clang__) && defined(__aarch64__) // Workaround for https://bugs.llvm.org/show_bug.cgi?id=51317 // when loading 1 byte, clang for aarch64 doesn't realize that it(ldrb) // comes with free zero-extension, so clang generates another // 'and xn, xm, 0xff' before it use that as the offset. This 'and' is // redundant and can be removed by adding this dummy asm, which gives // clang a hint that we're doing the zero-extension at the load. asm("" ::"r"(tag)); #endif do { // The throughput is limited by instructions, unrolling the inner loop // twice reduces the amount of instructions checking limits and also // leads to reduced mov's. SNAPPY_PREFETCH(ip + 128); for (int i = 0; i < 2; i++) { const uint8_t* old_ip = ip; assert(tag == ip[-1]); // For literals tag_type = 0, hence we will always obtain 0 from // ExtractLowBytes. For literals offset will thus be kLiteralOffset. ptrdiff_t len_minus_offset = kLengthMinusOffset[tag]; uint32_t next; #if defined(__aarch64__) size_t tag_type = AdvanceToNextTagARMOptimized(&ip, &tag); // We never need more than 16 bits. Doing a Load16 allows the compiler // to elide the masking operation in ExtractOffset. next = LittleEndian::Load16(old_ip); #else size_t tag_type = AdvanceToNextTagX86Optimized(&ip, &tag); next = LittleEndian::Load32(old_ip); #endif size_t len = len_minus_offset & 0xFF; ptrdiff_t extracted = ExtractOffset(next, tag_type); ptrdiff_t len_min_offset = len_minus_offset - extracted; if (SNAPPY_PREDICT_FALSE(len_minus_offset > extracted)) { if (SNAPPY_PREDICT_FALSE(len & 0x80)) { // Exceptional case (long literal or copy 4). // Actually doing the copy here is negatively impacting the main // loop due to compiler incorrectly allocating a register for // this fallback. Hence we just break. break_loop: ip = old_ip; goto exit; } // Only copy-1 or copy-2 tags can get here. assert(tag_type == 1 || tag_type == 2); std::ptrdiff_t delta = (op + deferred_length) + len_min_offset - len; // Guard against copies before the buffer start. // Execute any deferred MemCopy since we write to dst here. MemCopy64(op_base + op, deferred_src, deferred_length); op += deferred_length; ClearDeferred(&deferred_src, &deferred_length, safe_source); if (SNAPPY_PREDICT_FALSE(delta < 0 || !Copy64BytesWithPatternExtension( op_base + op, len - len_min_offset))) { goto break_loop; } // We aren't deferring this copy so add length right away. op += len; continue; } std::ptrdiff_t delta = (op + deferred_length) + len_min_offset - len; if (SNAPPY_PREDICT_FALSE(delta < 0)) { // Due to the spurious offset in literals have this will trigger // at the start of a block when op is still smaller than 256. if (tag_type != 0) goto break_loop; MemCopy64(op_base + op, deferred_src, deferred_length); op += deferred_length; DeferMemCopy(&deferred_src, &deferred_length, old_ip, len); continue; } // For copies we need to copy from op_base + delta, for literals // we need to copy from ip instead of from the stream. const void* from = tag_type ? reinterpret_cast(op_base + delta) : old_ip; MemCopy64(op_base + op, deferred_src, deferred_length); op += deferred_length; DeferMemCopy(&deferred_src, &deferred_length, from, len); } } while (ip < ip_limit_min_slop && static_cast(op + deferred_length) < op_limit_min_slop); exit: ip--; assert(ip <= ip_limit); } // If we deferred a copy then we can perform. If we are up to date then we // might not have enough slop bytes and could run past the end. if (deferred_length) { MemCopy64(op_base + op, deferred_src, deferred_length); op += deferred_length; ClearDeferred(&deferred_src, &deferred_length, safe_source); } return {ip, op}; } // Helper class for decompression class SnappyDecompressor { private: Source* reader_; // Underlying source of bytes to decompress const char* ip_; // Points to next buffered byte const char* ip_limit_; // Points just past buffered bytes // If ip < ip_limit_min_maxtaglen_ it's safe to read kMaxTagLength from // buffer. const char* ip_limit_min_maxtaglen_; uint64_t peeked_; // Bytes peeked from reader (need to skip) bool eof_; // Hit end of input without an error? char scratch_[kMaximumTagLength]; // See RefillTag(). // Ensure that all of the tag metadata for the next tag is available // in [ip_..ip_limit_-1]. Also ensures that [ip,ip+4] is readable even // if (ip_limit_ - ip_ < 5). // // Returns true on success, false on error or end of input. bool RefillTag(); void ResetLimit(const char* ip) { ip_limit_min_maxtaglen_ = ip_limit_ - std::min(ip_limit_ - ip, kMaximumTagLength - 1); } public: explicit SnappyDecompressor(Source* reader) : reader_(reader), ip_(NULL), ip_limit_(NULL), peeked_(0), eof_(false) {} ~SnappyDecompressor() { // Advance past any bytes we peeked at from the reader reader_->Skip(peeked_); } // Returns true iff we have hit the end of the input without an error. bool eof() const { return eof_; } // Read the uncompressed length stored at the start of the compressed data. // On success, stores the length in *result and returns true. // On failure, returns false. bool ReadUncompressedLength(uint32_t* result) { assert(ip_ == NULL); // Must not have read anything yet // Length is encoded in 1..5 bytes *result = 0; uint32_t shift = 0; while (true) { if (shift >= 32) return false; size_t n; const char* ip = reader_->Peek(&n); if (n == 0) return false; const unsigned char c = *(reinterpret_cast(ip)); reader_->Skip(1); uint32_t val = c & 0x7f; if (LeftShiftOverflows(static_cast(val), shift)) return false; *result |= val << shift; if (c < 128) { break; } shift += 7; } return true; } // Process the next item found in the input. // Returns true if successful, false on error or end of input. template #if defined(__GNUC__) && defined(__x86_64__) __attribute__((aligned(32))) #endif void DecompressAllTags(Writer* writer) { const char* ip = ip_; ResetLimit(ip); auto op = writer->GetOutputPtr(); // We could have put this refill fragment only at the beginning of the loop. // However, duplicating it at the end of each branch gives the compiler more // scope to optimize the expression based on the local // context, which overall increases speed. #define MAYBE_REFILL() \ if (SNAPPY_PREDICT_FALSE(ip >= ip_limit_min_maxtaglen_)) { \ ip_ = ip; \ if (SNAPPY_PREDICT_FALSE(!RefillTag())) goto exit; \ ip = ip_; \ ResetLimit(ip); \ } \ preload = static_cast(*ip) // At the start of the for loop below the least significant byte of preload // contains the tag. uint32_t preload; MAYBE_REFILL(); for (;;) { { ptrdiff_t op_limit_min_slop; auto op_base = writer->GetBase(&op_limit_min_slop); if (op_base) { auto res = DecompressBranchless(reinterpret_cast(ip), reinterpret_cast(ip_limit_), op - op_base, op_base, op_limit_min_slop); ip = reinterpret_cast(res.first); op = op_base + res.second; MAYBE_REFILL(); } } const uint8_t c = static_cast(preload); ip++; // Ratio of iterations that have LITERAL vs non-LITERAL for different // inputs. // // input LITERAL NON_LITERAL // ----------------------------------- // html|html4|cp 23% 77% // urls 36% 64% // jpg 47% 53% // pdf 19% 81% // txt[1-4] 25% 75% // pb 24% 76% // bin 24% 76% if (SNAPPY_PREDICT_FALSE((c & 0x3) == LITERAL)) { size_t literal_length = (c >> 2) + 1u; if (writer->TryFastAppend(ip, ip_limit_ - ip, literal_length, &op)) { assert(literal_length < 61); ip += literal_length; // NOTE: There is no MAYBE_REFILL() here, as TryFastAppend() // will not return true unless there's already at least five spare // bytes in addition to the literal. preload = static_cast(*ip); continue; } if (SNAPPY_PREDICT_FALSE(literal_length >= 61)) { // Long literal. const size_t literal_length_length = literal_length - 60; literal_length = ExtractLowBytes(LittleEndian::Load32(ip), literal_length_length) + 1; ip += literal_length_length; } size_t avail = ip_limit_ - ip; while (avail < literal_length) { if (!writer->Append(ip, avail, &op)) goto exit; literal_length -= avail; reader_->Skip(peeked_); size_t n; ip = reader_->Peek(&n); avail = n; peeked_ = avail; if (avail == 0) goto exit; ip_limit_ = ip + avail; ResetLimit(ip); } if (!writer->Append(ip, literal_length, &op)) goto exit; ip += literal_length; MAYBE_REFILL(); } else { if (SNAPPY_PREDICT_FALSE((c & 3) == COPY_4_BYTE_OFFSET)) { const size_t copy_offset = LittleEndian::Load32(ip); const size_t length = (c >> 2) + 1; ip += 4; if (!writer->AppendFromSelf(copy_offset, length, &op)) goto exit; } else { const ptrdiff_t entry = kLengthMinusOffset[c]; preload = LittleEndian::Load32(ip); const uint32_t trailer = ExtractLowBytes(preload, c & 3); const uint32_t length = entry & 0xff; assert(length > 0); // copy_offset/256 is encoded in bits 8..10. By just fetching // those bits, we get copy_offset (since the bit-field starts at // bit 8). const uint32_t copy_offset = trailer - entry + length; if (!writer->AppendFromSelf(copy_offset, length, &op)) goto exit; ip += (c & 3); // By using the result of the previous load we reduce the critical // dependency chain of ip to 4 cycles. preload >>= (c & 3) * 8; if (ip < ip_limit_min_maxtaglen_) continue; } MAYBE_REFILL(); } } #undef MAYBE_REFILL exit: writer->SetOutputPtr(op); } }; constexpr uint32_t CalculateNeeded(uint8_t tag) { return ((tag & 3) == 0 && tag >= (60 * 4)) ? (tag >> 2) - 58 : (0x05030201 >> ((tag * 8) & 31)) & 0xFF; } #if __cplusplus >= 201402L constexpr bool VerifyCalculateNeeded() { for (int i = 0; i < 1; i++) { if (CalculateNeeded(i) != static_cast((char_table[i] >> 11)) + 1) return false; } return true; } // Make sure CalculateNeeded is correct by verifying it against the established // table encoding the number of added bytes needed. static_assert(VerifyCalculateNeeded(), ""); #endif // c++14 bool SnappyDecompressor::RefillTag() { const char* ip = ip_; if (ip == ip_limit_) { // Fetch a new fragment from the reader reader_->Skip(peeked_); // All peeked bytes are used up size_t n; ip = reader_->Peek(&n); peeked_ = n; eof_ = (n == 0); if (eof_) return false; ip_limit_ = ip + n; } // Read the tag character assert(ip < ip_limit_); const unsigned char c = *(reinterpret_cast(ip)); // At this point make sure that the data for the next tag is consecutive. // For copy 1 this means the next 2 bytes (tag and 1 byte offset) // For copy 2 the next 3 bytes (tag and 2 byte offset) // For copy 4 the next 5 bytes (tag and 4 byte offset) // For all small literals we only need 1 byte buf for literals 60...63 the // length is encoded in 1...4 extra bytes. const uint32_t needed = CalculateNeeded(c); assert(needed <= sizeof(scratch_)); // Read more bytes from reader if needed uint64_t nbuf = ip_limit_ - ip; if (nbuf < needed) { // Stitch together bytes from ip and reader to form the word // contents. We store the needed bytes in "scratch_". They // will be consumed immediately by the caller since we do not // read more than we need. std::memmove(scratch_, ip, nbuf); reader_->Skip(peeked_); // All peeked bytes are used up peeked_ = 0; while (nbuf < needed) { size_t length; const char* src = reader_->Peek(&length); if (length == 0) return false; uint64_t to_add = std::min(needed - nbuf, length); std::memcpy(scratch_ + nbuf, src, to_add); nbuf += to_add; reader_->Skip(to_add); } assert(nbuf == needed); ip_ = scratch_; ip_limit_ = scratch_ + needed; } else if (nbuf < kMaximumTagLength) { // Have enough bytes, but move into scratch_ so that we do not // read past end of input std::memmove(scratch_, ip, nbuf); reader_->Skip(peeked_); // All peeked bytes are used up peeked_ = 0; ip_ = scratch_; ip_limit_ = scratch_ + nbuf; } else { // Pass pointer to buffer returned by reader_. ip_ = ip; } return true; } template static bool InternalUncompress(Source* r, Writer* writer) { // Read the uncompressed length from the front of the compressed input SnappyDecompressor decompressor(r); uint32_t uncompressed_len = 0; if (!decompressor.ReadUncompressedLength(&uncompressed_len)) return false; return InternalUncompressAllTags(&decompressor, writer, r->Available(), uncompressed_len); } template static bool InternalUncompressAllTags(SnappyDecompressor* decompressor, Writer* writer, uint32_t compressed_len, uint32_t uncompressed_len) { int token = 0; Report(token, "snappy_uncompress", compressed_len, uncompressed_len); writer->SetExpectedLength(uncompressed_len); // Process the entire input decompressor->DecompressAllTags(writer); writer->Flush(); return (decompressor->eof() && writer->CheckLength()); } bool GetUncompressedLength(Source* source, uint32_t* result) { SnappyDecompressor decompressor(source); return decompressor.ReadUncompressedLength(result); } size_t Compress(Source* reader, Sink* writer) { return Compress(reader, writer, CompressionOptions{}); } size_t Compress(Source* reader, Sink* writer, CompressionOptions options) { assert(options.level == 1 || options.level == 2); int token = 0; size_t written = 0; size_t N = reader->Available(); assert(N <= 0xFFFFFFFFu); const size_t uncompressed_size = N; char ulength[Varint::kMax32]; char* p = Varint::Encode32(ulength, N); writer->Append(ulength, p - ulength); written += (p - ulength); internal::WorkingMemory wmem(N); while (N > 0) { // Get next block to compress (without copying if possible) size_t fragment_size; const char* fragment = reader->Peek(&fragment_size); assert(fragment_size != 0); // premature end of input const size_t num_to_read = std::min(N, kBlockSize); size_t bytes_read = fragment_size; size_t pending_advance = 0; if (bytes_read >= num_to_read) { // Buffer returned by reader is large enough pending_advance = num_to_read; fragment_size = num_to_read; } else { char* scratch = wmem.GetScratchInput(); std::memcpy(scratch, fragment, bytes_read); reader->Skip(bytes_read); while (bytes_read < num_to_read) { fragment = reader->Peek(&fragment_size); size_t n = std::min(fragment_size, num_to_read - bytes_read); std::memcpy(scratch + bytes_read, fragment, n); bytes_read += n; reader->Skip(n); } assert(bytes_read == num_to_read); fragment = scratch; fragment_size = num_to_read; } assert(fragment_size == num_to_read); // Get encoding table for compression int table_size; uint16_t* table = wmem.GetHashTable(num_to_read, &table_size); // Compress input_fragment and append to dest int max_output = MaxCompressedLength(num_to_read); // Since we encode kBlockSize regions followed by a region // which is <= kBlockSize in length, a previously allocated // scratch_output[] region is big enough for this iteration. // Need a scratch buffer for the output, in case the byte sink doesn't // have room for us directly. char* dest = writer->GetAppendBuffer(max_output, wmem.GetScratchOutput()); char* end = nullptr; if (options.level == 1) { end = internal::CompressFragment(fragment, fragment_size, dest, table, table_size); } else if (options.level == 2) { end = internal::CompressFragmentDoubleHash( fragment, fragment_size, dest, table, table_size >> 1, table + (table_size >> 1), table_size >> 1); } writer->Append(dest, end - dest); written += (end - dest); N -= num_to_read; reader->Skip(pending_advance); } Report(token, "snappy_compress", written, uncompressed_size); return written; } // ----------------------------------------------------------------------- // IOVec interfaces // ----------------------------------------------------------------------- // A `Source` implementation that yields the contents of an `iovec` array. Note // that `total_size` is the total number of bytes to be read from the elements // of `iov` (_not_ the total number of elements in `iov`). class SnappyIOVecReader : public Source { public: SnappyIOVecReader(const struct iovec* iov, size_t total_size) : curr_iov_(iov), curr_pos_(total_size > 0 ? reinterpret_cast(iov->iov_base) : nullptr), curr_size_remaining_(total_size > 0 ? iov->iov_len : 0), total_size_remaining_(total_size) { // Skip empty leading `iovec`s. if (total_size > 0 && curr_size_remaining_ == 0) Advance(); } ~SnappyIOVecReader() override = default; size_t Available() const override { return total_size_remaining_; } const char* Peek(size_t* len) override { *len = curr_size_remaining_; return curr_pos_; } void Skip(size_t n) override { while (n >= curr_size_remaining_ && n > 0) { n -= curr_size_remaining_; Advance(); } curr_size_remaining_ -= n; total_size_remaining_ -= n; curr_pos_ += n; } private: // Advances to the next nonempty `iovec` and updates related variables. void Advance() { do { assert(total_size_remaining_ >= curr_size_remaining_); total_size_remaining_ -= curr_size_remaining_; if (total_size_remaining_ == 0) { curr_pos_ = nullptr; curr_size_remaining_ = 0; return; } ++curr_iov_; curr_pos_ = reinterpret_cast(curr_iov_->iov_base); curr_size_remaining_ = curr_iov_->iov_len; } while (curr_size_remaining_ == 0); } // The `iovec` currently being read. const struct iovec* curr_iov_; // The location in `curr_iov_` currently being read. const char* curr_pos_; // The amount of unread data in `curr_iov_`. size_t curr_size_remaining_; // The amount of unread data in the entire input array. size_t total_size_remaining_; }; // A type that writes to an iovec. // Note that this is not a "ByteSink", but a type that matches the // Writer template argument to SnappyDecompressor::DecompressAllTags(). class SnappyIOVecWriter { private: // output_iov_end_ is set to iov + count and used to determine when // the end of the iovs is reached. const struct iovec* output_iov_end_; #if !defined(NDEBUG) const struct iovec* output_iov_; #endif // !defined(NDEBUG) // Current iov that is being written into. const struct iovec* curr_iov_; // Pointer to current iov's write location. char* curr_iov_output_; // Remaining bytes to write into curr_iov_output. size_t curr_iov_remaining_; // Total bytes decompressed into output_iov_ so far. size_t total_written_; // Maximum number of bytes that will be decompressed into output_iov_. size_t output_limit_; static inline char* GetIOVecPointer(const struct iovec* iov, size_t offset) { return reinterpret_cast(iov->iov_base) + offset; } public: // Does not take ownership of iov. iov must be valid during the // entire lifetime of the SnappyIOVecWriter. inline SnappyIOVecWriter(const struct iovec* iov, size_t iov_count) : output_iov_end_(iov + iov_count), #if !defined(NDEBUG) output_iov_(iov), #endif // !defined(NDEBUG) curr_iov_(iov), curr_iov_output_(iov_count ? reinterpret_cast(iov->iov_base) : nullptr), curr_iov_remaining_(iov_count ? iov->iov_len : 0), total_written_(0), output_limit_(-1) { } inline void SetExpectedLength(size_t len) { output_limit_ = len; } inline bool CheckLength() const { return total_written_ == output_limit_; } inline bool Append(const char* ip, size_t len, char**) { if (total_written_ + len > output_limit_) { return false; } return AppendNoCheck(ip, len); } char* GetOutputPtr() { return nullptr; } char* GetBase(ptrdiff_t*) { return nullptr; } void SetOutputPtr(char* op) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)op; } inline bool AppendNoCheck(const char* ip, size_t len) { while (len > 0) { if (curr_iov_remaining_ == 0) { // This iovec is full. Go to the next one. if (curr_iov_ + 1 >= output_iov_end_) { return false; } ++curr_iov_; curr_iov_output_ = reinterpret_cast(curr_iov_->iov_base); curr_iov_remaining_ = curr_iov_->iov_len; } const size_t to_write = std::min(len, curr_iov_remaining_); std::memcpy(curr_iov_output_, ip, to_write); curr_iov_output_ += to_write; curr_iov_remaining_ -= to_write; total_written_ += to_write; ip += to_write; len -= to_write; } return true; } inline bool TryFastAppend(const char* ip, size_t available, size_t len, char**) { const size_t space_left = output_limit_ - total_written_; if (len <= 16 && available >= 16 + kMaximumTagLength && space_left >= 16 && curr_iov_remaining_ >= 16) { // Fast path, used for the majority (about 95%) of invocations. UnalignedCopy128(ip, curr_iov_output_); curr_iov_output_ += len; curr_iov_remaining_ -= len; total_written_ += len; return true; } return false; } inline bool AppendFromSelf(size_t offset, size_t len, char**) { // See SnappyArrayWriter::AppendFromSelf for an explanation of // the "offset - 1u" trick. if (offset - 1u >= total_written_) { return false; } const size_t space_left = output_limit_ - total_written_; if (len > space_left) { return false; } // Locate the iovec from which we need to start the copy. const iovec* from_iov = curr_iov_; size_t from_iov_offset = curr_iov_->iov_len - curr_iov_remaining_; while (offset > 0) { if (from_iov_offset >= offset) { from_iov_offset -= offset; break; } offset -= from_iov_offset; --from_iov; #if !defined(NDEBUG) assert(from_iov >= output_iov_); #endif // !defined(NDEBUG) from_iov_offset = from_iov->iov_len; } // Copy bytes starting from the iovec pointed to by from_iov_index to // the current iovec. while (len > 0) { assert(from_iov <= curr_iov_); if (from_iov != curr_iov_) { const size_t to_copy = std::min(from_iov->iov_len - from_iov_offset, len); AppendNoCheck(GetIOVecPointer(from_iov, from_iov_offset), to_copy); len -= to_copy; if (len > 0) { ++from_iov; from_iov_offset = 0; } } else { size_t to_copy = curr_iov_remaining_; if (to_copy == 0) { // This iovec is full. Go to the next one. if (curr_iov_ + 1 >= output_iov_end_) { return false; } ++curr_iov_; curr_iov_output_ = reinterpret_cast(curr_iov_->iov_base); curr_iov_remaining_ = curr_iov_->iov_len; continue; } if (to_copy > len) { to_copy = len; } assert(to_copy > 0); IncrementalCopy(GetIOVecPointer(from_iov, from_iov_offset), curr_iov_output_, curr_iov_output_ + to_copy, curr_iov_output_ + curr_iov_remaining_); curr_iov_output_ += to_copy; curr_iov_remaining_ -= to_copy; from_iov_offset += to_copy; total_written_ += to_copy; len -= to_copy; } } return true; } inline void Flush() {} }; bool RawUncompressToIOVec(const char* compressed, size_t compressed_length, const struct iovec* iov, size_t iov_cnt) { ByteArraySource reader(compressed, compressed_length); return RawUncompressToIOVec(&reader, iov, iov_cnt); } bool RawUncompressToIOVec(Source* compressed, const struct iovec* iov, size_t iov_cnt) { SnappyIOVecWriter output(iov, iov_cnt); return InternalUncompress(compressed, &output); } // ----------------------------------------------------------------------- // Flat array interfaces // ----------------------------------------------------------------------- // A type that writes to a flat array. // Note that this is not a "ByteSink", but a type that matches the // Writer template argument to SnappyDecompressor::DecompressAllTags(). class SnappyArrayWriter { private: char* base_; char* op_; char* op_limit_; // If op < op_limit_min_slop_ then it's safe to unconditionally write // kSlopBytes starting at op. char* op_limit_min_slop_; public: inline explicit SnappyArrayWriter(char* dst) : base_(dst), op_(dst), op_limit_(dst), op_limit_min_slop_(dst) {} // Safe default see invariant. inline void SetExpectedLength(size_t len) { op_limit_ = op_ + len; // Prevent pointer from being past the buffer. op_limit_min_slop_ = op_limit_ - std::min(kSlopBytes - 1, len); } inline bool CheckLength() const { return op_ == op_limit_; } char* GetOutputPtr() { return op_; } char* GetBase(ptrdiff_t* op_limit_min_slop) { *op_limit_min_slop = op_limit_min_slop_ - base_; return base_; } void SetOutputPtr(char* op) { op_ = op; } inline bool Append(const char* ip, size_t len, char** op_p) { char* op = *op_p; const size_t space_left = op_limit_ - op; if (space_left < len) return false; std::memcpy(op, ip, len); *op_p = op + len; return true; } inline bool TryFastAppend(const char* ip, size_t available, size_t len, char** op_p) { char* op = *op_p; const size_t space_left = op_limit_ - op; if (len <= 16 && available >= 16 + kMaximumTagLength && space_left >= 16) { // Fast path, used for the majority (about 95%) of invocations. UnalignedCopy128(ip, op); *op_p = op + len; return true; } else { return false; } } SNAPPY_ATTRIBUTE_ALWAYS_INLINE inline bool AppendFromSelf(size_t offset, size_t len, char** op_p) { assert(len > 0); char* const op = *op_p; assert(op >= base_); char* const op_end = op + len; // Check if we try to append from before the start of the buffer. if (SNAPPY_PREDICT_FALSE(static_cast(op - base_) < offset)) return false; if (SNAPPY_PREDICT_FALSE((kSlopBytes < 64 && len > kSlopBytes) || op >= op_limit_min_slop_ || offset < len)) { if (op_end > op_limit_ || offset == 0) return false; *op_p = IncrementalCopy(op - offset, op, op_end, op_limit_); return true; } std::memmove(op, op - offset, kSlopBytes); *op_p = op_end; return true; } inline size_t Produced() const { assert(op_ >= base_); return op_ - base_; } inline void Flush() {} }; bool RawUncompress(const char* compressed, size_t compressed_length, char* uncompressed) { ByteArraySource reader(compressed, compressed_length); return RawUncompress(&reader, uncompressed); } bool RawUncompress(Source* compressed, char* uncompressed) { SnappyArrayWriter output(uncompressed); return InternalUncompress(compressed, &output); } bool Uncompress(const char* compressed, size_t compressed_length, std::string* uncompressed) { size_t ulength; if (!GetUncompressedLength(compressed, compressed_length, &ulength)) { return false; } // On 32-bit builds: max_size() < kuint32max. Check for that instead // of crashing (e.g., consider externally specified compressed data). if (ulength > uncompressed->max_size()) { return false; } STLStringResizeUninitialized(uncompressed, ulength); return RawUncompress(compressed, compressed_length, string_as_array(uncompressed)); } // A Writer that drops everything on the floor and just does validation class SnappyDecompressionValidator { private: size_t expected_; size_t produced_; public: inline SnappyDecompressionValidator() : expected_(0), produced_(0) {} inline void SetExpectedLength(size_t len) { expected_ = len; } size_t GetOutputPtr() { return produced_; } size_t GetBase(ptrdiff_t* op_limit_min_slop) { *op_limit_min_slop = std::numeric_limits::max() - kSlopBytes + 1; return 1; } void SetOutputPtr(size_t op) { produced_ = op; } inline bool CheckLength() const { return expected_ == produced_; } inline bool Append(const char* ip, size_t len, size_t* produced) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)ip; *produced += len; return *produced <= expected_; } inline bool TryFastAppend(const char* ip, size_t available, size_t length, size_t* produced) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)ip; (void)available; (void)length; (void)produced; return false; } inline bool AppendFromSelf(size_t offset, size_t len, size_t* produced) { // See SnappyArrayWriter::AppendFromSelf for an explanation of // the "offset - 1u" trick. if (*produced <= offset - 1u) return false; *produced += len; return *produced <= expected_; } inline void Flush() {} }; bool IsValidCompressedBuffer(const char* compressed, size_t compressed_length) { ByteArraySource reader(compressed, compressed_length); SnappyDecompressionValidator writer; return InternalUncompress(&reader, &writer); } bool IsValidCompressed(Source* compressed) { SnappyDecompressionValidator writer; return InternalUncompress(compressed, &writer); } void RawCompress(const char* input, size_t input_length, char* compressed, size_t* compressed_length) { RawCompress(input, input_length, compressed, compressed_length, CompressionOptions{}); } void RawCompress(const char* input, size_t input_length, char* compressed, size_t* compressed_length, CompressionOptions options) { ByteArraySource reader(input, input_length); UncheckedByteArraySink writer(compressed); Compress(&reader, &writer, options); // Compute how many bytes were added *compressed_length = (writer.CurrentDestination() - compressed); } void RawCompressFromIOVec(const struct iovec* iov, size_t uncompressed_length, char* compressed, size_t* compressed_length) { RawCompressFromIOVec(iov, uncompressed_length, compressed, compressed_length, CompressionOptions{}); } void RawCompressFromIOVec(const struct iovec* iov, size_t uncompressed_length, char* compressed, size_t* compressed_length, CompressionOptions options) { SnappyIOVecReader reader(iov, uncompressed_length); UncheckedByteArraySink writer(compressed); Compress(&reader, &writer, options); // Compute how many bytes were added. *compressed_length = writer.CurrentDestination() - compressed; } size_t Compress(const char* input, size_t input_length, std::string* compressed) { return Compress(input, input_length, compressed, CompressionOptions{}); } size_t Compress(const char* input, size_t input_length, std::string* compressed, CompressionOptions options) { // Pre-grow the buffer to the max length of the compressed output STLStringResizeUninitialized(compressed, MaxCompressedLength(input_length)); size_t compressed_length; RawCompress(input, input_length, string_as_array(compressed), &compressed_length, options); compressed->erase(compressed_length); return compressed_length; } size_t CompressFromIOVec(const struct iovec* iov, size_t iov_cnt, std::string* compressed) { return CompressFromIOVec(iov, iov_cnt, compressed, CompressionOptions{}); } size_t CompressFromIOVec(const struct iovec* iov, size_t iov_cnt, std::string* compressed, CompressionOptions options) { // Compute the number of bytes to be compressed. size_t uncompressed_length = 0; for (size_t i = 0; i < iov_cnt; ++i) { uncompressed_length += iov[i].iov_len; } // Pre-grow the buffer to the max length of the compressed output. STLStringResizeUninitialized(compressed, MaxCompressedLength( uncompressed_length)); size_t compressed_length; RawCompressFromIOVec(iov, uncompressed_length, string_as_array(compressed), &compressed_length, options); compressed->erase(compressed_length); return compressed_length; } // ----------------------------------------------------------------------- // Sink interface // ----------------------------------------------------------------------- // A type that decompresses into a Sink. The template parameter // Allocator must export one method "char* Allocate(int size);", which // allocates a buffer of "size" and appends that to the destination. template class SnappyScatteredWriter { Allocator allocator_; // We need random access into the data generated so far. Therefore // we keep track of all of the generated data as an array of blocks. // All of the blocks except the last have length kBlockSize. std::vector blocks_; size_t expected_; // Total size of all fully generated blocks so far size_t full_size_; // Pointer into current output block char* op_base_; // Base of output block char* op_ptr_; // Pointer to next unfilled byte in block char* op_limit_; // Pointer just past block // If op < op_limit_min_slop_ then it's safe to unconditionally write // kSlopBytes starting at op. char* op_limit_min_slop_; inline size_t Size() const { return full_size_ + (op_ptr_ - op_base_); } bool SlowAppend(const char* ip, size_t len); bool SlowAppendFromSelf(size_t offset, size_t len); public: inline explicit SnappyScatteredWriter(const Allocator& allocator) : allocator_(allocator), full_size_(0), op_base_(NULL), op_ptr_(NULL), op_limit_(NULL), op_limit_min_slop_(NULL) {} char* GetOutputPtr() { return op_ptr_; } char* GetBase(ptrdiff_t* op_limit_min_slop) { *op_limit_min_slop = op_limit_min_slop_ - op_base_; return op_base_; } void SetOutputPtr(char* op) { op_ptr_ = op; } inline void SetExpectedLength(size_t len) { assert(blocks_.empty()); expected_ = len; } inline bool CheckLength() const { return Size() == expected_; } // Return the number of bytes actually uncompressed so far inline size_t Produced() const { return Size(); } inline bool Append(const char* ip, size_t len, char** op_p) { char* op = *op_p; size_t avail = op_limit_ - op; if (len <= avail) { // Fast path std::memcpy(op, ip, len); *op_p = op + len; return true; } else { op_ptr_ = op; bool res = SlowAppend(ip, len); *op_p = op_ptr_; return res; } } inline bool TryFastAppend(const char* ip, size_t available, size_t length, char** op_p) { char* op = *op_p; const int space_left = op_limit_ - op; if (length <= 16 && available >= 16 + kMaximumTagLength && space_left >= 16) { // Fast path, used for the majority (about 95%) of invocations. UnalignedCopy128(ip, op); *op_p = op + length; return true; } else { return false; } } inline bool AppendFromSelf(size_t offset, size_t len, char** op_p) { char* op = *op_p; assert(op >= op_base_); // Check if we try to append from before the start of the buffer. if (SNAPPY_PREDICT_FALSE((kSlopBytes < 64 && len > kSlopBytes) || static_cast(op - op_base_) < offset || op >= op_limit_min_slop_ || offset < len)) { if (offset == 0) return false; if (SNAPPY_PREDICT_FALSE(static_cast(op - op_base_) < offset || op + len > op_limit_)) { op_ptr_ = op; bool res = SlowAppendFromSelf(offset, len); *op_p = op_ptr_; return res; } *op_p = IncrementalCopy(op - offset, op, op + len, op_limit_); return true; } // Fast path char* const op_end = op + len; std::memmove(op, op - offset, kSlopBytes); *op_p = op_end; return true; } // Called at the end of the decompress. We ask the allocator // write all blocks to the sink. inline void Flush() { allocator_.Flush(Produced()); } }; template bool SnappyScatteredWriter::SlowAppend(const char* ip, size_t len) { size_t avail = op_limit_ - op_ptr_; while (len > avail) { // Completely fill this block std::memcpy(op_ptr_, ip, avail); op_ptr_ += avail; assert(op_limit_ - op_ptr_ == 0); full_size_ += (op_ptr_ - op_base_); len -= avail; ip += avail; // Bounds check if (full_size_ + len > expected_) return false; // Make new block size_t bsize = std::min(kBlockSize, expected_ - full_size_); op_base_ = allocator_.Allocate(bsize); op_ptr_ = op_base_; op_limit_ = op_base_ + bsize; op_limit_min_slop_ = op_limit_ - std::min(kSlopBytes - 1, bsize); blocks_.push_back(op_base_); avail = bsize; } std::memcpy(op_ptr_, ip, len); op_ptr_ += len; return true; } template bool SnappyScatteredWriter::SlowAppendFromSelf(size_t offset, size_t len) { // Overflow check // See SnappyArrayWriter::AppendFromSelf for an explanation of // the "offset - 1u" trick. const size_t cur = Size(); if (offset - 1u >= cur) return false; if (expected_ - cur < len) return false; // Currently we shouldn't ever hit this path because Compress() chops the // input into blocks and does not create cross-block copies. However, it is // nice if we do not rely on that, since we can get better compression if we // allow cross-block copies and thus might want to change the compressor in // the future. // TODO Replace this with a properly optimized path. This is not // triggered right now. But this is so super slow, that it would regress // performance unacceptably if triggered. size_t src = cur - offset; char* op = op_ptr_; while (len-- > 0) { char c = blocks_[src >> kBlockLog][src & (kBlockSize - 1)]; if (!Append(&c, 1, &op)) { op_ptr_ = op; return false; } src++; } op_ptr_ = op; return true; } class SnappySinkAllocator { public: explicit SnappySinkAllocator(Sink* dest) : dest_(dest) {} char* Allocate(int size) { Datablock block(new char[size], size); blocks_.push_back(block); return block.data; } // We flush only at the end, because the writer wants // random access to the blocks and once we hand the // block over to the sink, we can't access it anymore. // Also we don't write more than has been actually written // to the blocks. void Flush(size_t size) { size_t size_written = 0; for (Datablock& block : blocks_) { size_t block_size = std::min(block.size, size - size_written); dest_->AppendAndTakeOwnership(block.data, block_size, &SnappySinkAllocator::Deleter, NULL); size_written += block_size; } blocks_.clear(); } private: struct Datablock { char* data; size_t size; Datablock(char* p, size_t s) : data(p), size(s) {} }; static void Deleter(void* arg, const char* bytes, size_t size) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)arg; (void)size; delete[] bytes; } Sink* dest_; std::vector blocks_; // Note: copying this object is allowed }; size_t UncompressAsMuchAsPossible(Source* compressed, Sink* uncompressed) { SnappySinkAllocator allocator(uncompressed); SnappyScatteredWriter writer(allocator); InternalUncompress(compressed, &writer); return writer.Produced(); } bool Uncompress(Source* compressed, Sink* uncompressed) { // Read the uncompressed length from the front of the compressed input SnappyDecompressor decompressor(compressed); uint32_t uncompressed_len = 0; if (!decompressor.ReadUncompressedLength(&uncompressed_len)) { return false; } char c; size_t allocated_size; char* buf = uncompressed->GetAppendBufferVariable(1, uncompressed_len, &c, 1, &allocated_size); const size_t compressed_len = compressed->Available(); // If we can get a flat buffer, then use it, otherwise do block by block // uncompression if (allocated_size >= uncompressed_len) { SnappyArrayWriter writer(buf); bool result = InternalUncompressAllTags(&decompressor, &writer, compressed_len, uncompressed_len); uncompressed->Append(buf, writer.Produced()); return result; } else { SnappySinkAllocator allocator(uncompressed); SnappyScatteredWriter writer(allocator); return InternalUncompressAllTags(&decompressor, &writer, compressed_len, uncompressed_len); } } } // namespace snappy snappy-1.2.2/snappy.h000066400000000000000000000304271477101537200145260ustar00rootroot00000000000000// Copyright 2005 and onwards Google Inc. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // A light-weight compression algorithm. It is designed for speed of // compression and decompression, rather than for the utmost in space // savings. // // For getting better compression ratios when you are compressing data // with long repeated sequences or compressing data that is similar to // other data, while still compressing fast, you might look at first // using BMDiff and then compressing the output of BMDiff with // Snappy. #ifndef THIRD_PARTY_SNAPPY_SNAPPY_H__ #define THIRD_PARTY_SNAPPY_SNAPPY_H__ #include #include #include #include "snappy-stubs-public.h" namespace snappy { class Source; class Sink; struct CompressionOptions { // Compression level. // Level 1 is the fastest // Level 2 is a little slower but provides better compression. Level 2 is // **EXPERIMENTAL** for the time being. It might happen that we decide to // fall back to level 1 in the future. // Levels 3+ are currently not supported. We plan to support levels up to // 9 in the future. // If you played with other compression algorithms, level 1 is equivalent to // fast mode (level 1) of LZ4, level 2 is equivalent to LZ4's level 2 mode // and compresses somewhere around zstd:-3 and zstd:-2 but generally with // faster decompression speeds than snappy:1 and zstd:-3. int level = DefaultCompressionLevel(); constexpr CompressionOptions() = default; constexpr CompressionOptions(int compression_level) : level(compression_level) {} static constexpr int MinCompressionLevel() { return 1; } static constexpr int MaxCompressionLevel() { return 2; } static constexpr int DefaultCompressionLevel() { return 1; } }; // ------------------------------------------------------------------------ // Generic compression/decompression routines. // ------------------------------------------------------------------------ // Compress the bytes read from "*reader" and append to "*writer". Return the // number of bytes written. // First version is to preserve ABI. size_t Compress(Source* reader, Sink* writer); size_t Compress(Source* reader, Sink* writer, CompressionOptions options); // Find the uncompressed length of the given stream, as given by the header. // Note that the true length could deviate from this; the stream could e.g. // be truncated. // // Also note that this leaves "*source" in a state that is unsuitable for // further operations, such as RawUncompress(). You will need to rewind // or recreate the source yourself before attempting any further calls. bool GetUncompressedLength(Source* source, uint32_t* result); // ------------------------------------------------------------------------ // Higher-level string based routines (should be sufficient for most users) // ------------------------------------------------------------------------ // Sets "*compressed" to the compressed version of "input[0..input_length-1]". // Original contents of *compressed are lost. // // REQUIRES: "input[]" is not an alias of "*compressed". // First version is to preserve ABI. size_t Compress(const char* input, size_t input_length, std::string* compressed); size_t Compress(const char* input, size_t input_length, std::string* compressed, CompressionOptions options); // Same as `Compress` above but taking an `iovec` array as input. Note that // this function preprocesses the inputs to compute the sum of // `iov[0..iov_cnt-1].iov_len` before reading. To avoid this, use // `RawCompressFromIOVec` below. // First version is to preserve ABI. size_t CompressFromIOVec(const struct iovec* iov, size_t iov_cnt, std::string* compressed); size_t CompressFromIOVec(const struct iovec* iov, size_t iov_cnt, std::string* compressed, CompressionOptions options); // Decompresses "compressed[0..compressed_length-1]" to "*uncompressed". // Original contents of "*uncompressed" are lost. // // REQUIRES: "compressed[]" is not an alias of "*uncompressed". // // returns false if the message is corrupted and could not be decompressed bool Uncompress(const char* compressed, size_t compressed_length, std::string* uncompressed); // Decompresses "compressed" to "*uncompressed". // // returns false if the message is corrupted and could not be decompressed bool Uncompress(Source* compressed, Sink* uncompressed); // This routine uncompresses as much of the "compressed" as possible // into sink. It returns the number of valid bytes added to sink // (extra invalid bytes may have been added due to errors; the caller // should ignore those). The emitted data typically has length // GetUncompressedLength(), but may be shorter if an error is // encountered. size_t UncompressAsMuchAsPossible(Source* compressed, Sink* uncompressed); // ------------------------------------------------------------------------ // Lower-level character array based routines. May be useful for // efficiency reasons in certain circumstances. // ------------------------------------------------------------------------ // REQUIRES: "compressed" must point to an area of memory that is at // least "MaxCompressedLength(input_length)" bytes in length. // // Takes the data stored in "input[0..input_length]" and stores // it in the array pointed to by "compressed". // // "*compressed_length" is set to the length of the compressed output. // // Example: // char* output = new char[snappy::MaxCompressedLength(input_length)]; // size_t output_length; // RawCompress(input, input_length, output, &output_length); // ... Process(output, output_length) ... // delete [] output; void RawCompress(const char* input, size_t input_length, char* compressed, size_t* compressed_length); void RawCompress(const char* input, size_t input_length, char* compressed, size_t* compressed_length, CompressionOptions options); // Same as `RawCompress` above but taking an `iovec` array as input. Note that // `uncompressed_length` is the total number of bytes to be read from the // elements of `iov` (_not_ the number of elements in `iov`). void RawCompressFromIOVec(const struct iovec* iov, size_t uncompressed_length, char* compressed, size_t* compressed_length); void RawCompressFromIOVec(const struct iovec* iov, size_t uncompressed_length, char* compressed, size_t* compressed_length, CompressionOptions options); // Given data in "compressed[0..compressed_length-1]" generated by // calling the Snappy::Compress routine, this routine // stores the uncompressed data to // uncompressed[0..GetUncompressedLength(compressed)-1] // returns false if the message is corrupted and could not be decrypted bool RawUncompress(const char* compressed, size_t compressed_length, char* uncompressed); // Given data from the byte source 'compressed' generated by calling // the Snappy::Compress routine, this routine stores the uncompressed // data to // uncompressed[0..GetUncompressedLength(compressed,compressed_length)-1] // returns false if the message is corrupted and could not be decrypted bool RawUncompress(Source* compressed, char* uncompressed); // Given data in "compressed[0..compressed_length-1]" generated by // calling the Snappy::Compress routine, this routine // stores the uncompressed data to the iovec "iov". The number of physical // buffers in "iov" is given by iov_cnt and their cumulative size // must be at least GetUncompressedLength(compressed). The individual buffers // in "iov" must not overlap with each other. // // returns false if the message is corrupted and could not be decrypted bool RawUncompressToIOVec(const char* compressed, size_t compressed_length, const struct iovec* iov, size_t iov_cnt); // Given data from the byte source 'compressed' generated by calling // the Snappy::Compress routine, this routine stores the uncompressed // data to the iovec "iov". The number of physical // buffers in "iov" is given by iov_cnt and their cumulative size // must be at least GetUncompressedLength(compressed). The individual buffers // in "iov" must not overlap with each other. // // returns false if the message is corrupted and could not be decrypted bool RawUncompressToIOVec(Source* compressed, const struct iovec* iov, size_t iov_cnt); // Returns the maximal size of the compressed representation of // input data that is "source_bytes" bytes in length; size_t MaxCompressedLength(size_t source_bytes); // REQUIRES: "compressed[]" was produced by RawCompress() or Compress() // Returns true and stores the length of the uncompressed data in // *result normally. Returns false on parsing error. // This operation takes O(1) time. bool GetUncompressedLength(const char* compressed, size_t compressed_length, size_t* result); // Returns true iff the contents of "compressed[]" can be uncompressed // successfully. Does not return the uncompressed data. Takes // time proportional to compressed_length, but is usually at least // a factor of four faster than actual decompression. bool IsValidCompressedBuffer(const char* compressed, size_t compressed_length); // Returns true iff the contents of "compressed" can be uncompressed // successfully. Does not return the uncompressed data. Takes // time proportional to *compressed length, but is usually at least // a factor of four faster than actual decompression. // On success, consumes all of *compressed. On failure, consumes an // unspecified prefix of *compressed. bool IsValidCompressed(Source* compressed); // The size of a compression block. Note that many parts of the compression // code assumes that kBlockSize <= 65536; in particular, the hash table // can only store 16-bit offsets, and EmitCopy() also assumes the offset // is 65535 bytes or less. Note also that if you change this, it will // affect the framing format (see framing_format.txt). // // Note that there might be older data around that is compressed with larger // block sizes, so the decompression code should not rely on the // non-existence of long backreferences. static constexpr int kBlockLog = 16; static constexpr size_t kBlockSize = 1 << kBlockLog; static constexpr int kMinHashTableBits = 8; static constexpr size_t kMinHashTableSize = 1 << kMinHashTableBits; static constexpr int kMaxHashTableBits = 15; static constexpr size_t kMaxHashTableSize = 1 << kMaxHashTableBits; } // end namespace snappy #endif // THIRD_PARTY_SNAPPY_SNAPPY_H__ snappy-1.2.2/snappy_benchmark.cc000066400000000000000000000333101477101537200166700ustar00rootroot00000000000000// Copyright 2020 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include #include #include "benchmark/benchmark.h" #include "snappy-internal.h" #include "snappy-sinksource.h" #include "snappy-test.h" #include "snappy.h" #include "snappy_test_data.h" namespace snappy { namespace { void FilesAndLevels(benchmark::internal::Benchmark* benchmark) { for (int i = 0; i < ARRAYSIZE(kTestDataFiles); ++i) { for (int level = snappy::CompressionOptions::MinCompressionLevel(); level <= snappy::CompressionOptions::MaxCompressionLevel(); ++level) { benchmark->ArgPair(i, level); } } } void BM_UFlat(benchmark::State& state) { // Pick file to process based on state.range(0). int file_index = state.range(0); CHECK_GE(file_index, 0); CHECK_LT(file_index, ARRAYSIZE(kTestDataFiles)); std::string contents = ReadTestDataFile(kTestDataFiles[file_index].filename, kTestDataFiles[file_index].size_limit); std::string zcontents; snappy::Compress( contents.data(), contents.size(), &zcontents, snappy::CompressionOptions{/*level=*/static_cast(state.range(1))}); char* dst = new char[contents.size()]; for (auto s : state) { CHECK(snappy::RawUncompress(zcontents.data(), zcontents.size(), dst)); benchmark::DoNotOptimize(dst); } state.SetBytesProcessed(static_cast(state.iterations()) * static_cast(contents.size())); state.SetLabel(kTestDataFiles[file_index].label); delete[] dst; } BENCHMARK(BM_UFlat)->Apply(FilesAndLevels); struct SourceFiles { SourceFiles() { for (int i = 0; i < kFiles; i++) { std::string contents = ReadTestDataFile(kTestDataFiles[i].filename, kTestDataFiles[i].size_limit); max_size = std::max(max_size, contents.size()); sizes[i] = contents.size(); snappy::Compress(contents.data(), contents.size(), &zcontents[i]); } } static constexpr int kFiles = ARRAYSIZE(kTestDataFiles); std::string zcontents[kFiles]; size_t sizes[kFiles]; size_t max_size = 0; }; void BM_UFlatMedley(benchmark::State& state) { static const SourceFiles* const source = new SourceFiles(); std::vector dst(source->max_size); for (auto s : state) { for (int i = 0; i < SourceFiles::kFiles; i++) { CHECK(snappy::RawUncompress(source->zcontents[i].data(), source->zcontents[i].size(), dst.data())); benchmark::DoNotOptimize(dst); } } int64_t source_sizes = 0; for (int i = 0; i < SourceFiles::kFiles; i++) { source_sizes += static_cast(source->sizes[i]); } state.SetBytesProcessed(static_cast(state.iterations()) * source_sizes); } BENCHMARK(BM_UFlatMedley); void BM_UValidate(benchmark::State& state) { // Pick file to process based on state.range(0). int file_index = state.range(0); CHECK_GE(file_index, 0); CHECK_LT(file_index, ARRAYSIZE(kTestDataFiles)); std::string contents = ReadTestDataFile(kTestDataFiles[file_index].filename, kTestDataFiles[file_index].size_limit); std::string zcontents; snappy::Compress( contents.data(), contents.size(), &zcontents, snappy::CompressionOptions{/*level=*/static_cast(state.range(1))}); for (auto s : state) { CHECK(snappy::IsValidCompressedBuffer(zcontents.data(), zcontents.size())); } state.SetBytesProcessed(static_cast(state.iterations()) * static_cast(contents.size())); state.SetLabel(kTestDataFiles[file_index].label); } BENCHMARK(BM_UValidate)->Apply(FilesAndLevels); void BM_UValidateMedley(benchmark::State& state) { static const SourceFiles* const source = new SourceFiles(); for (auto s : state) { for (int i = 0; i < SourceFiles::kFiles; i++) { CHECK(snappy::IsValidCompressedBuffer(source->zcontents[i].data(), source->zcontents[i].size())); } } int64_t source_sizes = 0; for (int i = 0; i < SourceFiles::kFiles; i++) { source_sizes += static_cast(source->sizes[i]); } state.SetBytesProcessed(static_cast(state.iterations()) * source_sizes); } BENCHMARK(BM_UValidateMedley); void BM_UIOVecSource(benchmark::State& state) { // Pick file to process based on state.range(0). int file_index = state.range(0); int level = state.range(1); CHECK_GE(file_index, 0); CHECK_LT(file_index, ARRAYSIZE(kTestDataFiles)); std::string contents = ReadTestDataFile(kTestDataFiles[file_index].filename, kTestDataFiles[file_index].size_limit); // Create `iovec`s of the `contents`. const int kNumEntries = 10; struct iovec iov[kNumEntries]; size_t used_so_far = 0; for (int i = 0; i < kNumEntries; ++i) { iov[i].iov_base = const_cast(contents.data()) + used_so_far; if (used_so_far == contents.size()) { iov[i].iov_len = 0; continue; } if (i == kNumEntries - 1) { iov[i].iov_len = contents.size() - used_so_far; } else { iov[i].iov_len = contents.size() / kNumEntries; } used_so_far += iov[i].iov_len; } char* dst = new char[snappy::MaxCompressedLength(contents.size())]; size_t zsize = 0; for (auto s : state) { snappy::RawCompressFromIOVec(iov, contents.size(), dst, &zsize, snappy::CompressionOptions{/*level=*/level}); benchmark::DoNotOptimize(iov); } state.SetBytesProcessed(static_cast(state.iterations()) * static_cast(contents.size())); const double compression_ratio = static_cast(zsize) / std::max(1, contents.size()); state.SetLabel(StrFormat("%s (%.2f %%)", kTestDataFiles[file_index].label, 100.0 * compression_ratio)); VLOG(0) << StrFormat("compression for %s: %d -> %d bytes", kTestDataFiles[file_index].label, contents.size(), zsize); delete[] dst; } BENCHMARK(BM_UIOVecSource)->Apply(FilesAndLevels); void BM_UIOVecSink(benchmark::State& state) { // Pick file to process based on state.range(0). int file_index = state.range(0); CHECK_GE(file_index, 0); CHECK_LT(file_index, ARRAYSIZE(kTestDataFiles)); std::string contents = ReadTestDataFile(kTestDataFiles[file_index].filename, kTestDataFiles[file_index].size_limit); std::string zcontents; snappy::Compress(contents.data(), contents.size(), &zcontents); // Uncompress into an iovec containing ten entries. const int kNumEntries = 10; struct iovec iov[kNumEntries]; char* dst = new char[contents.size()]; size_t used_so_far = 0; for (int i = 0; i < kNumEntries; ++i) { iov[i].iov_base = dst + used_so_far; if (used_so_far == contents.size()) { iov[i].iov_len = 0; continue; } if (i == kNumEntries - 1) { iov[i].iov_len = contents.size() - used_so_far; } else { iov[i].iov_len = contents.size() / kNumEntries; } used_so_far += iov[i].iov_len; } for (auto s : state) { CHECK(snappy::RawUncompressToIOVec(zcontents.data(), zcontents.size(), iov, kNumEntries)); benchmark::DoNotOptimize(iov); } state.SetBytesProcessed(static_cast(state.iterations()) * static_cast(contents.size())); state.SetLabel(kTestDataFiles[file_index].label); delete[] dst; } BENCHMARK(BM_UIOVecSink)->DenseRange(0, 4); void BM_UFlatSink(benchmark::State& state) { // Pick file to process based on state.range(0). int file_index = state.range(0); CHECK_GE(file_index, 0); CHECK_LT(file_index, ARRAYSIZE(kTestDataFiles)); std::string contents = ReadTestDataFile(kTestDataFiles[file_index].filename, kTestDataFiles[file_index].size_limit); std::string zcontents; snappy::Compress( contents.data(), contents.size(), &zcontents, snappy::CompressionOptions{/*level=*/static_cast(state.range(1))}); char* dst = new char[contents.size()]; for (auto s : state) { snappy::ByteArraySource source(zcontents.data(), zcontents.size()); snappy::UncheckedByteArraySink sink(dst); CHECK(snappy::Uncompress(&source, &sink)); benchmark::DoNotOptimize(sink); } state.SetBytesProcessed(static_cast(state.iterations()) * static_cast(contents.size())); state.SetLabel(kTestDataFiles[file_index].label); std::string s(dst, contents.size()); CHECK_EQ(contents, s); delete[] dst; } BENCHMARK(BM_UFlatSink)->Apply(FilesAndLevels); void BM_ZFlat(benchmark::State& state) { // Pick file to process based on state.range(0). int file_index = state.range(0); int level = state.range(1); CHECK_GE(file_index, 0); CHECK_LT(file_index, ARRAYSIZE(kTestDataFiles)); std::string contents = ReadTestDataFile(kTestDataFiles[file_index].filename, kTestDataFiles[file_index].size_limit); char* dst = new char[snappy::MaxCompressedLength(contents.size())]; size_t zsize = 0; for (auto s : state) { snappy::RawCompress(contents.data(), contents.size(), dst, &zsize, snappy::CompressionOptions{/*level=*/level}); benchmark::DoNotOptimize(dst); } state.SetBytesProcessed(static_cast(state.iterations()) * static_cast(contents.size())); const double compression_ratio = static_cast(zsize) / std::max(1, contents.size()); state.SetLabel(StrFormat("%s (%.2f %%)", kTestDataFiles[file_index].label, 100.0 * compression_ratio)); VLOG(0) << StrFormat("compression for %s: %d -> %d bytes", kTestDataFiles[file_index].label, contents.size(), zsize); delete[] dst; } BENCHMARK(BM_ZFlat)->Apply(FilesAndLevels); void BM_ZFlatAll(benchmark::State& state) { const int num_files = ARRAYSIZE(kTestDataFiles); int level = state.range(0); std::vector contents(num_files); std::vector dst(num_files); int64_t total_contents_size = 0; for (int i = 0; i < num_files; ++i) { contents[i] = ReadTestDataFile(kTestDataFiles[i].filename, kTestDataFiles[i].size_limit); dst[i] = new char[snappy::MaxCompressedLength(contents[i].size())]; total_contents_size += contents[i].size(); } size_t zsize = 0; for (auto s : state) { for (int i = 0; i < num_files; ++i) { snappy::RawCompress(contents[i].data(), contents[i].size(), dst[i], &zsize, snappy::CompressionOptions{/*level=*/level}); benchmark::DoNotOptimize(dst); } } state.SetBytesProcessed(static_cast(state.iterations()) * total_contents_size); for (char* dst_item : dst) { delete[] dst_item; } state.SetLabel(StrFormat("%d kTestDataFiles", num_files)); } BENCHMARK(BM_ZFlatAll)->DenseRange(1, 2); void BM_ZFlatIncreasingTableSize(benchmark::State& state) { CHECK_GT(ARRAYSIZE(kTestDataFiles), 0); int level = state.range(0); const std::string base_content = ReadTestDataFile( kTestDataFiles[0].filename, kTestDataFiles[0].size_limit); std::vector contents; std::vector dst; int64_t total_contents_size = 0; for (int table_bits = kMinHashTableBits; table_bits <= kMaxHashTableBits; ++table_bits) { std::string content = base_content; content.resize(1 << table_bits); dst.push_back(new char[snappy::MaxCompressedLength(content.size())]); total_contents_size += content.size(); contents.push_back(std::move(content)); } size_t zsize = 0; for (auto s : state) { for (size_t i = 0; i < contents.size(); ++i) { snappy::RawCompress(contents[i].data(), contents[i].size(), dst[i], &zsize, snappy::CompressionOptions{/*level=*/level}); benchmark::DoNotOptimize(dst); } } state.SetBytesProcessed(static_cast(state.iterations()) * total_contents_size); for (char* dst_item : dst) { delete[] dst_item; } state.SetLabel(StrFormat("%d tables", contents.size())); } BENCHMARK(BM_ZFlatIncreasingTableSize)->DenseRange(1, 2); } // namespace } // namespace snappy snappy-1.2.2/snappy_compress_fuzzer.cc000066400000000000000000000054541477101537200202060ustar00rootroot00000000000000// Copyright 2019 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // libFuzzer harness for fuzzing snappy compression code. #include #include #include #include #include "snappy.h" // Entry point for LibFuzzer. extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { std::string input(reinterpret_cast(data), size); for (int level = snappy::CompressionOptions::MinCompressionLevel(); level <= snappy::CompressionOptions::MaxCompressionLevel(); ++level) { std::string compressed; size_t compressed_size = snappy::Compress(input.data(), input.size(), &compressed, snappy::CompressionOptions{/*level=*/level}); (void)compressed_size; // Variable only used in debug builds. assert(compressed_size == compressed.size()); assert(compressed.size() <= snappy::MaxCompressedLength(input.size())); assert( snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); std::string uncompressed_after_compress; bool uncompress_succeeded = snappy::Uncompress( compressed.data(), compressed.size(), &uncompressed_after_compress); (void)uncompress_succeeded; // Variable only used in debug builds. assert(uncompress_succeeded); assert(input == uncompressed_after_compress); } return 0; } snappy-1.2.2/snappy_test_data.cc000066400000000000000000000042651477101537200167150ustar00rootroot00000000000000// Copyright 2020 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // Support code for reading test data. #include "snappy_test_data.h" #include #include #include #include "snappy-test.h" namespace snappy { std::string ReadTestDataFile(const char* base, size_t size_limit) { std::string srcdir; const char* srcdir_env = std::getenv("srcdir"); // This is set by Automake. if (srcdir_env) { srcdir = std::string(srcdir_env) + "/"; } std::string contents; CHECK_OK(file::GetContents(srcdir + "testdata/" + base, &contents, file::Defaults())); if (size_limit > 0) { contents = contents.substr(0, size_limit); } return contents; } } // namespace snappy snappy-1.2.2/snappy_test_data.h000066400000000000000000000047201477101537200165530ustar00rootroot00000000000000// Copyright 2020 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // List of test case files. #ifndef THIRD_PARTY_SNAPPY_SNAPPY_TEST_DATA_H__ #define THIRD_PARTY_SNAPPY_SNAPPY_TEST_DATA_H__ #include #include namespace snappy { std::string ReadTestDataFile(const char* base, size_t size_limit); // TODO: Replace anonymous namespace with inline variable when we can // rely on C++17. namespace { constexpr struct { const char* label; const char* filename; size_t size_limit; } kTestDataFiles[] = { { "html", "html", 0 }, { "urls", "urls.10K", 0 }, { "jpg", "fireworks.jpeg", 0 }, { "jpg_200", "fireworks.jpeg", 200 }, { "pdf", "paper-100k.pdf", 0 }, { "html4", "html_x_4", 0 }, { "txt1", "alice29.txt", 0 }, { "txt2", "asyoulik.txt", 0 }, { "txt3", "lcet10.txt", 0 }, { "txt4", "plrabn12.txt", 0 }, { "pb", "geo.protodata", 0 }, { "gaviota", "kppkn.gtb", 0 }, }; } // namespace } // namespace snappy #endif // THIRD_PARTY_SNAPPY_SNAPPY_TEST_DATA_H__ snappy-1.2.2/snappy_test_tool.cc000066400000000000000000000366431477101537200167660ustar00rootroot00000000000000// Copyright 2020 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include #include #include #include #include #include #include "snappy-test.h" #include "snappy-internal.h" #include "snappy-sinksource.h" #include "snappy.h" #include "snappy_test_data.h" SNAPPY_FLAG(int32_t, start_len, -1, "Starting prefix size for testing (-1: just full file contents)"); SNAPPY_FLAG(int32_t, end_len, -1, "Starting prefix size for testing (-1: just full file contents)"); SNAPPY_FLAG(int32_t, bytes, 10485760, "How many bytes to compress/uncompress per file for timing"); SNAPPY_FLAG(bool, zlib, true, "Run zlib compression (http://www.zlib.net)"); SNAPPY_FLAG(bool, lzo, true, "Run LZO compression (http://www.oberhumer.com/opensource/lzo/)"); SNAPPY_FLAG(bool, lz4, true, "Run LZ4 compression (https://github.com/lz4/lz4)"); SNAPPY_FLAG(bool, snappy, true, "Run snappy compression"); SNAPPY_FLAG(bool, write_compressed, false, "Write compressed versions of each file to .comp"); SNAPPY_FLAG(bool, write_uncompressed, false, "Write uncompressed versions of each file to .uncomp"); namespace snappy { namespace { #if HAVE_FUNC_MMAP && HAVE_FUNC_SYSCONF // To test against code that reads beyond its input, this class copies a // string to a newly allocated group of pages, the last of which // is made unreadable via mprotect. Note that we need to allocate the // memory with mmap(), as POSIX allows mprotect() only on memory allocated // with mmap(), and some malloc/posix_memalign implementations expect to // be able to read previously allocated memory while doing heap allocations. class DataEndingAtUnreadablePage { public: explicit DataEndingAtUnreadablePage(const std::string& s) { const size_t page_size = sysconf(_SC_PAGESIZE); const size_t size = s.size(); // Round up space for string to a multiple of page_size. size_t space_for_string = (size + page_size - 1) & ~(page_size - 1); alloc_size_ = space_for_string + page_size; mem_ = mmap(NULL, alloc_size_, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); CHECK_NE(MAP_FAILED, mem_); protected_page_ = reinterpret_cast(mem_) + space_for_string; char* dst = protected_page_ - size; std::memcpy(dst, s.data(), size); data_ = dst; size_ = size; // Make guard page unreadable. CHECK_EQ(0, mprotect(protected_page_, page_size, PROT_NONE)); } ~DataEndingAtUnreadablePage() { const size_t page_size = sysconf(_SC_PAGESIZE); // Undo the mprotect. CHECK_EQ(0, mprotect(protected_page_, page_size, PROT_READ|PROT_WRITE)); CHECK_EQ(0, munmap(mem_, alloc_size_)); } const char* data() const { return data_; } size_t size() const { return size_; } private: size_t alloc_size_; void* mem_; char* protected_page_; const char* data_; size_t size_; }; #else // HAVE_FUNC_MMAP && HAVE_FUNC_SYSCONF // Fallback for systems without mmap. using DataEndingAtUnreadablePage = std::string; #endif enum CompressorType { ZLIB, LZO, LZ4, SNAPPY }; const char* names[] = {"ZLIB", "LZO", "LZ4", "SNAPPY"}; size_t MinimumRequiredOutputSpace(size_t input_size, CompressorType comp) { switch (comp) { #ifdef ZLIB_VERSION case ZLIB: return ZLib::MinCompressbufSize(input_size); #endif // ZLIB_VERSION #ifdef LZO_VERSION case LZO: return input_size + input_size/64 + 16 + 3; #endif // LZO_VERSION #ifdef LZ4_VERSION_NUMBER case LZ4: return LZ4_compressBound(input_size); #endif // LZ4_VERSION_NUMBER case SNAPPY: return snappy::MaxCompressedLength(input_size); default: LOG(FATAL) << "Unknown compression type number " << comp; return 0; } } // Returns true if we successfully compressed, false otherwise. // // If compressed_is_preallocated is set, do not resize the compressed buffer. // This is typically what you want for a benchmark, in order to not spend // time in the memory allocator. If you do set this flag, however, // "compressed" must be preinitialized to at least MinCompressbufSize(comp) // number of bytes, and may contain junk bytes at the end after return. bool Compress(const char* input, size_t input_size, CompressorType comp, std::string* compressed, bool compressed_is_preallocated) { if (!compressed_is_preallocated) { compressed->resize(MinimumRequiredOutputSpace(input_size, comp)); } switch (comp) { #ifdef ZLIB_VERSION case ZLIB: { ZLib zlib; uLongf destlen = compressed->size(); int ret = zlib.Compress( reinterpret_cast(string_as_array(compressed)), &destlen, reinterpret_cast(input), input_size); CHECK_EQ(Z_OK, ret); if (!compressed_is_preallocated) { compressed->resize(destlen); } return true; } #endif // ZLIB_VERSION #ifdef LZO_VERSION case LZO: { unsigned char* mem = new unsigned char[LZO1X_1_15_MEM_COMPRESS]; lzo_uint destlen; int ret = lzo1x_1_15_compress( reinterpret_cast(input), input_size, reinterpret_cast(string_as_array(compressed)), &destlen, mem); CHECK_EQ(LZO_E_OK, ret); delete[] mem; if (!compressed_is_preallocated) { compressed->resize(destlen); } break; } #endif // LZO_VERSION #ifdef LZ4_VERSION_NUMBER case LZ4: { int destlen = compressed->size(); destlen = LZ4_compress_default(input, string_as_array(compressed), input_size, destlen); CHECK_NE(destlen, 0); if (!compressed_is_preallocated) { compressed->resize(destlen); } break; } #endif // LZ4_VERSION_NUMBER case SNAPPY: { size_t destlen; snappy::RawCompress(input, input_size, string_as_array(compressed), &destlen); CHECK_LE(destlen, snappy::MaxCompressedLength(input_size)); if (!compressed_is_preallocated) { compressed->resize(destlen); } break; } default: { return false; // the asked-for library wasn't compiled in } } return true; } bool Uncompress(const std::string& compressed, CompressorType comp, int size, std::string* output) { // TODO: Switch to [[maybe_unused]] when we can assume C++17. (void)size; switch (comp) { #ifdef ZLIB_VERSION case ZLIB: { output->resize(size); ZLib zlib; uLongf destlen = output->size(); int ret = zlib.Uncompress( reinterpret_cast(string_as_array(output)), &destlen, reinterpret_cast(compressed.data()), compressed.size()); CHECK_EQ(Z_OK, ret); CHECK_EQ(static_cast(size), destlen); break; } #endif // ZLIB_VERSION #ifdef LZO_VERSION case LZO: { output->resize(size); lzo_uint destlen; int ret = lzo1x_decompress( reinterpret_cast(compressed.data()), compressed.size(), reinterpret_cast(string_as_array(output)), &destlen, NULL); CHECK_EQ(LZO_E_OK, ret); CHECK_EQ(static_cast(size), destlen); break; } #endif // LZO_VERSION #ifdef LZ4_VERSION_NUMBER case LZ4: { output->resize(size); int destlen = output->size(); destlen = LZ4_decompress_safe(compressed.data(), string_as_array(output), compressed.size(), destlen); CHECK_NE(destlen, 0); CHECK_EQ(size, destlen); break; } #endif // LZ4_VERSION_NUMBER case SNAPPY: { snappy::RawUncompress(compressed.data(), compressed.size(), string_as_array(output)); break; } default: { return false; // the asked-for library wasn't compiled in } } return true; } void Measure(const char* data, size_t length, CompressorType comp, int repeats, int block_size) { // Run tests a few time and pick median running times static const int kRuns = 5; double ctime[kRuns]; double utime[kRuns]; int compressed_size = 0; { // Chop the input into blocks int num_blocks = (length + block_size - 1) / block_size; std::vector input(num_blocks); std::vector input_length(num_blocks); std::vector compressed(num_blocks); std::vector output(num_blocks); for (int b = 0; b < num_blocks; ++b) { int input_start = b * block_size; int input_limit = std::min((b+1)*block_size, length); input[b] = data+input_start; input_length[b] = input_limit-input_start; } // Pre-grow the output buffers so we don't measure string append time. for (std::string& compressed_block : compressed) { compressed_block.resize(MinimumRequiredOutputSpace(block_size, comp)); } // First, try one trial compression to make sure the code is compiled in if (!Compress(input[0], input_length[0], comp, &compressed[0], true)) { LOG(WARNING) << "Skipping " << names[comp] << ": " << "library not compiled in"; return; } for (int run = 0; run < kRuns; ++run) { CycleTimer ctimer, utimer; // Pre-grow the output buffers so we don't measure string append time. for (std::string& compressed_block : compressed) { compressed_block.resize(MinimumRequiredOutputSpace(block_size, comp)); } ctimer.Start(); for (int b = 0; b < num_blocks; ++b) { for (int i = 0; i < repeats; ++i) Compress(input[b], input_length[b], comp, &compressed[b], true); } ctimer.Stop(); // Compress once more, with resizing, so we don't leave junk // at the end that will confuse the decompressor. for (int b = 0; b < num_blocks; ++b) { Compress(input[b], input_length[b], comp, &compressed[b], false); } for (int b = 0; b < num_blocks; ++b) { output[b].resize(input_length[b]); } utimer.Start(); for (int i = 0; i < repeats; ++i) { for (int b = 0; b < num_blocks; ++b) Uncompress(compressed[b], comp, input_length[b], &output[b]); } utimer.Stop(); ctime[run] = ctimer.Get(); utime[run] = utimer.Get(); } compressed_size = 0; for (const std::string& compressed_item : compressed) { compressed_size += compressed_item.size(); } } std::sort(ctime, ctime + kRuns); std::sort(utime, utime + kRuns); const int med = kRuns/2; float comp_rate = (length / ctime[med]) * repeats / 1048576.0; float uncomp_rate = (length / utime[med]) * repeats / 1048576.0; std::string x = names[comp]; x += ":"; std::string urate = (uncomp_rate >= 0) ? StrFormat("%.1f", uncomp_rate) : std::string("?"); std::printf("%-7s [b %dM] bytes %6d -> %6d %4.1f%% " "comp %5.1f MB/s uncomp %5s MB/s\n", x.c_str(), block_size/(1<<20), static_cast(length), static_cast(compressed_size), (compressed_size * 100.0) / std::max(1, length), comp_rate, urate.c_str()); } void CompressFile(const char* fname) { std::string fullinput; CHECK_OK(file::GetContents(fname, &fullinput, file::Defaults())); std::string compressed; Compress(fullinput.data(), fullinput.size(), SNAPPY, &compressed, false); CHECK_OK(file::SetContents(std::string(fname).append(".comp"), compressed, file::Defaults())); } void UncompressFile(const char* fname) { std::string fullinput; CHECK_OK(file::GetContents(fname, &fullinput, file::Defaults())); size_t uncompLength; CHECK(snappy::GetUncompressedLength(fullinput.data(), fullinput.size(), &uncompLength)); std::string uncompressed; uncompressed.resize(uncompLength); CHECK(snappy::Uncompress(fullinput.data(), fullinput.size(), &uncompressed)); CHECK_OK(file::SetContents(std::string(fname).append(".uncomp"), uncompressed, file::Defaults())); } void MeasureFile(const char* fname) { std::string fullinput; CHECK_OK(file::GetContents(fname, &fullinput, file::Defaults())); std::printf("%-40s :\n", fname); int start_len = (snappy::GetFlag(FLAGS_start_len) < 0) ? fullinput.size() : snappy::GetFlag(FLAGS_start_len); int end_len = fullinput.size(); if (snappy::GetFlag(FLAGS_end_len) >= 0) { end_len = std::min(fullinput.size(), snappy::GetFlag(FLAGS_end_len)); } for (int len = start_len; len <= end_len; ++len) { const char* const input = fullinput.data(); int repeats = (snappy::GetFlag(FLAGS_bytes) + len) / (len + 1); if (snappy::GetFlag(FLAGS_zlib)) Measure(input, len, ZLIB, repeats, 1024 << 10); if (snappy::GetFlag(FLAGS_lzo)) Measure(input, len, LZO, repeats, 1024 << 10); if (snappy::GetFlag(FLAGS_lz4)) Measure(input, len, LZ4, repeats, 1024 << 10); if (snappy::GetFlag(FLAGS_snappy)) Measure(input, len, SNAPPY, repeats, 4096 << 10); // For block-size based measurements if (0 && snappy::GetFlag(FLAGS_snappy)) { Measure(input, len, SNAPPY, repeats, 8<<10); Measure(input, len, SNAPPY, repeats, 16<<10); Measure(input, len, SNAPPY, repeats, 32<<10); Measure(input, len, SNAPPY, repeats, 64<<10); Measure(input, len, SNAPPY, repeats, 256<<10); Measure(input, len, SNAPPY, repeats, 1024<<10); } } } } // namespace } // namespace snappy int main(int argc, char** argv) { InitGoogle(argv[0], &argc, &argv, true); for (int arg = 1; arg < argc; ++arg) { if (snappy::GetFlag(FLAGS_write_compressed)) { snappy::CompressFile(argv[arg]); } else if (snappy::GetFlag(FLAGS_write_uncompressed)) { snappy::UncompressFile(argv[arg]); } else { snappy::MeasureFile(argv[arg]); } } return 0; } snappy-1.2.2/snappy_uncompress_fuzzer.cc000066400000000000000000000046531477101537200205510ustar00rootroot00000000000000// Copyright 2019 Google Inc. All Rights Reserved. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. // // libFuzzer harness for fuzzing snappy's decompression code. #include #include #include #include #include "snappy.h" // Entry point for LibFuzzer. extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { std::string input(reinterpret_cast(data), size); // Avoid self-crafted decompression bombs. size_t uncompressed_size; constexpr size_t kMaxUncompressedSize = 1 << 20; bool get_uncompressed_length_succeeded = snappy::GetUncompressedLength( input.data(), input.size(), &uncompressed_size); if (!get_uncompressed_length_succeeded || (uncompressed_size > kMaxUncompressedSize)) { return 0; } std::string uncompressed; // The return value of snappy::Uncompress() is ignored because decompression // will fail on invalid inputs. snappy::Uncompress(input.data(), input.size(), &uncompressed); return 0; } snappy-1.2.2/snappy_unittest.cc000066400000000000000000001075641477101537200166320ustar00rootroot00000000000000// Copyright 2005 and onwards Google Inc. // // Redistribution and use in source and binary forms, with or without // modification, are permitted provided that the following conditions are // met: // // * Redistributions of source code must retain the above copyright // notice, this list of conditions and the following disclaimer. // * Redistributions in binary form must reproduce the above // copyright notice, this list of conditions and the following disclaimer // in the documentation and/or other materials provided with the // distribution. // * Neither the name of Google Inc. nor the names of its // contributors may be used to endorse or promote products derived from // this software without specific prior written permission. // // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include #include #include #include #include #include #include #include #include "snappy-test.h" #include "gtest/gtest.h" #include "snappy-internal.h" #include "snappy-sinksource.h" #include "snappy.h" #include "snappy_test_data.h" SNAPPY_FLAG(bool, snappy_dump_decompression_table, false, "If true, we print the decompression table during tests."); namespace snappy { namespace { #if HAVE_FUNC_MMAP && HAVE_FUNC_SYSCONF // To test against code that reads beyond its input, this class copies a // string to a newly allocated group of pages, the last of which // is made unreadable via mprotect. Note that we need to allocate the // memory with mmap(), as POSIX allows mprotect() only on memory allocated // with mmap(), and some malloc/posix_memalign implementations expect to // be able to read previously allocated memory while doing heap allocations. class DataEndingAtUnreadablePage { public: explicit DataEndingAtUnreadablePage(const std::string& s) { const size_t page_size = sysconf(_SC_PAGESIZE); const size_t size = s.size(); // Round up space for string to a multiple of page_size. size_t space_for_string = (size + page_size - 1) & ~(page_size - 1); alloc_size_ = space_for_string + page_size; mem_ = mmap(NULL, alloc_size_, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, -1, 0); CHECK_NE(MAP_FAILED, mem_); protected_page_ = reinterpret_cast(mem_) + space_for_string; char* dst = protected_page_ - size; std::memcpy(dst, s.data(), size); data_ = dst; size_ = size; // Make guard page unreadable. CHECK_EQ(0, mprotect(protected_page_, page_size, PROT_NONE)); } ~DataEndingAtUnreadablePage() { const size_t page_size = sysconf(_SC_PAGESIZE); // Undo the mprotect. CHECK_EQ(0, mprotect(protected_page_, page_size, PROT_READ|PROT_WRITE)); CHECK_EQ(0, munmap(mem_, alloc_size_)); } const char* data() const { return data_; } size_t size() const { return size_; } private: size_t alloc_size_; void* mem_; char* protected_page_; const char* data_; size_t size_; }; #else // HAVE_FUNC_MMAP) && HAVE_FUNC_SYSCONF // Fallback for systems without mmap. using DataEndingAtUnreadablePage = std::string; #endif int VerifyString(const std::string& input) { std::string compressed; DataEndingAtUnreadablePage i(input); const size_t written = snappy::Compress(i.data(), i.size(), &compressed); CHECK_EQ(written, compressed.size()); CHECK_LE(compressed.size(), snappy::MaxCompressedLength(input.size())); CHECK(snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); std::string uncompressed; DataEndingAtUnreadablePage c(compressed); CHECK(snappy::Uncompress(c.data(), c.size(), &uncompressed)); CHECK_EQ(uncompressed, input); return uncompressed.size(); } void VerifyStringSink(const std::string& input) { std::string compressed; DataEndingAtUnreadablePage i(input); const size_t written = snappy::Compress(i.data(), i.size(), &compressed); CHECK_EQ(written, compressed.size()); CHECK_LE(compressed.size(), snappy::MaxCompressedLength(input.size())); CHECK(snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); std::string uncompressed; uncompressed.resize(input.size()); snappy::UncheckedByteArraySink sink(string_as_array(&uncompressed)); DataEndingAtUnreadablePage c(compressed); snappy::ByteArraySource source(c.data(), c.size()); CHECK(snappy::Uncompress(&source, &sink)); CHECK_EQ(uncompressed, input); } struct iovec* GetIOVec(const std::string& input, char*& buf, size_t& num) { std::minstd_rand0 rng(input.size()); std::uniform_int_distribution uniform_1_to_10(1, 10); num = uniform_1_to_10(rng); if (input.size() < num) { num = input.size(); } struct iovec* iov = new iovec[num]; size_t used_so_far = 0; std::bernoulli_distribution one_in_five(1.0 / 5); for (size_t i = 0; i < num; ++i) { assert(used_so_far < input.size()); iov[i].iov_base = buf + used_so_far; if (i == num - 1) { iov[i].iov_len = input.size() - used_so_far; } else { // Randomly choose to insert a 0 byte entry. if (one_in_five(rng)) { iov[i].iov_len = 0; } else { std::uniform_int_distribution uniform_not_used_so_far( 0, input.size() - used_so_far - 1); iov[i].iov_len = uniform_not_used_so_far(rng); } } used_so_far += iov[i].iov_len; } return iov; } int VerifyIOVecSource(const std::string& input) { std::string compressed; std::string copy = input; char* buf = const_cast(copy.data()); size_t num = 0; struct iovec* iov = GetIOVec(input, buf, num); const size_t written = snappy::CompressFromIOVec(iov, num, &compressed); CHECK_EQ(written, compressed.size()); CHECK_LE(compressed.size(), snappy::MaxCompressedLength(input.size())); CHECK(snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); std::string uncompressed; DataEndingAtUnreadablePage c(compressed); CHECK(snappy::Uncompress(c.data(), c.size(), &uncompressed)); CHECK_EQ(uncompressed, input); delete[] iov; return uncompressed.size(); } void VerifyIOVecSink(const std::string& input) { std::string compressed; DataEndingAtUnreadablePage i(input); const size_t written = snappy::Compress(i.data(), i.size(), &compressed); CHECK_EQ(written, compressed.size()); CHECK_LE(compressed.size(), snappy::MaxCompressedLength(input.size())); CHECK(snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); char* buf = new char[input.size()]; size_t num = 0; struct iovec* iov = GetIOVec(input, buf, num); CHECK(snappy::RawUncompressToIOVec(compressed.data(), compressed.size(), iov, num)); CHECK(!memcmp(buf, input.data(), input.size())); delete[] iov; delete[] buf; } // Test that data compressed by a compressor that does not // obey block sizes is uncompressed properly. void VerifyNonBlockedCompression(const std::string& input) { if (input.length() > snappy::kBlockSize) { // We cannot test larger blocks than the maximum block size, obviously. return; } std::string prefix; Varint::Append32(&prefix, input.size()); // Setup compression table snappy::internal::WorkingMemory wmem(input.size()); int table_size; uint16_t* table = wmem.GetHashTable(input.size(), &table_size); // Compress entire input in one shot std::string compressed; compressed += prefix; compressed.resize(prefix.size()+snappy::MaxCompressedLength(input.size())); char* dest = string_as_array(&compressed) + prefix.size(); char* end = snappy::internal::CompressFragment(input.data(), input.size(), dest, table, table_size); compressed.resize(end - compressed.data()); // Uncompress into std::string std::string uncomp_str; CHECK(snappy::Uncompress(compressed.data(), compressed.size(), &uncomp_str)); CHECK_EQ(uncomp_str, input); // Uncompress using source/sink std::string uncomp_str2; uncomp_str2.resize(input.size()); snappy::UncheckedByteArraySink sink(string_as_array(&uncomp_str2)); snappy::ByteArraySource source(compressed.data(), compressed.size()); CHECK(snappy::Uncompress(&source, &sink)); CHECK_EQ(uncomp_str2, input); // Uncompress into iovec { static const int kNumBlocks = 10; struct iovec vec[kNumBlocks]; const int block_size = 1 + input.size() / kNumBlocks; std::string iovec_data(block_size * kNumBlocks, 'x'); for (int i = 0; i < kNumBlocks; ++i) { vec[i].iov_base = string_as_array(&iovec_data) + i * block_size; vec[i].iov_len = block_size; } CHECK(snappy::RawUncompressToIOVec(compressed.data(), compressed.size(), vec, kNumBlocks)); CHECK_EQ(std::string(iovec_data.data(), input.size()), input); } } // Expand the input so that it is at least K times as big as block size std::string Expand(const std::string& input) { static const int K = 3; std::string data = input; while (data.size() < K * snappy::kBlockSize) { data += input; } return data; } int Verify(const std::string& input) { VLOG(1) << "Verifying input of size " << input.size(); // Compress using string based routines const int result = VerifyString(input); // Compress using `iovec`-based routines. CHECK_EQ(VerifyIOVecSource(input), result); // Verify using sink based routines VerifyStringSink(input); VerifyNonBlockedCompression(input); VerifyIOVecSink(input); if (!input.empty()) { const std::string expanded = Expand(input); VerifyNonBlockedCompression(expanded); VerifyIOVecSink(input); } return result; } bool IsValidCompressedBuffer(const std::string& c) { return snappy::IsValidCompressedBuffer(c.data(), c.size()); } bool Uncompress(const std::string& c, std::string* u) { return snappy::Uncompress(c.data(), c.size(), u); } // This test checks to ensure that snappy doesn't coredump if it gets // corrupted data. TEST(CorruptedTest, VerifyCorrupted) { std::string source = "making sure we don't crash with corrupted input"; VLOG(1) << source; std::string dest; std::string uncmp; snappy::Compress(source.data(), source.size(), &dest); // Mess around with the data. It's hard to simulate all possible // corruptions; this is just one example ... CHECK_GT(dest.size(), 3); dest[1]--; dest[3]++; // this really ought to fail. CHECK(!IsValidCompressedBuffer(dest)); CHECK(!Uncompress(dest, &uncmp)); // This is testing for a security bug - a buffer that decompresses to 100k // but we lie in the snappy header and only reserve 0 bytes of memory :) source.resize(100000); for (char& source_char : source) { source_char = 'A'; } snappy::Compress(source.data(), source.size(), &dest); dest[0] = dest[1] = dest[2] = dest[3] = 0; CHECK(!IsValidCompressedBuffer(dest)); CHECK(!Uncompress(dest, &uncmp)); if (sizeof(void *) == 4) { // Another security check; check a crazy big length can't DoS us with an // over-allocation. // Currently this is done only for 32-bit builds. On 64-bit builds, // where 3 GB might be an acceptable allocation size, Uncompress() // attempts to decompress, and sometimes causes the test to run out of // memory. dest[0] = dest[1] = dest[2] = dest[3] = '\xff'; // This decodes to a really large size, i.e., about 3 GB. dest[4] = 'k'; CHECK(!IsValidCompressedBuffer(dest)); CHECK(!Uncompress(dest, &uncmp)); } else { LOG(WARNING) << "Crazy decompression lengths not checked on 64-bit build"; } // This decodes to about 2 MB; much smaller, but should still fail. dest[0] = dest[1] = dest[2] = '\xff'; dest[3] = 0x00; CHECK(!IsValidCompressedBuffer(dest)); CHECK(!Uncompress(dest, &uncmp)); // try reading stuff in from a bad file. for (int i = 1; i <= 3; ++i) { std::string data = ReadTestDataFile(StrFormat("baddata%d.snappy", i).c_str(), 0); std::string uncmp; // check that we don't return a crazy length size_t ulen; CHECK(!snappy::GetUncompressedLength(data.data(), data.size(), &ulen) || (ulen < (1<<20))); uint32_t ulen2; snappy::ByteArraySource source(data.data(), data.size()); CHECK(!snappy::GetUncompressedLength(&source, &ulen2) || (ulen2 < (1<<20))); CHECK(!IsValidCompressedBuffer(data)); CHECK(!Uncompress(data, &uncmp)); } } // Helper routines to construct arbitrary compressed strings. // These mirror the compression code in snappy.cc, but are copied // here so that we can bypass some limitations in the how snappy.cc // invokes these routines. void AppendLiteral(std::string* dst, const std::string& literal) { if (literal.empty()) return; int n = literal.size() - 1; if (n < 60) { // Fit length in tag byte dst->push_back(0 | (n << 2)); } else { // Encode in upcoming bytes char number[4]; int count = 0; while (n > 0) { number[count++] = n & 0xff; n >>= 8; } dst->push_back(0 | ((59+count) << 2)); *dst += std::string(number, count); } *dst += literal; } void AppendCopy(std::string* dst, int offset, int length) { while (length > 0) { // Figure out how much to copy in one shot int to_copy; if (length >= 68) { to_copy = 64; } else if (length > 64) { to_copy = 60; } else { to_copy = length; } length -= to_copy; if ((to_copy >= 4) && (to_copy < 12) && (offset < 2048)) { assert(to_copy-4 < 8); // Must fit in 3 bits dst->push_back(1 | ((to_copy-4) << 2) | ((offset >> 8) << 5)); dst->push_back(offset & 0xff); } else if (offset < 65536) { dst->push_back(2 | ((to_copy-1) << 2)); dst->push_back(offset & 0xff); dst->push_back(offset >> 8); } else { dst->push_back(3 | ((to_copy-1) << 2)); dst->push_back(offset & 0xff); dst->push_back((offset >> 8) & 0xff); dst->push_back((offset >> 16) & 0xff); dst->push_back((offset >> 24) & 0xff); } } } TEST(Snappy, SimpleTests) { Verify(""); Verify("a"); Verify("ab"); Verify("abc"); Verify("aaaaaaa" + std::string(16, 'b') + std::string("aaaaa") + "abc"); Verify("aaaaaaa" + std::string(256, 'b') + std::string("aaaaa") + "abc"); Verify("aaaaaaa" + std::string(2047, 'b') + std::string("aaaaa") + "abc"); Verify("aaaaaaa" + std::string(65536, 'b') + std::string("aaaaa") + "abc"); Verify("abcaaaaaaa" + std::string(65536, 'b') + std::string("aaaaa") + "abc"); } // Regression test for cr/345340892. TEST(Snappy, AppendSelfPatternExtensionEdgeCases) { Verify("abcabcabcabcabcabcab"); Verify("abcabcabcabcabcabcab0123456789ABCDEF"); Verify("abcabcabcabcabcabcabcabcabcabcabcabc"); Verify("abcabcabcabcabcabcabcabcabcabcabcabc0123456789ABCDEF"); } // Regression test for cr/345340892. TEST(Snappy, AppendSelfPatternExtensionEdgeCasesExhaustive) { std::mt19937 rng; std::uniform_int_distribution uniform_byte(0, 255); for (int pattern_size = 1; pattern_size <= 18; ++pattern_size) { for (int length = 1; length <= 64; ++length) { for (int extra_bytes_after_pattern : {0, 1, 15, 16, 128}) { const int size = pattern_size + length + extra_bytes_after_pattern; std::string input; input.resize(size); for (int i = 0; i < pattern_size; ++i) { input[i] = 'a' + i; } for (int i = 0; i < length; ++i) { input[pattern_size + i] = input[i]; } for (int i = 0; i < extra_bytes_after_pattern; ++i) { input[pattern_size + length + i] = static_cast(uniform_byte(rng)); } Verify(input); } } } } // Verify max blowup (lots of four-byte copies) TEST(Snappy, MaxBlowup) { std::mt19937 rng; std::uniform_int_distribution uniform_byte(0, 255); std::string input; for (int i = 0; i < 80000; ++i) input.push_back(static_cast(uniform_byte(rng))); for (int i = 0; i < 80000; i += 4) { std::string four_bytes(input.end() - i - 4, input.end() - i); input.append(four_bytes); } Verify(input); } // Issue #201, when output is more than 4GB, we had a data corruption bug. // We cannot run this test always because of CI constraints. TEST(Snappy, DISABLED_MoreThan4GB) { std::mt19937 rng; std::uniform_int_distribution uniform_byte(0, 255); std::string input; input.resize((1ull << 32) - 1); for (uint64_t i = 0; i < ((1ull << 32) - 1); ++i) input[i] = static_cast(uniform_byte(rng)); Verify(input); } TEST(Snappy, RandomData) { std::minstd_rand0 rng(snappy::GetFlag(FLAGS_test_random_seed)); std::uniform_int_distribution uniform_0_to_3(0, 3); std::uniform_int_distribution uniform_0_to_8(0, 8); std::uniform_int_distribution uniform_byte(0, 255); std::uniform_int_distribution uniform_4k(0, 4095); std::uniform_int_distribution uniform_64k(0, 65535); std::bernoulli_distribution one_in_ten(1.0 / 10); constexpr int num_ops = 20000; for (int i = 0; i < num_ops; ++i) { if ((i % 1000) == 0) { VLOG(0) << "Random op " << i << " of " << num_ops; } std::string x; size_t len = uniform_4k(rng); if (i < 100) { len = 65536 + uniform_64k(rng); } while (x.size() < len) { int run_len = 1; if (one_in_ten(rng)) { int skewed_bits = uniform_0_to_8(rng); // int is guaranteed to hold at least 16 bits, this uses at most 8 bits. std::uniform_int_distribution skewed_low(0, (1 << skewed_bits) - 1); run_len = skewed_low(rng); } char c = static_cast(uniform_byte(rng)); if (i >= 100) { int skewed_bits = uniform_0_to_3(rng); // int is guaranteed to hold at least 16 bits, this uses at most 3 bits. std::uniform_int_distribution skewed_low(0, (1 << skewed_bits) - 1); c = static_cast(skewed_low(rng)); } while (run_len-- > 0 && x.size() < len) { x.push_back(c); } } Verify(x); } } TEST(Snappy, FourByteOffset) { // The new compressor cannot generate four-byte offsets since // it chops up the input into 32KB pieces. So we hand-emit the // copy manually. // The two fragments that make up the input string. std::string fragment1 = "012345689abcdefghijklmnopqrstuvwxyz"; std::string fragment2 = "some other string"; // How many times each fragment is emitted. const int n1 = 2; const int n2 = 100000 / fragment2.size(); const size_t length = n1 * fragment1.size() + n2 * fragment2.size(); std::string compressed; Varint::Append32(&compressed, length); AppendLiteral(&compressed, fragment1); std::string src = fragment1; for (int i = 0; i < n2; ++i) { AppendLiteral(&compressed, fragment2); src += fragment2; } AppendCopy(&compressed, src.size(), fragment1.size()); src += fragment1; CHECK_EQ(length, src.size()); std::string uncompressed; CHECK(snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); CHECK(snappy::Uncompress(compressed.data(), compressed.size(), &uncompressed)); CHECK_EQ(uncompressed, src); } TEST(Snappy, IOVecSourceEdgeCases) { // Validate that empty leading, trailing, and in-between iovecs are handled: // [] [] ['a'] [] ['b'] []. std::string data = "ab"; char* buf = const_cast(data.data()); size_t used_so_far = 0; static const int kLengths[] = {0, 0, 1, 0, 1, 0}; struct iovec iov[ARRAYSIZE(kLengths)]; for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { iov[i].iov_base = buf + used_so_far; iov[i].iov_len = kLengths[i]; used_so_far += kLengths[i]; } std::string compressed; snappy::CompressFromIOVec(iov, ARRAYSIZE(kLengths), &compressed); std::string uncompressed; snappy::Uncompress(compressed.data(), compressed.size(), &uncompressed); CHECK_EQ(data, uncompressed); } TEST(Snappy, IOVecSinkEdgeCases) { // Test some tricky edge cases in the iovec output that are not necessarily // exercised by random tests. // Our output blocks look like this initially (the last iovec is bigger // than depicted): // [ ] [ ] [ ] [ ] [ ] static const int kLengths[] = { 2, 1, 4, 8, 128 }; struct iovec iov[ARRAYSIZE(kLengths)]; for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { iov[i].iov_base = new char[kLengths[i]]; iov[i].iov_len = kLengths[i]; } std::string compressed; Varint::Append32(&compressed, 22); // A literal whose output crosses three blocks. // [ab] [c] [123 ] [ ] [ ] AppendLiteral(&compressed, "abc123"); // A copy whose output crosses two blocks (source and destination // segments marked). // [ab] [c] [1231] [23 ] [ ] // ^--^ -- AppendCopy(&compressed, 3, 3); // A copy where the input is, at first, in the block before the output: // // [ab] [c] [1231] [231231 ] [ ] // ^--- ^--- // Then during the copy, the pointers move such that the input and // output pointers are in the same block: // // [ab] [c] [1231] [23123123] [ ] // ^- ^- // And then they move again, so that the output pointer is no longer // in the same block as the input pointer: // [ab] [c] [1231] [23123123] [123 ] // ^-- ^-- AppendCopy(&compressed, 6, 9); // Finally, a copy where the input is from several blocks back, // and it also crosses three blocks: // // [ab] [c] [1231] [23123123] [123b ] // ^ ^ // [ab] [c] [1231] [23123123] [123bc ] // ^ ^ // [ab] [c] [1231] [23123123] [123bc12 ] // ^- ^- AppendCopy(&compressed, 17, 4); CHECK(snappy::RawUncompressToIOVec( compressed.data(), compressed.size(), iov, ARRAYSIZE(iov))); CHECK_EQ(0, memcmp(iov[0].iov_base, "ab", 2)); CHECK_EQ(0, memcmp(iov[1].iov_base, "c", 1)); CHECK_EQ(0, memcmp(iov[2].iov_base, "1231", 4)); CHECK_EQ(0, memcmp(iov[3].iov_base, "23123123", 8)); CHECK_EQ(0, memcmp(iov[4].iov_base, "123bc12", 7)); for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { delete[] reinterpret_cast(iov[i].iov_base); } } TEST(Snappy, IOVecLiteralOverflow) { static const int kLengths[] = { 3, 4 }; struct iovec iov[ARRAYSIZE(kLengths)]; for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { iov[i].iov_base = new char[kLengths[i]]; iov[i].iov_len = kLengths[i]; } std::string compressed; Varint::Append32(&compressed, 8); AppendLiteral(&compressed, "12345678"); CHECK(!snappy::RawUncompressToIOVec( compressed.data(), compressed.size(), iov, ARRAYSIZE(iov))); for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { delete[] reinterpret_cast(iov[i].iov_base); } } TEST(Snappy, IOVecCopyOverflow) { static const int kLengths[] = { 3, 4 }; struct iovec iov[ARRAYSIZE(kLengths)]; for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { iov[i].iov_base = new char[kLengths[i]]; iov[i].iov_len = kLengths[i]; } std::string compressed; Varint::Append32(&compressed, 8); AppendLiteral(&compressed, "123"); AppendCopy(&compressed, 3, 5); CHECK(!snappy::RawUncompressToIOVec( compressed.data(), compressed.size(), iov, ARRAYSIZE(iov))); for (int i = 0; i < ARRAYSIZE(kLengths); ++i) { delete[] reinterpret_cast(iov[i].iov_base); } } bool CheckUncompressedLength(const std::string& compressed, size_t* ulength) { const bool result1 = snappy::GetUncompressedLength(compressed.data(), compressed.size(), ulength); snappy::ByteArraySource source(compressed.data(), compressed.size()); uint32_t length; const bool result2 = snappy::GetUncompressedLength(&source, &length); CHECK_EQ(result1, result2); return result1; } TEST(SnappyCorruption, TruncatedVarint) { std::string compressed, uncompressed; size_t ulength; compressed.push_back('\xf0'); CHECK(!CheckUncompressedLength(compressed, &ulength)); CHECK(!snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); CHECK(!snappy::Uncompress(compressed.data(), compressed.size(), &uncompressed)); } TEST(SnappyCorruption, UnterminatedVarint) { std::string compressed, uncompressed; size_t ulength; compressed.push_back('\x80'); compressed.push_back('\x80'); compressed.push_back('\x80'); compressed.push_back('\x80'); compressed.push_back('\x80'); compressed.push_back(10); CHECK(!CheckUncompressedLength(compressed, &ulength)); CHECK(!snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); CHECK(!snappy::Uncompress(compressed.data(), compressed.size(), &uncompressed)); } TEST(SnappyCorruption, OverflowingVarint) { std::string compressed, uncompressed; size_t ulength; compressed.push_back('\xfb'); compressed.push_back('\xff'); compressed.push_back('\xff'); compressed.push_back('\xff'); compressed.push_back('\x7f'); CHECK(!CheckUncompressedLength(compressed, &ulength)); CHECK(!snappy::IsValidCompressedBuffer(compressed.data(), compressed.size())); CHECK(!snappy::Uncompress(compressed.data(), compressed.size(), &uncompressed)); } TEST(Snappy, ReadPastEndOfBuffer) { // Check that we do not read past end of input // Make a compressed string that ends with a single-byte literal std::string compressed; Varint::Append32(&compressed, 1); AppendLiteral(&compressed, "x"); std::string uncompressed; DataEndingAtUnreadablePage c(compressed); CHECK(snappy::Uncompress(c.data(), c.size(), &uncompressed)); CHECK_EQ(uncompressed, std::string("x")); } // Check for an infinite loop caused by a copy with offset==0 TEST(Snappy, ZeroOffsetCopy) { const char* compressed = "\x40\x12\x00\x00"; // \x40 Length (must be > kMaxIncrementCopyOverflow) // \x12\x00\x00 Copy with offset==0, length==5 char uncompressed[100]; EXPECT_FALSE(snappy::RawUncompress(compressed, 4, uncompressed)); } TEST(Snappy, ZeroOffsetCopyValidation) { const char* compressed = "\x05\x12\x00\x00"; // \x05 Length // \x12\x00\x00 Copy with offset==0, length==5 EXPECT_FALSE(snappy::IsValidCompressedBuffer(compressed, 4)); } int TestFindMatchLength(const char* s1, const char *s2, unsigned length) { uint64_t data; std::pair p = snappy::internal::FindMatchLength(s1, s2, s2 + length, &data); CHECK_EQ(p.first < 8, p.second); return p.first; } TEST(Snappy, FindMatchLength) { // Exercise all different code paths through the function. // 64-bit version: // Hit s1_limit in 64-bit loop, hit s1_limit in single-character loop. EXPECT_EQ(6, TestFindMatchLength("012345", "012345", 6)); EXPECT_EQ(11, TestFindMatchLength("01234567abc", "01234567abc", 11)); // Hit s1_limit in 64-bit loop, find a non-match in single-character loop. EXPECT_EQ(9, TestFindMatchLength("01234567abc", "01234567axc", 9)); // Same, but edge cases. EXPECT_EQ(11, TestFindMatchLength("01234567abc!", "01234567abc!", 11)); EXPECT_EQ(11, TestFindMatchLength("01234567abc!", "01234567abc?", 11)); // Find non-match at once in first loop. EXPECT_EQ(0, TestFindMatchLength("01234567xxxxxxxx", "?1234567xxxxxxxx", 16)); EXPECT_EQ(1, TestFindMatchLength("01234567xxxxxxxx", "0?234567xxxxxxxx", 16)); EXPECT_EQ(4, TestFindMatchLength("01234567xxxxxxxx", "01237654xxxxxxxx", 16)); EXPECT_EQ(7, TestFindMatchLength("01234567xxxxxxxx", "0123456?xxxxxxxx", 16)); // Find non-match in first loop after one block. EXPECT_EQ(8, TestFindMatchLength("abcdefgh01234567xxxxxxxx", "abcdefgh?1234567xxxxxxxx", 24)); EXPECT_EQ(9, TestFindMatchLength("abcdefgh01234567xxxxxxxx", "abcdefgh0?234567xxxxxxxx", 24)); EXPECT_EQ(12, TestFindMatchLength("abcdefgh01234567xxxxxxxx", "abcdefgh01237654xxxxxxxx", 24)); EXPECT_EQ(15, TestFindMatchLength("abcdefgh01234567xxxxxxxx", "abcdefgh0123456?xxxxxxxx", 24)); // 32-bit version: // Short matches. EXPECT_EQ(0, TestFindMatchLength("01234567", "?1234567", 8)); EXPECT_EQ(1, TestFindMatchLength("01234567", "0?234567", 8)); EXPECT_EQ(2, TestFindMatchLength("01234567", "01?34567", 8)); EXPECT_EQ(3, TestFindMatchLength("01234567", "012?4567", 8)); EXPECT_EQ(4, TestFindMatchLength("01234567", "0123?567", 8)); EXPECT_EQ(5, TestFindMatchLength("01234567", "01234?67", 8)); EXPECT_EQ(6, TestFindMatchLength("01234567", "012345?7", 8)); EXPECT_EQ(7, TestFindMatchLength("01234567", "0123456?", 8)); EXPECT_EQ(7, TestFindMatchLength("01234567", "0123456?", 7)); EXPECT_EQ(7, TestFindMatchLength("01234567!", "0123456??", 7)); // Hit s1_limit in 32-bit loop, hit s1_limit in single-character loop. EXPECT_EQ(10, TestFindMatchLength("xxxxxxabcd", "xxxxxxabcd", 10)); EXPECT_EQ(10, TestFindMatchLength("xxxxxxabcd?", "xxxxxxabcd?", 10)); EXPECT_EQ(13, TestFindMatchLength("xxxxxxabcdef", "xxxxxxabcdef", 13)); // Same, but edge cases. EXPECT_EQ(12, TestFindMatchLength("xxxxxx0123abc!", "xxxxxx0123abc!", 12)); EXPECT_EQ(12, TestFindMatchLength("xxxxxx0123abc!", "xxxxxx0123abc?", 12)); // Hit s1_limit in 32-bit loop, find a non-match in single-character loop. EXPECT_EQ(11, TestFindMatchLength("xxxxxx0123abc", "xxxxxx0123axc", 13)); // Find non-match at once in first loop. EXPECT_EQ(6, TestFindMatchLength("xxxxxx0123xxxxxxxx", "xxxxxx?123xxxxxxxx", 18)); EXPECT_EQ(7, TestFindMatchLength("xxxxxx0123xxxxxxxx", "xxxxxx0?23xxxxxxxx", 18)); EXPECT_EQ(8, TestFindMatchLength("xxxxxx0123xxxxxxxx", "xxxxxx0132xxxxxxxx", 18)); EXPECT_EQ(9, TestFindMatchLength("xxxxxx0123xxxxxxxx", "xxxxxx012?xxxxxxxx", 18)); // Same, but edge cases. EXPECT_EQ(6, TestFindMatchLength("xxxxxx0123", "xxxxxx?123", 10)); EXPECT_EQ(7, TestFindMatchLength("xxxxxx0123", "xxxxxx0?23", 10)); EXPECT_EQ(8, TestFindMatchLength("xxxxxx0123", "xxxxxx0132", 10)); EXPECT_EQ(9, TestFindMatchLength("xxxxxx0123", "xxxxxx012?", 10)); // Find non-match in first loop after one block. EXPECT_EQ(10, TestFindMatchLength("xxxxxxabcd0123xx", "xxxxxxabcd?123xx", 16)); EXPECT_EQ(11, TestFindMatchLength("xxxxxxabcd0123xx", "xxxxxxabcd0?23xx", 16)); EXPECT_EQ(12, TestFindMatchLength("xxxxxxabcd0123xx", "xxxxxxabcd0132xx", 16)); EXPECT_EQ(13, TestFindMatchLength("xxxxxxabcd0123xx", "xxxxxxabcd012?xx", 16)); // Same, but edge cases. EXPECT_EQ(10, TestFindMatchLength("xxxxxxabcd0123", "xxxxxxabcd?123", 14)); EXPECT_EQ(11, TestFindMatchLength("xxxxxxabcd0123", "xxxxxxabcd0?23", 14)); EXPECT_EQ(12, TestFindMatchLength("xxxxxxabcd0123", "xxxxxxabcd0132", 14)); EXPECT_EQ(13, TestFindMatchLength("xxxxxxabcd0123", "xxxxxxabcd012?", 14)); } TEST(Snappy, FindMatchLengthRandom) { constexpr int kNumTrials = 10000; constexpr int kTypicalLength = 10; std::minstd_rand0 rng(snappy::GetFlag(FLAGS_test_random_seed)); std::uniform_int_distribution uniform_byte(0, 255); std::bernoulli_distribution one_in_two(1.0 / 2); std::bernoulli_distribution one_in_typical_length(1.0 / kTypicalLength); for (int i = 0; i < kNumTrials; ++i) { std::string s, t; char a = static_cast(uniform_byte(rng)); char b = static_cast(uniform_byte(rng)); while (!one_in_typical_length(rng)) { s.push_back(one_in_two(rng) ? a : b); t.push_back(one_in_two(rng) ? a : b); } DataEndingAtUnreadablePage u(s); DataEndingAtUnreadablePage v(t); size_t matched = TestFindMatchLength(u.data(), v.data(), t.size()); if (matched == t.size()) { EXPECT_EQ(s, t); } else { EXPECT_NE(s[matched], t[matched]); for (size_t j = 0; j < matched; ++j) { EXPECT_EQ(s[j], t[j]); } } } } uint16_t MakeEntry(unsigned int extra, unsigned int len, unsigned int copy_offset) { // Check that all of the fields fit within the allocated space assert(extra == (extra & 0x7)); // At most 3 bits assert(copy_offset == (copy_offset & 0x7)); // At most 3 bits assert(len == (len & 0x7f)); // At most 7 bits return len | (copy_offset << 8) | (extra << 11); } // Check that the decompression table is correct, and optionally print out // the computed one. TEST(Snappy, VerifyCharTable) { using snappy::internal::LITERAL; using snappy::internal::COPY_1_BYTE_OFFSET; using snappy::internal::COPY_2_BYTE_OFFSET; using snappy::internal::COPY_4_BYTE_OFFSET; using snappy::internal::char_table; uint16_t dst[256]; // Place invalid entries in all places to detect missing initialization int assigned = 0; for (int i = 0; i < 256; ++i) { dst[i] = 0xffff; } // Small LITERAL entries. We store (len-1) in the top 6 bits. for (uint8_t len = 1; len <= 60; ++len) { dst[LITERAL | ((len - 1) << 2)] = MakeEntry(0, len, 0); assigned++; } // Large LITERAL entries. We use 60..63 in the high 6 bits to // encode the number of bytes of length info that follow the opcode. for (uint8_t extra_bytes = 1; extra_bytes <= 4; ++extra_bytes) { // We set the length field in the lookup table to 1 because extra // bytes encode len-1. dst[LITERAL | ((extra_bytes + 59) << 2)] = MakeEntry(extra_bytes, 1, 0); assigned++; } // COPY_1_BYTE_OFFSET. // // The tag byte in the compressed data stores len-4 in 3 bits, and // offset/256 in 3 bits. offset%256 is stored in the next byte. // // This format is used for length in range [4..11] and offset in // range [0..2047] for (uint8_t len = 4; len < 12; ++len) { for (uint16_t offset = 0; offset < 2048; offset += 256) { uint8_t offset_high = static_cast(offset >> 8); dst[COPY_1_BYTE_OFFSET | ((len - 4) << 2) | (offset_high << 5)] = MakeEntry(1, len, offset_high); assigned++; } } // COPY_2_BYTE_OFFSET. // Tag contains len-1 in top 6 bits, and offset in next two bytes. for (uint8_t len = 1; len <= 64; ++len) { dst[COPY_2_BYTE_OFFSET | ((len - 1) << 2)] = MakeEntry(2, len, 0); assigned++; } // COPY_4_BYTE_OFFSET. // Tag contents len-1 in top 6 bits, and offset in next four bytes. for (uint8_t len = 1; len <= 64; ++len) { dst[COPY_4_BYTE_OFFSET | ((len - 1) << 2)] = MakeEntry(4, len, 0); assigned++; } // Check that each entry was initialized exactly once. EXPECT_EQ(256, assigned) << "Assigned only " << assigned << " of 256"; for (int i = 0; i < 256; ++i) { EXPECT_NE(0xffff, dst[i]) << "Did not assign byte " << i; } if (snappy::GetFlag(FLAGS_snappy_dump_decompression_table)) { std::printf("static const uint16_t char_table[256] = {\n "); for (int i = 0; i < 256; ++i) { std::printf("0x%04x%s", dst[i], ((i == 255) ? "\n" : (((i % 8) == 7) ? ",\n " : ", "))); } std::printf("};\n"); } // Check that computed table matched recorded table. for (int i = 0; i < 256; ++i) { EXPECT_EQ(dst[i], char_table[i]) << "Mismatch in byte " << i; } } TEST(Snappy, TestBenchmarkFiles) { for (int i = 0; i < ARRAYSIZE(kTestDataFiles); ++i) { Verify(ReadTestDataFile(kTestDataFiles[i].filename, kTestDataFiles[i].size_limit)); } } } // namespace } // namespace snappy snappy-1.2.2/testdata/000077500000000000000000000000001477101537200146465ustar00rootroot00000000000000snappy-1.2.2/testdata/alice29.txt000066400000000000000000004510311477101537200166430ustar00rootroot00000000000000 ALICE'S ADVENTURES IN WONDERLAND Lewis Carroll THE MILLENNIUM FULCRUM EDITION 2.9 CHAPTER I Down the Rabbit-Hole Alice was beginning to get very tired of sitting by her sister on the bank, and of having nothing to do: once or twice she had peeped into the book her sister was reading, but it had no pictures or conversations in it, `and what is the use of a book,' thought Alice `without pictures or conversation?' So she was considering in her own mind (as well as she could, for the hot day made her feel very sleepy and stupid), whether the pleasure of making a daisy-chain would be worth the trouble of getting up and picking the daisies, when suddenly a White Rabbit with pink eyes ran close by her. There was nothing so VERY remarkable in that; nor did Alice think it so VERY much out of the way to hear the Rabbit say to itself, `Oh dear! Oh dear! I shall be late!' (when she thought it over afterwards, it occurred to her that she ought to have wondered at this, but at the time it all seemed quite natural); but when the Rabbit actually TOOK A WATCH OUT OF ITS WAISTCOAT- POCKET, and looked at it, and then hurried on, Alice started to her feet, for it flashed across her mind that she had never before seen a rabbit with either a waistcoat-pocket, or a watch to take out of it, and burning with curiosity, she ran across the field after it, and fortunately was just in time to see it pop down a large rabbit-hole under the hedge. In another moment down went Alice after it, never once considering how in the world she was to get out again. The rabbit-hole went straight on like a tunnel for some way, and then dipped suddenly down, so suddenly that Alice had not a moment to think about stopping herself before she found herself falling down a very deep well. Either the well was very deep, or she fell very slowly, for she had plenty of time as she went down to look about her and to wonder what was going to happen next. First, she tried to look down and make out what she was coming to, but it was too dark to see anything; then she looked at the sides of the well, and noticed that they were filled with cupboards and book-shelves; here and there she saw maps and pictures hung upon pegs. She took down a jar from one of the shelves as she passed; it was labelled `ORANGE MARMALADE', but to her great disappointment it was empty: she did not like to drop the jar for fear of killing somebody, so managed to put it into one of the cupboards as she fell past it. `Well!' thought Alice to herself, `after such a fall as this, I shall think nothing of tumbling down stairs! How brave they'll all think me at home! Why, I wouldn't say anything about it, even if I fell off the top of the house!' (Which was very likely true.) Down, down, down. Would the fall NEVER come to an end! `I wonder how many miles I've fallen by this time?' she said aloud. `I must be getting somewhere near the centre of the earth. Let me see: that would be four thousand miles down, I think--' (for, you see, Alice had learnt several things of this sort in her lessons in the schoolroom, and though this was not a VERY good opportunity for showing off her knowledge, as there was no one to listen to her, still it was good practice to say it over) `--yes, that's about the right distance--but then I wonder what Latitude or Longitude I've got to?' (Alice had no idea what Latitude was, or Longitude either, but thought they were nice grand words to say.) Presently she began again. `I wonder if I shall fall right THROUGH the earth! How funny it'll seem to come out among the people that walk with their heads downward! The Antipathies, I think--' (she was rather glad there WAS no one listening, this time, as it didn't sound at all the right word) `--but I shall have to ask them what the name of the country is, you know. Please, Ma'am, is this New Zealand or Australia?' (and she tried to curtsey as she spoke--fancy CURTSEYING as you're falling through the air! Do you think you could manage it?) `And what an ignorant little girl she'll think me for asking! No, it'll never do to ask: perhaps I shall see it written up somewhere.' Down, down, down. There was nothing else to do, so Alice soon began talking again. `Dinah'll miss me very much to-night, I should think!' (Dinah was the cat.) `I hope they'll remember her saucer of milk at tea-time. Dinah my dear! I wish you were down here with me! There are no mice in the air, I'm afraid, but you might catch a bat, and that's very like a mouse, you know. But do cats eat bats, I wonder?' And here Alice began to get rather sleepy, and went on saying to herself, in a dreamy sort of way, `Do cats eat bats? Do cats eat bats?' and sometimes, `Do bats eat cats?' for, you see, as she couldn't answer either question, it didn't much matter which way she put it. She felt that she was dozing off, and had just begun to dream that she was walking hand in hand with Dinah, and saying to her very earnestly, `Now, Dinah, tell me the truth: did you ever eat a bat?' when suddenly, thump! thump! down she came upon a heap of sticks and dry leaves, and the fall was over. Alice was not a bit hurt, and she jumped up on to her feet in a moment: she looked up, but it was all dark overhead; before her was another long passage, and the White Rabbit was still in sight, hurrying down it. There was not a moment to be lost: away went Alice like the wind, and was just in time to hear it say, as it turned a corner, `Oh my ears and whiskers, how late it's getting!' She was close behind it when she turned the corner, but the Rabbit was no longer to be seen: she found herself in a long, low hall, which was lit up by a row of lamps hanging from the roof. There were doors all round the hall, but they were all locked; and when Alice had been all the way down one side and up the other, trying every door, she walked sadly down the middle, wondering how she was ever to get out again. Suddenly she came upon a little three-legged table, all made of solid glass; there was nothing on it except a tiny golden key, and Alice's first thought was that it might belong to one of the doors of the hall; but, alas! either the locks were too large, or the key was too small, but at any rate it would not open any of them. However, on the second time round, she came upon a low curtain she had not noticed before, and behind it was a little door about fifteen inches high: she tried the little golden key in the lock, and to her great delight it fitted! Alice opened the door and found that it led into a small passage, not much larger than a rat-hole: she knelt down and looked along the passage into the loveliest garden you ever saw. How she longed to get out of that dark hall, and wander about among those beds of bright flowers and those cool fountains, but she could not even get her head though the doorway; `and even if my head would go through,' thought poor Alice, `it would be of very little use without my shoulders. Oh, how I wish I could shut up like a telescope! I think I could, if I only know how to begin.' For, you see, so many out-of-the-way things had happened lately, that Alice had begun to think that very few things indeed were really impossible. There seemed to be no use in waiting by the little door, so she went back to the table, half hoping she might find another key on it, or at any rate a book of rules for shutting people up like telescopes: this time she found a little bottle on it, (`which certainly was not here before,' said Alice,) and round the neck of the bottle was a paper label, with the words `DRINK ME' beautifully printed on it in large letters. It was all very well to say `Drink me,' but the wise little Alice was not going to do THAT in a hurry. `No, I'll look first,' she said, `and see whether it's marked "poison" or not'; for she had read several nice little histories about children who had got burnt, and eaten up by wild beasts and other unpleasant things, all because they WOULD not remember the simple rules their friends had taught them: such as, that a red-hot poker will burn you if you hold it too long; and that if you cut your finger VERY deeply with a knife, it usually bleeds; and she had never forgotten that, if you drink much from a bottle marked `poison,' it is almost certain to disagree with you, sooner or later. However, this bottle was NOT marked `poison,' so Alice ventured to taste it, and finding it very nice, (it had, in fact, a sort of mixed flavour of cherry-tart, custard, pine-apple, roast turkey, toffee, and hot buttered toast,) she very soon finished it off. * * * * * * * * * * * * * * * * * * * * `What a curious feeling!' said Alice; `I must be shutting up like a telescope.' And so it was indeed: she was now only ten inches high, and her face brightened up at the thought that she was now the right size for going though the little door into that lovely garden. First, however, she waited for a few minutes to see if she was going to shrink any further: she felt a little nervous about this; `for it might end, you know,' said Alice to herself, `in my going out altogether, like a candle. I wonder what I should be like then?' And she tried to fancy what the flame of a candle is like after the candle is blown out, for she could not remember ever having seen such a thing. After a while, finding that nothing more happened, she decided on going into the garden at once; but, alas for poor Alice! when she got to the door, she found he had forgotten the little golden key, and when she went back to the table for it, she found she could not possibly reach it: she could see it quite plainly through the glass, and she tried her best to climb up one of the legs of the table, but it was too slippery; and when she had tired herself out with trying, the poor little thing sat down and cried. `Come, there's no use in crying like that!' said Alice to herself, rather sharply; `I advise you to leave off this minute!' She generally gave herself very good advice, (though she very seldom followed it), and sometimes she scolded herself so severely as to bring tears into her eyes; and once she remembered trying to box her own ears for having cheated herself in a game of croquet she was playing against herself, for this curious child was very fond of pretending to be two people. `But it's no use now,' thought poor Alice, `to pretend to be two people! Why, there's hardly enough of me left to make ONE respectable person!' Soon her eye fell on a little glass box that was lying under the table: she opened it, and found in it a very small cake, on which the words `EAT ME' were beautifully marked in currants. `Well, I'll eat it,' said Alice, `and if it makes me grow larger, I can reach the key; and if it makes me grow smaller, I can creep under the door; so either way I'll get into the garden, and I don't care which happens!' She ate a little bit, and said anxiously to herself, `Which way? Which way?', holding her hand on the top of her head to feel which way it was growing, and she was quite surprised to find that she remained the same size: to be sure, this generally happens when one eats cake, but Alice had got so much into the way of expecting nothing but out-of-the-way things to happen, that it seemed quite dull and stupid for life to go on in the common way. So she set to work, and very soon finished off the cake. * * * * * * * * * * * * * * * * * * * * CHAPTER II The Pool of Tears `Curiouser and curiouser!' cried Alice (she was so much surprised, that for the moment she quite forgot how to speak good English); `now I'm opening out like the largest telescope that ever was! Good-bye, feet!' (for when she looked down at her feet, they seemed to be almost out of sight, they were getting so far off). `Oh, my poor little feet, I wonder who will put on your shoes and stockings for you now, dears? I'm sure _I_ shan't be able! I shall be a great deal too far off to trouble myself about you: you must manage the best way you can; --but I must be kind to them,' thought Alice, `or perhaps they won't walk the way I want to go! Let me see: I'll give them a new pair of boots every Christmas.' And she went on planning to herself how she would manage it. `They must go by the carrier,' she thought; `and how funny it'll seem, sending presents to one's own feet! And how odd the directions will look! ALICE'S RIGHT FOOT, ESQ. HEARTHRUG, NEAR THE FENDER, (WITH ALICE'S LOVE). Oh dear, what nonsense I'm talking!' Just then her head struck against the roof of the hall: in fact she was now more than nine feet high, and she at once took up the little golden key and hurried off to the garden door. Poor Alice! It was as much as she could do, lying down on one side, to look through into the garden with one eye; but to get through was more hopeless than ever: she sat down and began to cry again. `You ought to be ashamed of yourself,' said Alice, `a great girl like you,' (she might well say this), `to go on crying in this way! Stop this moment, I tell you!' But she went on all the same, shedding gallons of tears, until there was a large pool all round her, about four inches deep and reaching half down the hall. After a time she heard a little pattering of feet in the distance, and she hastily dried her eyes to see what was coming. It was the White Rabbit returning, splendidly dressed, with a pair of white kid gloves in one hand and a large fan in the other: he came trotting along in a great hurry, muttering to himself as he came, `Oh! the Duchess, the Duchess! Oh! won't she be savage if I've kept her waiting!' Alice felt so desperate that she was ready to ask help of any one; so, when the Rabbit came near her, she began, in a low, timid voice, `If you please, sir--' The Rabbit started violently, dropped the white kid gloves and the fan, and skurried away into the darkness as hard as he could go. Alice took up the fan and gloves, and, as the hall was very hot, she kept fanning herself all the time she went on talking: `Dear, dear! How queer everything is to-day! And yesterday things went on just as usual. I wonder if I've been changed in the night? Let me think: was I the same when I got up this morning? I almost think I can remember feeling a little different. But if I'm not the same, the next question is, Who in the world am I? Ah, THAT'S the great puzzle!' And she began thinking over all the children she knew that were of the same age as herself, to see if she could have been changed for any of them. `I'm sure I'm not Ada,' she said, `for her hair goes in such long ringlets, and mine doesn't go in ringlets at all; and I'm sure I can't be Mabel, for I know all sorts of things, and she, oh! she knows such a very little! Besides, SHE'S she, and I'm I, and--oh dear, how puzzling it all is! I'll try if I know all the things I used to know. Let me see: four times five is twelve, and four times six is thirteen, and four times seven is--oh dear! I shall never get to twenty at that rate! However, the Multiplication Table doesn't signify: let's try Geography. London is the capital of Paris, and Paris is the capital of Rome, and Rome--no, THAT'S all wrong, I'm certain! I must have been changed for Mabel! I'll try and say "How doth the little--"' and she crossed her hands on her lap as if she were saying lessons, and began to repeat it, but her voice sounded hoarse and strange, and the words did not come the same as they used to do:-- `How doth the little crocodile Improve his shining tail, And pour the waters of the Nile On every golden scale! `How cheerfully he seems to grin, How neatly spread his claws, And welcome little fishes in With gently smiling jaws!' `I'm sure those are not the right words,' said poor Alice, and her eyes filled with tears again as she went on, `I must be Mabel after all, and I shall have to go and live in that poky little house, and have next to no toys to play with, and oh! ever so many lessons to learn! No, I've made up my mind about it; if I'm Mabel, I'll stay down here! It'll be no use their putting their heads down and saying "Come up again, dear!" I shall only look up and say "Who am I then? Tell me that first, and then, if I like being that person, I'll come up: if not, I'll stay down here till I'm somebody else"--but, oh dear!' cried Alice, with a sudden burst of tears, `I do wish they WOULD put their heads down! I am so VERY tired of being all alone here!' As she said this she looked down at her hands, and was surprised to see that she had put on one of the Rabbit's little white kid gloves while she was talking. `How CAN I have done that?' she thought. `I must be growing small again.' She got up and went to the table to measure herself by it, and found that, as nearly as she could guess, she was now about two feet high, and was going on shrinking rapidly: she soon found out that the cause of this was the fan she was holding, and she dropped it hastily, just in time to avoid shrinking away altogether. `That WAS a narrow escape!' said Alice, a good deal frightened at the sudden change, but very glad to find herself still in existence; `and now for the garden!' and she ran with all speed back to the little door: but, alas! the little door was shut again, and the little golden key was lying on the glass table as before, `and things are worse than ever,' thought the poor child, `for I never was so small as this before, never! And I declare it's too bad, that it is!' As she said these words her foot slipped, and in another moment, splash! she was up to her chin in salt water. He first idea was that she had somehow fallen into the sea, `and in that case I can go back by railway,' she said to herself. (Alice had been to the seaside once in her life, and had come to the general conclusion, that wherever you go to on the English coast you find a number of bathing machines in the sea, some children digging in the sand with wooden spades, then a row of lodging houses, and behind them a railway station.) However, she soon made out that she was in the pool of tears which she had wept when she was nine feet high. `I wish I hadn't cried so much!' said Alice, as she swam about, trying to find her way out. `I shall be punished for it now, I suppose, by being drowned in my own tears! That WILL be a queer thing, to be sure! However, everything is queer to-day.' Just then she heard something splashing about in the pool a little way off, and she swam nearer to make out what it was: at first she thought it must be a walrus or hippopotamus, but then she remembered how small she was now, and she soon made out that it was only a mouse that had slipped in like herself. `Would it be of any use, now,' thought Alice, `to speak to this mouse? Everything is so out-of-the-way down here, that I should think very likely it can talk: at any rate, there's no harm in trying.' So she began: `O Mouse, do you know the way out of this pool? I am very tired of swimming about here, O Mouse!' (Alice thought this must be the right way of speaking to a mouse: she had never done such a thing before, but she remembered having seen in her brother's Latin Grammar, `A mouse--of a mouse--to a mouse--a mouse--O mouse!' The Mouse looked at her rather inquisitively, and seemed to her to wink with one of its little eyes, but it said nothing. `Perhaps it doesn't understand English,' thought Alice; `I daresay it's a French mouse, come over with William the Conqueror.' (For, with all her knowledge of history, Alice had no very clear notion how long ago anything had happened.) So she began again: `Ou est ma chatte?' which was the first sentence in her French lesson-book. The Mouse gave a sudden leap out of the water, and seemed to quiver all over with fright. `Oh, I beg your pardon!' cried Alice hastily, afraid that she had hurt the poor animal's feelings. `I quite forgot you didn't like cats.' `Not like cats!' cried the Mouse, in a shrill, passionate voice. `Would YOU like cats if you were me?' `Well, perhaps not,' said Alice in a soothing tone: `don't be angry about it. And yet I wish I could show you our cat Dinah: I think you'd take a fancy to cats if you could only see her. She is such a dear quiet thing,' Alice went on, half to herself, as she swam lazily about in the pool, `and she sits purring so nicely by the fire, licking her paws and washing her face--and she is such a nice soft thing to nurse--and she's such a capital one for catching mice--oh, I beg your pardon!' cried Alice again, for this time the Mouse was bristling all over, and she felt certain it must be really offended. `We won't talk about her any more if you'd rather not.' `We indeed!' cried the Mouse, who was trembling down to the end of his tail. `As if I would talk on such a subject! Our family always HATED cats: nasty, low, vulgar things! Don't let me hear the name again!' `I won't indeed!' said Alice, in a great hurry to change the subject of conversation. `Are you--are you fond--of--of dogs?' The Mouse did not answer, so Alice went on eagerly: `There is such a nice little dog near our house I should like to show you! A little bright-eyed terrier, you know, with oh, such long curly brown hair! And it'll fetch things when you throw them, and it'll sit up and beg for its dinner, and all sorts of things--I can't remember half of them--and it belongs to a farmer, you know, and he says it's so useful, it's worth a hundred pounds! He says it kills all the rats and--oh dear!' cried Alice in a sorrowful tone, `I'm afraid I've offended it again!' For the Mouse was swimming away from her as hard as it could go, and making quite a commotion in the pool as it went. So she called softly after it, `Mouse dear! Do come back again, and we won't talk about cats or dogs either, if you don't like them!' When the Mouse heard this, it turned round and swam slowly back to her: its face was quite pale (with passion, Alice thought), and it said in a low trembling voice, `Let us get to the shore, and then I'll tell you my history, and you'll understand why it is I hate cats and dogs.' It was high time to go, for the pool was getting quite crowded with the birds and animals that had fallen into it: there were a Duck and a Dodo, a Lory and an Eaglet, and several other curious creatures. Alice led the way, and the whole party swam to the shore. CHAPTER III A Caucus-Race and a Long Tale They were indeed a queer-looking party that assembled on the bank--the birds with draggled feathers, the animals with their fur clinging close to them, and all dripping wet, cross, and uncomfortable. The first question of course was, how to get dry again: they had a consultation about this, and after a few minutes it seemed quite natural to Alice to find herself talking familiarly with them, as if she had known them all her life. Indeed, she had quite a long argument with the Lory, who at last turned sulky, and would only say, `I am older than you, and must know better'; and this Alice would not allow without knowing how old it was, and, as the Lory positively refused to tell its age, there was no more to be said. At last the Mouse, who seemed to be a person of authority among them, called out, `Sit down, all of you, and listen to me! I'LL soon make you dry enough!' They all sat down at once, in a large ring, with the Mouse in the middle. Alice kept her eyes anxiously fixed on it, for she felt sure she would catch a bad cold if she did not get dry very soon. `Ahem!' said the Mouse with an important air, `are you all ready? This is the driest thing I know. Silence all round, if you please! "William the Conqueror, whose cause was favoured by the pope, was soon submitted to by the English, who wanted leaders, and had been of late much accustomed to usurpation and conquest. Edwin and Morcar, the earls of Mercia and Northumbria--"' `Ugh!' said the Lory, with a shiver. `I beg your pardon!' said the Mouse, frowning, but very politely: `Did you speak?' `Not I!' said the Lory hastily. `I thought you did,' said the Mouse. `--I proceed. "Edwin and Morcar, the earls of Mercia and Northumbria, declared for him: and even Stigand, the patriotic archbishop of Canterbury, found it advisable--"' `Found WHAT?' said the Duck. `Found IT,' the Mouse replied rather crossly: `of course you know what "it" means.' `I know what "it" means well enough, when I find a thing,' said the Duck: `it's generally a frog or a worm. The question is, what did the archbishop find?' The Mouse did not notice this question, but hurriedly went on, `"--found it advisable to go with Edgar Atheling to meet William and offer him the crown. William's conduct at first was moderate. But the insolence of his Normans--" How are you getting on now, my dear?' it continued, turning to Alice as it spoke. `As wet as ever,' said Alice in a melancholy tone: `it doesn't seem to dry me at all.' `In that case,' said the Dodo solemnly, rising to its feet, `I move that the meeting adjourn, for the immediate adoption of more energetic remedies--' `Speak English!' said the Eaglet. `I don't know the meaning of half those long words, and, what's more, I don't believe you do either!' And the Eaglet bent down its head to hide a smile: some of the other birds tittered audibly. `What I was going to say,' said the Dodo in an offended tone, `was, that the best thing to get us dry would be a Caucus-race.' `What IS a Caucus-race?' said Alice; not that she wanted much to know, but the Dodo had paused as if it thought that SOMEBODY ought to speak, and no one else seemed inclined to say anything. `Why,' said the Dodo, `the best way to explain it is to do it.' (And, as you might like to try the thing yourself, some winter day, I will tell you how the Dodo managed it.) First it marked out a race-course, in a sort of circle, (`the exact shape doesn't matter,' it said,) and then all the party were placed along the course, here and there. There was no `One, two, three, and away,' but they began running when they liked, and left off when they liked, so that it was not easy to know when the race was over. However, when they had been running half an hour or so, and were quite dry again, the Dodo suddenly called out `The race is over!' and they all crowded round it, panting, and asking, `But who has won?' This question the Dodo could not answer without a great deal of thought, and it sat for a long time with one finger pressed upon its forehead (the position in which you usually see Shakespeare, in the pictures of him), while the rest waited in silence. At last the Dodo said, `EVERYBODY has won, and all must have prizes.' `But who is to give the prizes?' quite a chorus of voices asked. `Why, SHE, of course,' said the Dodo, pointing to Alice with one finger; and the whole party at once crowded round her, calling out in a confused way, `Prizes! Prizes!' Alice had no idea what to do, and in despair she put her hand in her pocket, and pulled out a box of comfits, (luckily the salt water had not got into it), and handed them round as prizes. There was exactly one a-piece all round. `But she must have a prize herself, you know,' said the Mouse. `Of course,' the Dodo replied very gravely. `What else have you got in your pocket?' he went on, turning to Alice. `Only a thimble,' said Alice sadly. `Hand it over here,' said the Dodo. Then they all crowded round her once more, while the Dodo solemnly presented the thimble, saying `We beg your acceptance of this elegant thimble'; and, when it had finished this short speech, they all cheered. Alice thought the whole thing very absurd, but they all looked so grave that she did not dare to laugh; and, as she could not think of anything to say, she simply bowed, and took the thimble, looking as solemn as she could. The next thing was to eat the comfits: this caused some noise and confusion, as the large birds complained that they could not taste theirs, and the small ones choked and had to be patted on the back. However, it was over at last, and they sat down again in a ring, and begged the Mouse to tell them something more. `You promised to tell me your history, you know,' said Alice, `and why it is you hate--C and D,' she added in a whisper, half afraid that it would be offended again. `Mine is a long and a sad tale!' said the Mouse, turning to Alice, and sighing. `It IS a long tail, certainly,' said Alice, looking down with wonder at the Mouse's tail; `but why do you call it sad?' And she kept on puzzling about it while the Mouse was speaking, so that her idea of the tale was something like this:-- `Fury said to a mouse, That he met in the house, "Let us both go to law: I will prosecute YOU. --Come, I'll take no denial; We must have a trial: For really this morning I've nothing to do." Said the mouse to the cur, "Such a trial, dear Sir, With no jury or judge, would be wasting our breath." "I'll be judge, I'll be jury," Said cunning old Fury: "I'll try the whole cause, and condemn you to death."' `You are not attending!' said the Mouse to Alice severely. `What are you thinking of?' `I beg your pardon,' said Alice very humbly: `you had got to the fifth bend, I think?' `I had NOT!' cried the Mouse, sharply and very angrily. `A knot!' said Alice, always ready to make herself useful, and looking anxiously about her. `Oh, do let me help to undo it!' `I shall do nothing of the sort,' said the Mouse, getting up and walking away. `You insult me by talking such nonsense!' `I didn't mean it!' pleaded poor Alice. `But you're so easily offended, you know!' The Mouse only growled in reply. `Please come back and finish your story!' Alice called after it; and the others all joined in chorus, `Yes, please do!' but the Mouse only shook its head impatiently, and walked a little quicker. `What a pity it wouldn't stay!' sighed the Lory, as soon as it was quite out of sight; and an old Crab took the opportunity of saying to her daughter `Ah, my dear! Let this be a lesson to you never to lose YOUR temper!' `Hold your tongue, Ma!' said the young Crab, a little snappishly. `You're enough to try the patience of an oyster!' `I wish I had our Dinah here, I know I do!' said Alice aloud, addressing nobody in particular. `She'd soon fetch it back!' `And who is Dinah, if I might venture to ask the question?' said the Lory. Alice replied eagerly, for she was always ready to talk about her pet: `Dinah's our cat. And she's such a capital one for catching mice you can't think! And oh, I wish you could see her after the birds! Why, she'll eat a little bird as soon as look at it!' This speech caused a remarkable sensation among the party. Some of the birds hurried off at once: one the old Magpie began wrapping itself up very carefully, remarking, `I really must be getting home; the night-air doesn't suit my throat!' and a Canary called out in a trembling voice to its children, `Come away, my dears! It's high time you were all in bed!' On various pretexts they all moved off, and Alice was soon left alone. `I wish I hadn't mentioned Dinah!' she said to herself in a melancholy tone. `Nobody seems to like her, down here, and I'm sure she's the best cat in the world! Oh, my dear Dinah! I wonder if I shall ever see you any more!' And here poor Alice began to cry again, for she felt very lonely and low-spirited. In a little while, however, she again heard a little pattering of footsteps in the distance, and she looked up eagerly, half hoping that the Mouse had changed his mind, and was coming back to finish his story. CHAPTER IV The Rabbit Sends in a Little Bill It was the White Rabbit, trotting slowly back again, and looking anxiously about as it went, as if it had lost something; and she heard it muttering to itself `The Duchess! The Duchess! Oh my dear paws! Oh my fur and whiskers! She'll get me executed, as sure as ferrets are ferrets! Where CAN I have dropped them, I wonder?' Alice guessed in a moment that it was looking for the fan and the pair of white kid gloves, and she very good-naturedly began hunting about for them, but they were nowhere to be seen--everything seemed to have changed since her swim in the pool, and the great hall, with the glass table and the little door, had vanished completely. Very soon the Rabbit noticed Alice, as she went hunting about, and called out to her in an angry tone, `Why, Mary Ann, what ARE you doing out here? Run home this moment, and fetch me a pair of gloves and a fan! Quick, now!' And Alice was so much frightened that she ran off at once in the direction it pointed to, without trying to explain the mistake it had made. `He took me for his housemaid,' she said to herself as she ran. `How surprised he'll be when he finds out who I am! But I'd better take him his fan and gloves--that is, if I can find them.' As she said this, she came upon a neat little house, on the door of which was a bright brass plate with the name `W. RABBIT' engraved upon it. She went in without knocking, and hurried upstairs, in great fear lest she should meet the real Mary Ann, and be turned out of the house before she had found the fan and gloves. `How queer it seems,' Alice said to herself, `to be going messages for a rabbit! I suppose Dinah'll be sending me on messages next!' And she began fancying the sort of thing that would happen: `"Miss Alice! Come here directly, and get ready for your walk!" "Coming in a minute, nurse! But I've got to see that the mouse doesn't get out." Only I don't think,' Alice went on, `that they'd let Dinah stop in the house if it began ordering people about like that!' By this time she had found her way into a tidy little room with a table in the window, and on it (as she had hoped) a fan and two or three pairs of tiny white kid gloves: she took up the fan and a pair of the gloves, and was just going to leave the room, when her eye fell upon a little bottle that stood near the looking- glass. There was no label this time with the words `DRINK ME,' but nevertheless she uncorked it and put it to her lips. `I know SOMETHING interesting is sure to happen,' she said to herself, `whenever I eat or drink anything; so I'll just see what this bottle does. I do hope it'll make me grow large again, for really I'm quite tired of being such a tiny little thing!' It did so indeed, and much sooner than she had expected: before she had drunk half the bottle, she found her head pressing against the ceiling, and had to stoop to save her neck from being broken. She hastily put down the bottle, saying to herself `That's quite enough--I hope I shan't grow any more--As it is, I can't get out at the door--I do wish I hadn't drunk quite so much!' Alas! it was too late to wish that! She went on growing, and growing, and very soon had to kneel down on the floor: in another minute there was not even room for this, and she tried the effect of lying down with one elbow against the door, and the other arm curled round her head. Still she went on growing, and, as a last resource, she put one arm out of the window, and one foot up the chimney, and said to herself `Now I can do no more, whatever happens. What WILL become of me?' Luckily for Alice, the little magic bottle had now had its full effect, and she grew no larger: still it was very uncomfortable, and, as there seemed to be no sort of chance of her ever getting out of the room again, no wonder she felt unhappy. `It was much pleasanter at home,' thought poor Alice, `when one wasn't always growing larger and smaller, and being ordered about by mice and rabbits. I almost wish I hadn't gone down that rabbit-hole--and yet--and yet--it's rather curious, you know, this sort of life! I do wonder what CAN have happened to me! When I used to read fairy-tales, I fancied that kind of thing never happened, and now here I am in the middle of one! There ought to be a book written about me, that there ought! And when I grow up, I'll write one--but I'm grown up now,' she added in a sorrowful tone; `at least there's no room to grow up any more HERE.' `But then,' thought Alice, `shall I NEVER get any older than I am now? That'll be a comfort, one way--never to be an old woman- -but then--always to have lessons to learn! Oh, I shouldn't like THAT!' `Oh, you foolish Alice!' she answered herself. `How can you learn lessons in here? Why, there's hardly room for YOU, and no room at all for any lesson-books!' And so she went on, taking first one side and then the other, and making quite a conversation of it altogether; but after a few minutes she heard a voice outside, and stopped to listen. `Mary Ann! Mary Ann!' said the voice. `Fetch me my gloves this moment!' Then came a little pattering of feet on the stairs. Alice knew it was the Rabbit coming to look for her, and she trembled till she shook the house, quite forgetting that she was now about a thousand times as large as the Rabbit, and had no reason to be afraid of it. Presently the Rabbit came up to the door, and tried to open it; but, as the door opened inwards, and Alice's elbow was pressed hard against it, that attempt proved a failure. Alice heard it say to itself `Then I'll go round and get in at the window.' `THAT you won't' thought Alice, and, after waiting till she fancied she heard the Rabbit just under the window, she suddenly spread out her hand, and made a snatch in the air. She did not get hold of anything, but she heard a little shriek and a fall, and a crash of broken glass, from which she concluded that it was just possible it had fallen into a cucumber-frame, or something of the sort. Next came an angry voice--the Rabbit's--`Pat! Pat! Where are you?' And then a voice she had never heard before, `Sure then I'm here! Digging for apples, yer honour!' `Digging for apples, indeed!' said the Rabbit angrily. `Here! Come and help me out of THIS!' (Sounds of more broken glass.) `Now tell me, Pat, what's that in the window?' `Sure, it's an arm, yer honour!' (He pronounced it `arrum.') `An arm, you goose! Who ever saw one that size? Why, it fills the whole window!' `Sure, it does, yer honour: but it's an arm for all that.' `Well, it's got no business there, at any rate: go and take it away!' There was a long silence after this, and Alice could only hear whispers now and then; such as, `Sure, I don't like it, yer honour, at all, at all!' `Do as I tell you, you coward!' and at last she spread out her hand again, and made another snatch in the air. This time there were TWO little shrieks, and more sounds of broken glass. `What a number of cucumber-frames there must be!' thought Alice. `I wonder what they'll do next! As for pulling me out of the window, I only wish they COULD! I'm sure I don't want to stay in here any longer!' She waited for some time without hearing anything more: at last came a rumbling of little cartwheels, and the sound of a good many voice all talking together: she made out the words: `Where's the other ladder?--Why, I hadn't to bring but one; Bill's got the other--Bill! fetch it here, lad!--Here, put 'em up at this corner--No, tie 'em together first--they don't reach half high enough yet--Oh! they'll do well enough; don't be particular- -Here, Bill! catch hold of this rope--Will the roof bear?--Mind that loose slate--Oh, it's coming down! Heads below!' (a loud crash)--`Now, who did that?--It was Bill, I fancy--Who's to go down the chimney?--Nay, I shan't! YOU do it!--That I won't, then!--Bill's to go down--Here, Bill! the master says you're to go down the chimney!' `Oh! So Bill's got to come down the chimney, has he?' said Alice to herself. `Shy, they seem to put everything upon Bill! I wouldn't be in Bill's place for a good deal: this fireplace is narrow, to be sure; but I THINK I can kick a little!' She drew her foot as far down the chimney as she could, and waited till she heard a little animal (she couldn't guess of what sort it was) scratching and scrambling about in the chimney close above her: then, saying to herself `This is Bill,' she gave one sharp kick, and waited to see what would happen next. The first thing she heard was a general chorus of `There goes Bill!' then the Rabbit's voice along--`Catch him, you by the hedge!' then silence, and then another confusion of voices--`Hold up his head--Brandy now--Don't choke him--How was it, old fellow? What happened to you? Tell us all about it!' Last came a little feeble, squeaking voice, (`That's Bill,' thought Alice,) `Well, I hardly know--No more, thank ye; I'm better now--but I'm a deal too flustered to tell you--all I know is, something comes at me like a Jack-in-the-box, and up I goes like a sky-rocket!' `So you did, old fellow!' said the others. `We must burn the house down!' said the Rabbit's voice; and Alice called out as loud as she could, `If you do. I'll set Dinah at you!' There was a dead silence instantly, and Alice thought to herself, `I wonder what they WILL do next! If they had any sense, they'd take the roof off.' After a minute or two, they began moving about again, and Alice heard the Rabbit say, `A barrowful will do, to begin with.' `A barrowful of WHAT?' thought Alice; but she had not long to doubt, for the next moment a shower of little pebbles came rattling in at the window, and some of them hit her in the face. `I'll put a stop to this,' she said to herself, and shouted out, `You'd better not do that again!' which produced another dead silence. Alice noticed with some surprise that the pebbles were all turning into little cakes as they lay on the floor, and a bright idea came into her head. `If I eat one of these cakes,' she thought, `it's sure to make SOME change in my size; and as it can't possibly make me larger, it must make me smaller, I suppose.' So she swallowed one of the cakes, and was delighted to find that she began shrinking directly. As soon as she was small enough to get through the door, she ran out of the house, and found quite a crowd of little animals and birds waiting outside. The poor little Lizard, Bill, was in the middle, being held up by two guinea-pigs, who were giving it something out of a bottle. They all made a rush at Alice the moment she appeared; but she ran off as hard as she could, and soon found herself safe in a thick wood. `The first thing I've got to do,' said Alice to herself, as she wandered about in the wood, `is to grow to my right size again; and the second thing is to find my way into that lovely garden. I think that will be the best plan.' It sounded an excellent plan, no doubt, and very neatly and simply arranged; the only difficulty was, that she had not the smallest idea how to set about it; and while she was peering about anxiously among the trees, a little sharp bark just over her head made her look up in a great hurry. An enormous puppy was looking down at her with large round eyes, and feebly stretching out one paw, trying to touch her. `Poor little thing!' said Alice, in a coaxing tone, and she tried hard to whistle to it; but she was terribly frightened all the time at the thought that it might be hungry, in which case it would be very likely to eat her up in spite of all her coaxing. Hardly knowing what she did, she picked up a little bit of stick, and held it out to the puppy; whereupon the puppy jumped into the air off all its feet at once, with a yelp of delight, and rushed at the stick, and made believe to worry it; then Alice dodged behind a great thistle, to keep herself from being run over; and the moment she appeared on the other side, the puppy made another rush at the stick, and tumbled head over heels in its hurry to get hold of it; then Alice, thinking it was very like having a game of play with a cart-horse, and expecting every moment to be trampled under its feet, ran round the thistle again; then the puppy began a series of short charges at the stick, running a very little way forwards each time and a long way back, and barking hoarsely all the while, till at last it sat down a good way off, panting, with its tongue hanging out of its mouth, and its great eyes half shut. This seemed to Alice a good opportunity for making her escape; so she set off at once, and ran till she was quite tired and out of breath, and till the puppy's bark sounded quite faint in the distance. `And yet what a dear little puppy it was!' said Alice, as she leant against a buttercup to rest herself, and fanned herself with one of the leaves: `I should have liked teaching it tricks very much, if--if I'd only been the right size to do it! Oh dear! I'd nearly forgotten that I've got to grow up again! Let me see--how IS it to be managed? I suppose I ought to eat or drink something or other; but the great question is, what?' The great question certainly was, what? Alice looked all round her at the flowers and the blades of grass, but she did not see anything that looked like the right thing to eat or drink under the circumstances. There was a large mushroom growing near her, about the same height as herself; and when she had looked under it, and on both sides of it, and behind it, it occurred to her that she might as well look and see what was on the top of it. She stretched herself up on tiptoe, and peeped over the edge of the mushroom, and her eyes immediately met those of a large caterpillar, that was sitting on the top with its arms folded, quietly smoking a long hookah, and taking not the smallest notice of her or of anything else. CHAPTER V Advice from a Caterpillar The Caterpillar and Alice looked at each other for some time in silence: at last the Caterpillar took the hookah out of its mouth, and addressed her in a languid, sleepy voice. `Who are YOU?' said the Caterpillar. This was not an encouraging opening for a conversation. Alice replied, rather shyly, `I--I hardly know, sir, just at present-- at least I know who I WAS when I got up this morning, but I think I must have been changed several times since then.' `What do you mean by that?' said the Caterpillar sternly. `Explain yourself!' `I can't explain MYSELF, I'm afraid, sir' said Alice, `because I'm not myself, you see.' `I don't see,' said the Caterpillar. `I'm afraid I can't put it more clearly,' Alice replied very politely, `for I can't understand it myself to begin with; and being so many different sizes in a day is very confusing.' `It isn't,' said the Caterpillar. `Well, perhaps you haven't found it so yet,' said Alice; `but when you have to turn into a chrysalis--you will some day, you know--and then after that into a butterfly, I should think you'll feel it a little queer, won't you?' `Not a bit,' said the Caterpillar. `Well, perhaps your feelings may be different,' said Alice; `all I know is, it would feel very queer to ME.' `You!' said the Caterpillar contemptuously. `Who are YOU?' Which brought them back again to the beginning of the conversation. Alice felt a little irritated at the Caterpillar's making such VERY short remarks, and she drew herself up and said, very gravely, `I think, you ought to tell me who YOU are, first.' `Why?' said the Caterpillar. Here was another puzzling question; and as Alice could not think of any good reason, and as the Caterpillar seemed to be in a VERY unpleasant state of mind, she turned away. `Come back!' the Caterpillar called after her. `I've something important to say!' This sounded promising, certainly: Alice turned and came back again. `Keep your temper,' said the Caterpillar. `Is that all?' said Alice, swallowing down her anger as well as she could. `No,' said the Caterpillar. Alice thought she might as well wait, as she had nothing else to do, and perhaps after all it might tell her something worth hearing. For some minutes it puffed away without speaking, but at last it unfolded its arms, took the hookah out of its mouth again, and said, `So you think you're changed, do you?' `I'm afraid I am, sir,' said Alice; `I can't remember things as I used--and I don't keep the same size for ten minutes together!' `Can't remember WHAT things?' said the Caterpillar. `Well, I've tried to say "HOW DOTH THE LITTLE BUSY BEE," but it all came different!' Alice replied in a very melancholy voice. `Repeat, "YOU ARE OLD, FATHER WILLIAM,"' said the Caterpillar. Alice folded her hands, and began:-- `You are old, Father William,' the young man said, `And your hair has become very white; And yet you incessantly stand on your head-- Do you think, at your age, it is right?' `In my youth,' Father William replied to his son, `I feared it might injure the brain; But, now that I'm perfectly sure I have none, Why, I do it again and again.' `You are old,' said the youth, `as I mentioned before, And have grown most uncommonly fat; Yet you turned a back-somersault in at the door-- Pray, what is the reason of that?' `In my youth,' said the sage, as he shook his grey locks, `I kept all my limbs very supple By the use of this ointment--one shilling the box-- Allow me to sell you a couple?' `You are old,' said the youth, `and your jaws are too weak For anything tougher than suet; Yet you finished the goose, with the bones and the beak-- Pray how did you manage to do it?' `In my youth,' said his father, `I took to the law, And argued each case with my wife; And the muscular strength, which it gave to my jaw, Has lasted the rest of my life.' `You are old,' said the youth, `one would hardly suppose That your eye was as steady as ever; Yet you balanced an eel on the end of your nose-- What made you so awfully clever?' `I have answered three questions, and that is enough,' Said his father; `don't give yourself airs! Do you think I can listen all day to such stuff? Be off, or I'll kick you down stairs!' `That is not said right,' said the Caterpillar. `Not QUITE right, I'm afraid,' said Alice, timidly; `some of the words have got altered.' `It is wrong from beginning to end,' said the Caterpillar decidedly, and there was silence for some minutes. The Caterpillar was the first to speak. `What size do you want to be?' it asked. `Oh, I'm not particular as to size,' Alice hastily replied; `only one doesn't like changing so often, you know.' `I DON'T know,' said the Caterpillar. Alice said nothing: she had never been so much contradicted in her life before, and she felt that she was losing her temper. `Are you content now?' said the Caterpillar. `Well, I should like to be a LITTLE larger, sir, if you wouldn't mind,' said Alice: `three inches is such a wretched height to be.' `It is a very good height indeed!' said the Caterpillar angrily, rearing itself upright as it spoke (it was exactly three inches high). `But I'm not used to it!' pleaded poor Alice in a piteous tone. And she thought of herself, `I wish the creatures wouldn't be so easily offended!' `You'll get used to it in time,' said the Caterpillar; and it put the hookah into its mouth and began smoking again. This time Alice waited patiently until it chose to speak again. In a minute or two the Caterpillar took the hookah out of its mouth and yawned once or twice, and shook itself. Then it got down off the mushroom, and crawled away in the grass, merely remarking as it went, `One side will make you grow taller, and the other side will make you grow shorter.' `One side of WHAT? The other side of WHAT?' thought Alice to herself. `Of the mushroom,' said the Caterpillar, just as if she had asked it aloud; and in another moment it was out of sight. Alice remained looking thoughtfully at the mushroom for a minute, trying to make out which were the two sides of it; and as it was perfectly round, she found this a very difficult question. However, at last she stretched her arms round it as far as they would go, and broke off a bit of the edge with each hand. `And now which is which?' she said to herself, and nibbled a little of the right-hand bit to try the effect: the next moment she felt a violent blow underneath her chin: it had struck her foot! She was a good deal frightened by this very sudden change, but she felt that there was no time to be lost, as she was shrinking rapidly; so she set to work at once to eat some of the other bit. Her chin was pressed so closely against her foot, that there was hardly room to open her mouth; but she did it at last, and managed to swallow a morsel of the lefthand bit. * * * * * * * * * * * * * * * * * * * * `Come, my head's free at last!' said Alice in a tone of delight, which changed into alarm in another moment, when she found that her shoulders were nowhere to be found: all she could see, when she looked down, was an immense length of neck, which seemed to rise like a stalk out of a sea of green leaves that lay far below her. `What CAN all that green stuff be?' said Alice. `And where HAVE my shoulders got to? And oh, my poor hands, how is it I can't see you?' She was moving them about as she spoke, but no result seemed to follow, except a little shaking among the distant green leaves. As there seemed to be no chance of getting her hands up to her head, she tried to get her head down to them, and was delighted to find that her neck would bend about easily in any direction, like a serpent. She had just succeeded in curving it down into a graceful zigzag, and was going to dive in among the leaves, which she found to be nothing but the tops of the trees under which she had been wandering, when a sharp hiss made her draw back in a hurry: a large pigeon had flown into her face, and was beating her violently with its wings. `Serpent!' screamed the Pigeon. `I'm NOT a serpent!' said Alice indignantly. `Let me alone!' `Serpent, I say again!' repeated the Pigeon, but in a more subdued tone, and added with a kind of sob, `I've tried every way, and nothing seems to suit them!' `I haven't the least idea what you're talking about,' said Alice. `I've tried the roots of trees, and I've tried banks, and I've tried hedges,' the Pigeon went on, without attending to her; `but those serpents! There's no pleasing them!' Alice was more and more puzzled, but she thought there was no use in saying anything more till the Pigeon had finished. `As if it wasn't trouble enough hatching the eggs,' said the Pigeon; `but I must be on the look-out for serpents night and day! Why, I haven't had a wink of sleep these three weeks!' `I'm very sorry you've been annoyed,' said Alice, who was beginning to see its meaning. `And just as I'd taken the highest tree in the wood,' continued the Pigeon, raising its voice to a shriek, `and just as I was thinking I should be free of them at last, they must needs come wriggling down from the sky! Ugh, Serpent!' `But I'm NOT a serpent, I tell you!' said Alice. `I'm a--I'm a--' `Well! WHAT are you?' said the Pigeon. `I can see you're trying to invent something!' `I--I'm a little girl,' said Alice, rather doubtfully, as she remembered the number of changes she had gone through that day. `A likely story indeed!' said the Pigeon in a tone of the deepest contempt. `I've seen a good many little girls in my time, but never ONE with such a neck as that! No, no! You're a serpent; and there's no use denying it. I suppose you'll be telling me next that you never tasted an egg!' `I HAVE tasted eggs, certainly,' said Alice, who was a very truthful child; `but little girls eat eggs quite as much as serpents do, you know.' `I don't believe it,' said the Pigeon; `but if they do, why then they're a kind of serpent, that's all I can say.' This was such a new idea to Alice, that she was quite silent for a minute or two, which gave the Pigeon the opportunity of adding, `You're looking for eggs, I know THAT well enough; and what does it matter to me whether you're a little girl or a serpent?' `It matters a good deal to ME,' said Alice hastily; `but I'm not looking for eggs, as it happens; and if I was, I shouldn't want YOURS: I don't like them raw.' `Well, be off, then!' said the Pigeon in a sulky tone, as it settled down again into its nest. Alice crouched down among the trees as well as she could, for her neck kept getting entangled among the branches, and every now and then she had to stop and untwist it. After a while she remembered that she still held the pieces of mushroom in her hands, and she set to work very carefully, nibbling first at one and then at the other, and growing sometimes taller and sometimes shorter, until she had succeeded in bringing herself down to her usual height. It was so long since she had been anything near the right size, that it felt quite strange at first; but she got used to it in a few minutes, and began talking to herself, as usual. `Come, there's half my plan done now! How puzzling all these changes are! I'm never sure what I'm going to be, from one minute to another! However, I've got back to my right size: the next thing is, to get into that beautiful garden--how IS that to be done, I wonder?' As she said this, she came suddenly upon an open place, with a little house in it about four feet high. `Whoever lives there,' thought Alice, `it'll never do to come upon them THIS size: why, I should frighten them out of their wits!' So she began nibbling at the righthand bit again, and did not venture to go near the house till she had brought herself down to nine inches high. CHAPTER VI Pig and Pepper For a minute or two she stood looking at the house, and wondering what to do next, when suddenly a footman in livery came running out of the wood--(she considered him to be a footman because he was in livery: otherwise, judging by his face only, she would have called him a fish)--and rapped loudly at the door with his knuckles. It was opened by another footman in livery, with a round face, and large eyes like a frog; and both footmen, Alice noticed, had powdered hair that curled all over their heads. She felt very curious to know what it was all about, and crept a little way out of the wood to listen. The Fish-Footman began by producing from under his arm a great letter, nearly as large as himself, and this he handed over to the other, saying, in a solemn tone, `For the Duchess. An invitation from the Queen to play croquet.' The Frog-Footman repeated, in the same solemn tone, only changing the order of the words a little, `From the Queen. An invitation for the Duchess to play croquet.' Then they both bowed low, and their curls got entangled together. Alice laughed so much at this, that she had to run back into the wood for fear of their hearing her; and when she next peeped out the Fish-Footman was gone, and the other was sitting on the ground near the door, staring stupidly up into the sky. Alice went timidly up to the door, and knocked. `There's no sort of use in knocking,' said the Footman, `and that for two reasons. First, because I'm on the same side of the door as you are; secondly, because they're making such a noise inside, no one could possibly hear you.' And certainly there was a most extraordinary noise going on within--a constant howling and sneezing, and every now and then a great crash, as if a dish or kettle had been broken to pieces. `Please, then,' said Alice, `how am I to get in?' `There might be some sense in your knocking,' the Footman went on without attending to her, `if we had the door between us. For instance, if you were INSIDE, you might knock, and I could let you out, you know.' He was looking up into the sky all the time he was speaking, and this Alice thought decidedly uncivil. `But perhaps he can't help it,' she said to herself; `his eyes are so VERY nearly at the top of his head. But at any rate he might answer questions.--How am I to get in?' she repeated, aloud. `I shall sit here,' the Footman remarked, `till tomorrow--' At this moment the door of the house opened, and a large plate came skimming out, straight at the Footman's head: it just grazed his nose, and broke to pieces against one of the trees behind him. `--or next day, maybe,' the Footman continued in the same tone, exactly as if nothing had happened. `How am I to get in?' asked Alice again, in a louder tone. `ARE you to get in at all?' said the Footman. `That's the first question, you know.' It was, no doubt: only Alice did not like to be told so. `It's really dreadful,' she muttered to herself, `the way all the creatures argue. It's enough to drive one crazy!' The Footman seemed to think this a good opportunity for repeating his remark, with variations. `I shall sit here,' he said, `on and off, for days and days.' `But what am I to do?' said Alice. `Anything you like,' said the Footman, and began whistling. `Oh, there's no use in talking to him,' said Alice desperately: `he's perfectly idiotic!' And she opened the door and went in. The door led right into a large kitchen, which was full of smoke from one end to the other: the Duchess was sitting on a three-legged stool in the middle, nursing a baby; the cook was leaning over the fire, stirring a large cauldron which seemed to be full of soup. `There's certainly too much pepper in that soup!' Alice said to herself, as well as she could for sneezing. There was certainly too much of it in the air. Even the Duchess sneezed occasionally; and as for the baby, it was sneezing and howling alternately without a moment's pause. The only things in the kitchen that did not sneeze, were the cook, and a large cat which was sitting on the hearth and grinning from ear to ear. `Please would you tell me,' said Alice, a little timidly, for she was not quite sure whether it was good manners for her to speak first, `why your cat grins like that?' `It's a Cheshire cat,' said the Duchess, `and that's why. Pig!' She said the last word with such sudden violence that Alice quite jumped; but she saw in another moment that it was addressed to the baby, and not to her, so she took courage, and went on again:-- `I didn't know that Cheshire cats always grinned; in fact, I didn't know that cats COULD grin.' `They all can,' said the Duchess; `and most of 'em do.' `I don't know of any that do,' Alice said very politely, feeling quite pleased to have got into a conversation. `You don't know much,' said the Duchess; `and that's a fact.' Alice did not at all like the tone of this remark, and thought it would be as well to introduce some other subject of conversation. While she was trying to fix on one, the cook took the cauldron of soup off the fire, and at once set to work throwing everything within her reach at the Duchess and the baby --the fire-irons came first; then followed a shower of saucepans, plates, and dishes. The Duchess took no notice of them even when they hit her; and the baby was howling so much already, that it was quite impossible to say whether the blows hurt it or not. `Oh, PLEASE mind what you're doing!' cried Alice, jumping up and down in an agony of terror. `Oh, there goes his PRECIOUS nose'; as an unusually large saucepan flew close by it, and very nearly carried it off. `If everybody minded their own business,' the Duchess said in a hoarse growl, `the world would go round a deal faster than it does.' `Which would NOT be an advantage,' said Alice, who felt very glad to get an opportunity of showing off a little of her knowledge. `Just think of what work it would make with the day and night! You see the earth takes twenty-four hours to turn round on its axis--' `Talking of axes,' said the Duchess, `chop off her head!' Alice glanced rather anxiously at the cook, to see if she meant to take the hint; but the cook was busily stirring the soup, and seemed not to be listening, so she went on again: `Twenty-four hours, I THINK; or is it twelve? I--' `Oh, don't bother ME,' said the Duchess; `I never could abide figures!' And with that she began nursing her child again, singing a sort of lullaby to it as she did so, and giving it a violent shake at the end of every line: `Speak roughly to your little boy, And beat him when he sneezes: He only does it to annoy, Because he knows it teases.' CHORUS. (In which the cook and the baby joined):-- `Wow! wow! wow!' While the Duchess sang the second verse of the song, she kept tossing the baby violently up and down, and the poor little thing howled so, that Alice could hardly hear the words:-- `I speak severely to my boy, I beat him when he sneezes; For he can thoroughly enjoy The pepper when he pleases!' CHORUS. `Wow! wow! wow!' `Here! you may nurse it a bit, if you like!' the Duchess said to Alice, flinging the baby at her as she spoke. `I must go and get ready to play croquet with the Queen,' and she hurried out of the room. The cook threw a frying-pan after her as she went out, but it just missed her. Alice caught the baby with some difficulty, as it was a queer- shaped little creature, and held out its arms and legs in all directions, `just like a star-fish,' thought Alice. The poor little thing was snorting like a steam-engine when she caught it, and kept doubling itself up and straightening itself out again, so that altogether, for the first minute or two, it was as much as she could do to hold it. As soon as she had made out the proper way of nursing it, (which was to twist it up into a sort of knot, and then keep tight hold of its right ear and left foot, so as to prevent its undoing itself,) she carried it out into the open air. `IF I don't take this child away with me,' thought Alice, `they're sure to kill it in a day or two: wouldn't it be murder to leave it behind?' She said the last words out loud, and the little thing grunted in reply (it had left off sneezing by this time). `Don't grunt,' said Alice; `that's not at all a proper way of expressing yourself.' The baby grunted again, and Alice looked very anxiously into its face to see what was the matter with it. There could be no doubt that it had a VERY turn-up nose, much more like a snout than a real nose; also its eyes were getting extremely small for a baby: altogether Alice did not like the look of the thing at all. `But perhaps it was only sobbing,' she thought, and looked into its eyes again, to see if there were any tears. No, there were no tears. `If you're going to turn into a pig, my dear,' said Alice, seriously, `I'll have nothing more to do with you. Mind now!' The poor little thing sobbed again (or grunted, it was impossible to say which), and they went on for some while in silence. Alice was just beginning to think to herself, `Now, what am I to do with this creature when I get it home?' when it grunted again, so violently, that she looked down into its face in some alarm. This time there could be NO mistake about it: it was neither more nor less than a pig, and she felt that it would be quite absurd for her to carry it further. So she set the little creature down, and felt quite relieved to see it trot away quietly into the wood. `If it had grown up,' she said to herself, `it would have made a dreadfully ugly child: but it makes rather a handsome pig, I think.' And she began thinking over other children she knew, who might do very well as pigs, and was just saying to herself, `if one only knew the right way to change them--' when she was a little startled by seeing the Cheshire Cat sitting on a bough of a tree a few yards off. The Cat only grinned when it saw Alice. It looked good- natured, she thought: still it had VERY long claws and a great many teeth, so she felt that it ought to be treated with respect. `Cheshire Puss,' she began, rather timidly, as she did not at all know whether it would like the name: however, it only grinned a little wider. `Come, it's pleased so far,' thought Alice, and she went on. `Would you tell me, please, which way I ought to go from here?' `That depends a good deal on where you want to get to,' said the Cat. `I don't much care where--' said Alice. `Then it doesn't matter which way you go,' said the Cat. `--so long as I get SOMEWHERE,' Alice added as an explanation. `Oh, you're sure to do that,' said the Cat, `if you only walk long enough.' Alice felt that this could not be denied, so she tried another question. `What sort of people live about here?' `In THAT direction,' the Cat said, waving its right paw round, `lives a Hatter: and in THAT direction,' waving the other paw, `lives a March Hare. Visit either you like: they're both mad.' `But I don't want to go among mad people,' Alice remarked. `Oh, you can't help that,' said the Cat: `we're all mad here. I'm mad. You're mad.' `How do you know I'm mad?' said Alice. `You must be,' said the Cat, `or you wouldn't have come here.' Alice didn't think that proved it at all; however, she went on `And how do you know that you're mad?' `To begin with,' said the Cat, `a dog's not mad. You grant that?' `I suppose so,' said Alice. `Well, then,' the Cat went on, `you see, a dog growls when it's angry, and wags its tail when it's pleased. Now I growl when I'm pleased, and wag my tail when I'm angry. Therefore I'm mad.' `I call it purring, not growling,' said Alice. `Call it what you like,' said the Cat. `Do you play croquet with the Queen to-day?' `I should like it very much,' said Alice, `but I haven't been invited yet.' `You'll see me there,' said the Cat, and vanished. Alice was not much surprised at this, she was getting so used to queer things happening. While she was looking at the place where it had been, it suddenly appeared again. `By-the-bye, what became of the baby?' said the Cat. `I'd nearly forgotten to ask.' `It turned into a pig,' Alice quietly said, just as if it had come back in a natural way. `I thought it would,' said the Cat, and vanished again. Alice waited a little, half expecting to see it again, but it did not appear, and after a minute or two she walked on in the direction in which the March Hare was said to live. `I've seen hatters before,' she said to herself; `the March Hare will be much the most interesting, and perhaps as this is May it won't be raving mad--at least not so mad as it was in March.' As she said this, she looked up, and there was the Cat again, sitting on a branch of a tree. `Did you say pig, or fig?' said the Cat. `I said pig,' replied Alice; `and I wish you wouldn't keep appearing and vanishing so suddenly: you make one quite giddy.' `All right,' said the Cat; and this time it vanished quite slowly, beginning with the end of the tail, and ending with the grin, which remained some time after the rest of it had gone. `Well! I've often seen a cat without a grin,' thought Alice; `but a grin without a cat! It's the most curious thing I ever say in my life!' She had not gone much farther before she came in sight of the house of the March Hare: she thought it must be the right house, because the chimneys were shaped like ears and the roof was thatched with fur. It was so large a house, that she did not like to go nearer till she had nibbled some more of the lefthand bit of mushroom, and raised herself to about two feet high: even then she walked up towards it rather timidly, saying to herself `Suppose it should be raving mad after all! I almost wish I'd gone to see the Hatter instead!' CHAPTER VII A Mad Tea-Party There was a table set out under a tree in front of the house, and the March Hare and the Hatter were having tea at it: a Dormouse was sitting between them, fast asleep, and the other two were using it as a cushion, resting their elbows on it, and the talking over its head. `Very uncomfortable for the Dormouse,' thought Alice; `only, as it's asleep, I suppose it doesn't mind.' The table was a large one, but the three were all crowded together at one corner of it: `No room! No room!' they cried out when they saw Alice coming. `There's PLENTY of room!' said Alice indignantly, and she sat down in a large arm-chair at one end of the table. `Have some wine,' the March Hare said in an encouraging tone. Alice looked all round the table, but there was nothing on it but tea. `I don't see any wine,' she remarked. `There isn't any,' said the March Hare. `Then it wasn't very civil of you to offer it,' said Alice angrily. `It wasn't very civil of you to sit down without being invited,' said the March Hare. `I didn't know it was YOUR table,' said Alice; `it's laid for a great many more than three.' `Your hair wants cutting,' said the Hatter. He had been looking at Alice for some time with great curiosity, and this was his first speech. `You should learn not to make personal remarks,' Alice said with some severity; `it's very rude.' The Hatter opened his eyes very wide on hearing this; but all he SAID was, `Why is a raven like a writing-desk?' `Come, we shall have some fun now!' thought Alice. `I'm glad they've begun asking riddles.--I believe I can guess that,' she added aloud. `Do you mean that you think you can find out the answer to it?' said the March Hare. `Exactly so,' said Alice. `Then you should say what you mean,' the March Hare went on. `I do,' Alice hastily replied; `at least--at least I mean what I say--that's the same thing, you know.' `Not the same thing a bit!' said the Hatter. `You might just as well say that "I see what I eat" is the same thing as "I eat what I see"!' `You might just as well say,' added the March Hare, `that "I like what I get" is the same thing as "I get what I like"!' `You might just as well say,' added the Dormouse, who seemed to be talking in his sleep, `that "I breathe when I sleep" is the same thing as "I sleep when I breathe"!' `It IS the same thing with you,' said the Hatter, and here the conversation dropped, and the party sat silent for a minute, while Alice thought over all she could remember about ravens and writing-desks, which wasn't much. The Hatter was the first to break the silence. `What day of the month is it?' he said, turning to Alice: he had taken his watch out of his pocket, and was looking at it uneasily, shaking it every now and then, and holding it to his ear. Alice considered a little, and then said `The fourth.' `Two days wrong!' sighed the Hatter. `I told you butter wouldn't suit the works!' he added looking angrily at the March Hare. `It was the BEST butter,' the March Hare meekly replied. `Yes, but some crumbs must have got in as well,' the Hatter grumbled: `you shouldn't have put it in with the bread-knife.' The March Hare took the watch and looked at it gloomily: then he dipped it into his cup of tea, and looked at it again: but he could think of nothing better to say than his first remark, `It was the BEST butter, you know.' Alice had been looking over his shoulder with some curiosity. `What a funny watch!' she remarked. `It tells the day of the month, and doesn't tell what o'clock it is!' `Why should it?' muttered the Hatter. `Does YOUR watch tell you what year it is?' `Of course not,' Alice replied very readily: `but that's because it stays the same year for such a long time together.' `Which is just the case with MINE,' said the Hatter. Alice felt dreadfully puzzled. The Hatter's remark seemed to have no sort of meaning in it, and yet it was certainly English. `I don't quite understand you,' she said, as politely as she could. `The Dormouse is asleep again,' said the Hatter, and he poured a little hot tea upon its nose. The Dormouse shook its head impatiently, and said, without opening its eyes, `Of course, of course; just what I was going to remark myself.' `Have you guessed the riddle yet?' the Hatter said, turning to Alice again. `No, I give it up,' Alice replied: `what's the answer?' `I haven't the slightest idea,' said the Hatter. `Nor I,' said the March Hare. Alice sighed wearily. `I think you might do something better with the time,' she said, `than waste it in asking riddles that have no answers.' `If you knew Time as well as I do,' said the Hatter, `you wouldn't talk about wasting IT. It's HIM.' `I don't know what you mean,' said Alice. `Of course you don't!' the Hatter said, tossing his head contemptuously. `I dare say you never even spoke to Time!' `Perhaps not,' Alice cautiously replied: `but I know I have to beat time when I learn music.' `Ah! that accounts for it,' said the Hatter. `He won't stand beating. Now, if you only kept on good terms with him, he'd do almost anything you liked with the clock. For instance, suppose it were nine o'clock in the morning, just time to begin lessons: you'd only have to whisper a hint to Time, and round goes the clock in a twinkling! Half-past one, time for dinner!' (`I only wish it was,' the March Hare said to itself in a whisper.) `That would be grand, certainly,' said Alice thoughtfully: `but then--I shouldn't be hungry for it, you know.' `Not at first, perhaps,' said the Hatter: `but you could keep it to half-past one as long as you liked.' `Is that the way YOU manage?' Alice asked. The Hatter shook his head mournfully. `Not I!' he replied. `We quarrelled last March--just before HE went mad, you know--' (pointing with his tea spoon at the March Hare,) `--it was at the great concert given by the Queen of Hearts, and I had to sing "Twinkle, twinkle, little bat! How I wonder what you're at!" You know the song, perhaps?' `I've heard something like it,' said Alice. `It goes on, you know,' the Hatter continued, `in this way:-- "Up above the world you fly, Like a tea-tray in the sky. Twinkle, twinkle--"' Here the Dormouse shook itself, and began singing in its sleep `Twinkle, twinkle, twinkle, twinkle--' and went on so long that they had to pinch it to make it stop. `Well, I'd hardly finished the first verse,' said the Hatter, `when the Queen jumped up and bawled out, "He's murdering the time! Off with his head!"' `How dreadfully savage!' exclaimed Alice. `And ever since that,' the Hatter went on in a mournful tone, `he won't do a thing I ask! It's always six o'clock now.' A bright idea came into Alice's head. `Is that the reason so many tea-things are put out here?' she asked. `Yes, that's it,' said the Hatter with a sigh: `it's always tea-time, and we've no time to wash the things between whiles.' `Then you keep moving round, I suppose?' said Alice. `Exactly so,' said the Hatter: `as the things get used up.' `But what happens when you come to the beginning again?' Alice ventured to ask. `Suppose we change the subject,' the March Hare interrupted, yawning. `I'm getting tired of this. I vote the young lady tells us a story.' `I'm afraid I don't know one,' said Alice, rather alarmed at the proposal. `Then the Dormouse shall!' they both cried. `Wake up, Dormouse!' And they pinched it on both sides at once. The Dormouse slowly opened his eyes. `I wasn't asleep,' he said in a hoarse, feeble voice: `I heard every word you fellows were saying.' `Tell us a story!' said the March Hare. `Yes, please do!' pleaded Alice. `And be quick about it,' added the Hatter, `or you'll be asleep again before it's done.' `Once upon a time there were three little sisters,' the Dormouse began in a great hurry; `and their names were Elsie, Lacie, and Tillie; and they lived at the bottom of a well--' `What did they live on?' said Alice, who always took a great interest in questions of eating and drinking. `They lived on treacle,' said the Dormouse, after thinking a minute or two. `They couldn't have done that, you know,' Alice gently remarked; `they'd have been ill.' `So they were,' said the Dormouse; `VERY ill.' Alice tried to fancy to herself what such an extraordinary ways of living would be like, but it puzzled her too much, so she went on: `But why did they live at the bottom of a well?' `Take some more tea,' the March Hare said to Alice, very earnestly. `I've had nothing yet,' Alice replied in an offended tone, `so I can't take more.' `You mean you can't take LESS,' said the Hatter: `it's very easy to take MORE than nothing.' `Nobody asked YOUR opinion,' said Alice. `Who's making personal remarks now?' the Hatter asked triumphantly. Alice did not quite know what to say to this: so she helped herself to some tea and bread-and-butter, and then turned to the Dormouse, and repeated her question. `Why did they live at the bottom of a well?' The Dormouse again took a minute or two to think about it, and then said, `It was a treacle-well.' `There's no such thing!' Alice was beginning very angrily, but the Hatter and the March Hare went `Sh! sh!' and the Dormouse sulkily remarked, `If you can't be civil, you'd better finish the story for yourself.' `No, please go on!' Alice said very humbly; `I won't interrupt again. I dare say there may be ONE.' `One, indeed!' said the Dormouse indignantly. However, he consented to go on. `And so these three little sisters--they were learning to draw, you know--' `What did they draw?' said Alice, quite forgetting her promise. `Treacle,' said the Dormouse, without considering at all this time. `I want a clean cup,' interrupted the Hatter: `let's all move one place on.' He moved on as he spoke, and the Dormouse followed him: the March Hare moved into the Dormouse's place, and Alice rather unwillingly took the place of the March Hare. The Hatter was the only one who got any advantage from the change: and Alice was a good deal worse off than before, as the March Hare had just upset the milk-jug into his plate. Alice did not wish to offend the Dormouse again, so she began very cautiously: `But I don't understand. Where did they draw the treacle from?' `You can draw water out of a water-well,' said the Hatter; `so I should think you could draw treacle out of a treacle-well--eh, stupid?' `But they were IN the well,' Alice said to the Dormouse, not choosing to notice this last remark. `Of course they were', said the Dormouse; `--well in.' This answer so confused poor Alice, that she let the Dormouse go on for some time without interrupting it. `They were learning to draw,' the Dormouse went on, yawning and rubbing its eyes, for it was getting very sleepy; `and they drew all manner of things--everything that begins with an M--' `Why with an M?' said Alice. `Why not?' said the March Hare. Alice was silent. The Dormouse had closed its eyes by this time, and was going off into a doze; but, on being pinched by the Hatter, it woke up again with a little shriek, and went on: `--that begins with an M, such as mouse-traps, and the moon, and memory, and muchness-- you know you say things are "much of a muchness"--did you ever see such a thing as a drawing of a muchness?' `Really, now you ask me,' said Alice, very much confused, `I don't think--' `Then you shouldn't talk,' said the Hatter. This piece of rudeness was more than Alice could bear: she got up in great disgust, and walked off; the Dormouse fell asleep instantly, and neither of the others took the least notice of her going, though she looked back once or twice, half hoping that they would call after her: the last time she saw them, they were trying to put the Dormouse into the teapot. `At any rate I'll never go THERE again!' said Alice as she picked her way through the wood. `It's the stupidest tea-party I ever was at in all my life!' Just as she said this, she noticed that one of the trees had a door leading right into it. `That's very curious!' she thought. `But everything's curious today. I think I may as well go in at once.' And in she went. Once more she found herself in the long hall, and close to the little glass table. `Now, I'll manage better this time,' she said to herself, and began by taking the little golden key, and unlocking the door that led into the garden. Then she went to work nibbling at the mushroom (she had kept a piece of it in her pocked) till she was about a foot high: then she walked down the little passage: and THEN--she found herself at last in the beautiful garden, among the bright flower-beds and the cool fountains. CHAPTER VIII The Queen's Croquet-Ground A large rose-tree stood near the entrance of the garden: the roses growing on it were white, but there were three gardeners at it, busily painting them red. Alice thought this a very curious thing, and she went nearer to watch them, and just as she came up to them she heard one of them say, `Look out now, Five! Don't go splashing paint over me like that!' `I couldn't help it,' said Five, in a sulky tone; `Seven jogged my elbow.' On which Seven looked up and said, `That's right, Five! Always lay the blame on others!' `YOU'D better not talk!' said Five. `I heard the Queen say only yesterday you deserved to be beheaded!' `What for?' said the one who had spoken first. `That's none of YOUR business, Two!' said Seven. `Yes, it IS his business!' said Five, `and I'll tell him--it was for bringing the cook tulip-roots instead of onions.' Seven flung down his brush, and had just begun `Well, of all the unjust things--' when his eye chanced to fall upon Alice, as she stood watching them, and he checked himself suddenly: the others looked round also, and all of them bowed low. `Would you tell me,' said Alice, a little timidly, `why you are painting those roses?' Five and Seven said nothing, but looked at Two. Two began in a low voice, `Why the fact is, you see, Miss, this here ought to have been a RED rose-tree, and we put a white one in by mistake; and if the Queen was to find it out, we should all have our heads cut off, you know. So you see, Miss, we're doing our best, afore she comes, to--' At this moment Five, who had been anxiously looking across the garden, called out `The Queen! The Queen!' and the three gardeners instantly threw themselves flat upon their faces. There was a sound of many footsteps, and Alice looked round, eager to see the Queen. First came ten soldiers carrying clubs; these were all shaped like the three gardeners, oblong and flat, with their hands and feet at the corners: next the ten courtiers; these were ornamented all over with diamonds, and walked two and two, as the soldiers did. After these came the royal children; there were ten of them, and the little dears came jumping merrily along hand in hand, in couples: they were all ornamented with hearts. Next came the guests, mostly Kings and Queens, and among them Alice recognised the White Rabbit: it was talking in a hurried nervous manner, smiling at everything that was said, and went by without noticing her. Then followed the Knave of Hearts, carrying the King's crown on a crimson velvet cushion; and, last of all this grand procession, came THE KING AND QUEEN OF HEARTS. Alice was rather doubtful whether she ought not to lie down on her face like the three gardeners, but she could not remember every having heard of such a rule at processions; `and besides, what would be the use of a procession,' thought she, `if people had all to lie down upon their faces, so that they couldn't see it?' So she stood still where she was, and waited. When the procession came opposite to Alice, they all stopped and looked at her, and the Queen said severely `Who is this?' She said it to the Knave of Hearts, who only bowed and smiled in reply. `Idiot!' said the Queen, tossing her head impatiently; and, turning to Alice, she went on, `What's your name, child?' `My name is Alice, so please your Majesty,' said Alice very politely; but she added, to herself, `Why, they're only a pack of cards, after all. I needn't be afraid of them!' `And who are THESE?' said the Queen, pointing to the three gardeners who were lying round the rosetree; for, you see, as they were lying on their faces, and the pattern on their backs was the same as the rest of the pack, she could not tell whether they were gardeners, or soldiers, or courtiers, or three of her own children. `How should I know?' said Alice, surprised at her own courage. `It's no business of MINE.' The Queen turned crimson with fury, and, after glaring at her for a moment like a wild beast, screamed `Off with her head! Off--' `Nonsense!' said Alice, very loudly and decidedly, and the Queen was silent. The King laid his hand upon her arm, and timidly said `Consider, my dear: she is only a child!' The Queen turned angrily away from him, and said to the Knave `Turn them over!' The Knave did so, very carefully, with one foot. `Get up!' said the Queen, in a shrill, loud voice, and the three gardeners instantly jumped up, and began bowing to the King, the Queen, the royal children, and everybody else. `Leave off that!' screamed the Queen. `You make me giddy.' And then, turning to the rose-tree, she went on, `What HAVE you been doing here?' `May it please your Majesty,' said Two, in a very humble tone, going down on one knee as he spoke, `we were trying--' `I see!' said the Queen, who had meanwhile been examining the roses. `Off with their heads!' and the procession moved on, three of the soldiers remaining behind to execute the unfortunate gardeners, who ran to Alice for protection. `You shan't be beheaded!' said Alice, and she put them into a large flower-pot that stood near. The three soldiers wandered about for a minute or two, looking for them, and then quietly marched off after the others. `Are their heads off?' shouted the Queen. `Their heads are gone, if it please your Majesty!' the soldiers shouted in reply. `That's right!' shouted the Queen. `Can you play croquet?' The soldiers were silent, and looked at Alice, as the question was evidently meant for her. `Yes!' shouted Alice. `Come on, then!' roared the Queen, and Alice joined the procession, wondering very much what would happen next. `It's--it's a very fine day!' said a timid voice at her side. She was walking by the White Rabbit, who was peeping anxiously into her face. `Very,' said Alice: `--where's the Duchess?' `Hush! Hush!' said the Rabbit in a low, hurried tone. He looked anxiously over his shoulder as he spoke, and then raised himself upon tiptoe, put his mouth close to her ear, and whispered `She's under sentence of execution.' `What for?' said Alice. `Did you say "What a pity!"?' the Rabbit asked. `No, I didn't,' said Alice: `I don't think it's at all a pity. I said "What for?"' `She boxed the Queen's ears--' the Rabbit began. Alice gave a little scream of laughter. `Oh, hush!' the Rabbit whispered in a frightened tone. `The Queen will hear you! You see, she came rather late, and the Queen said--' `Get to your places!' shouted the Queen in a voice of thunder, and people began running about in all directions, tumbling up against each other; however, they got settled down in a minute or two, and the game began. Alice thought she had never seen such a curious croquet-ground in her life; it was all ridges and furrows; the balls were live hedgehogs, the mallets live flamingoes, and the soldiers had to double themselves up and to stand on their hands and feet, to make the arches. The chief difficulty Alice found at first was in managing her flamingo: she succeeded in getting its body tucked away, comfortably enough, under her arm, with its legs hanging down, but generally, just as she had got its neck nicely straightened out, and was going to give the hedgehog a blow with its head, it WOULD twist itself round and look up in her face, with such a puzzled expression that she could not help bursting out laughing: and when she had got its head down, and was going to begin again, it was very provoking to find that the hedgehog had unrolled itself, and was in the act of crawling away: besides all this, there was generally a ridge or furrow in the way wherever she wanted to send the hedgehog to, and, as the doubled-up soldiers were always getting up and walking off to other parts of the ground, Alice soon came to the conclusion that it was a very difficult game indeed. The players all played at once without waiting for turns, quarrelling all the while, and fighting for the hedgehogs; and in a very short time the Queen was in a furious passion, and went stamping about, and shouting `Off with his head!' or `Off with her head!' about once in a minute. Alice began to feel very uneasy: to be sure, she had not as yet had any dispute with the Queen, but she knew that it might happen any minute, `and then,' thought she, `what would become of me? They're dreadfully fond of beheading people here; the great wonder is, that there's any one left alive!' She was looking about for some way of escape, and wondering whether she could get away without being seen, when she noticed a curious appearance in the air: it puzzled her very much at first, but, after watching it a minute or two, she made it out to be a grin, and she said to herself `It's the Cheshire Cat: now I shall have somebody to talk to.' `How are you getting on?' said the Cat, as soon as there was mouth enough for it to speak with. Alice waited till the eyes appeared, and then nodded. `It's no use speaking to it,' she thought, `till its ears have come, or at least one of them.' In another minute the whole head appeared, and then Alice put down her flamingo, and began an account of the game, feeling very glad she had someone to listen to her. The Cat seemed to think that there was enough of it now in sight, and no more of it appeared. `I don't think they play at all fairly,' Alice began, in rather a complaining tone, `and they all quarrel so dreadfully one can't hear oneself speak--and they don't seem to have any rules in particular; at least, if there are, nobody attends to them--and you've no idea how confusing it is all the things being alive; for instance, there's the arch I've got to go through next walking about at the other end of the ground--and I should have croqueted the Queen's hedgehog just now, only it ran away when it saw mine coming!' `How do you like the Queen?' said the Cat in a low voice. `Not at all,' said Alice: `she's so extremely--' Just then she noticed that the Queen was close behind her, listening: so she went on, `--likely to win, that it's hardly worth while finishing the game.' The Queen smiled and passed on. `Who ARE you talking to?' said the King, going up to Alice, and looking at the Cat's head with great curiosity. `It's a friend of mine--a Cheshire Cat,' said Alice: `allow me to introduce it.' `I don't like the look of it at all,' said the King: `however, it may kiss my hand if it likes.' `I'd rather not,' the Cat remarked. `Don't be impertinent,' said the King, `and don't look at me like that!' He got behind Alice as he spoke. `A cat may look at a king,' said Alice. `I've read that in some book, but I don't remember where.' `Well, it must be removed,' said the King very decidedly, and he called the Queen, who was passing at the moment, `My dear! I wish you would have this cat removed!' The Queen had only one way of settling all difficulties, great or small. `Off with his head!' she said, without even looking round. `I'll fetch the executioner myself,' said the King eagerly, and he hurried off. Alice thought she might as well go back, and see how the game was going on, as she heard the Queen's voice in the distance, screaming with passion. She had already heard her sentence three of the players to be executed for having missed their turns, and she did not like the look of things at all, as the game was in such confusion that she never knew whether it was her turn or not. So she went in search of her hedgehog. The hedgehog was engaged in a fight with another hedgehog, which seemed to Alice an excellent opportunity for croqueting one of them with the other: the only difficulty was, that her flamingo was gone across to the other side of the garden, where Alice could see it trying in a helpless sort of way to fly up into a tree. By the time she had caught the flamingo and brought it back, the fight was over, and both the hedgehogs were out of sight: `but it doesn't matter much,' thought Alice, `as all the arches are gone from this side of the ground.' So she tucked it away under her arm, that it might not escape again, and went back for a little more conversation with her friend. When she got back to the Cheshire Cat, she was surprised to find quite a large crowd collected round it: there was a dispute going on between the executioner, the King, and the Queen, who were all talking at once, while all the rest were quite silent, and looked very uncomfortable. The moment Alice appeared, she was appealed to by all three to settle the question, and they repeated their arguments to her, though, as they all spoke at once, she found it very hard indeed to make out exactly what they said. The executioner's argument was, that you couldn't cut off a head unless there was a body to cut it off from: that he had never had to do such a thing before, and he wasn't going to begin at HIS time of life. The King's argument was, that anything that had a head could be beheaded, and that you weren't to talk nonsense. The Queen's argument was, that if something wasn't done about it in less than no time she'd have everybody executed, all round. (It was this last remark that had made the whole party look so grave and anxious.) Alice could think of nothing else to say but `It belongs to the Duchess: you'd better ask HER about it.' `She's in prison,' the Queen said to the executioner: `fetch her here.' And the executioner went off like an arrow. The Cat's head began fading away the moment he was gone, and, by the time he had come back with the Dutchess, it had entirely disappeared; so the King and the executioner ran wildly up and down looking for it, while the rest of the party went back to the game. CHAPTER IX The Mock Turtle's Story `You can't think how glad I am to see you again, you dear old thing!' said the Duchess, as she tucked her arm affectionately into Alice's, and they walked off together. Alice was very glad to find her in such a pleasant temper, and thought to herself that perhaps it was only the pepper that had made her so savage when they met in the kitchen. `When I'M a Duchess,' she said to herself, (not in a very hopeful tone though), `I won't have any pepper in my kitchen AT ALL. Soup does very well without--Maybe it's always pepper that makes people hot-tempered,' she went on, very much pleased at having found out a new kind of rule, `and vinegar that makes them sour--and camomile that makes them bitter--and--and barley-sugar and such things that make children sweet-tempered. I only wish people knew that: then they wouldn't be so stingy about it, you know--' She had quite forgotten the Duchess by this time, and was a little startled when she heard her voice close to her ear. `You're thinking about something, my dear, and that makes you forget to talk. I can't tell you just now what the moral of that is, but I shall remember it in a bit.' `Perhaps it hasn't one,' Alice ventured to remark. `Tut, tut, child!' said the Duchess. `Everything's got a moral, if only you can find it.' And she squeezed herself up closer to Alice's side as she spoke. Alice did not much like keeping so close to her: first, because the Duchess was VERY ugly; and secondly, because she was exactly the right height to rest her chin upon Alice's shoulder, and it was an uncomfortably sharp chin. However, she did not like to be rude, so she bore it as well as she could. `The game's going on rather better now,' she said, by way of keeping up the conversation a little. `'Tis so,' said the Duchess: `and the moral of that is--"Oh, 'tis love, 'tis love, that makes the world go round!"' `Somebody said,' Alice whispered, `that it's done by everybody minding their own business!' `Ah, well! It means much the same thing,' said the Duchess, digging her sharp little chin into Alice's shoulder as she added, `and the moral of THAT is--"Take care of the sense, and the sounds will take care of themselves."' `How fond she is of finding morals in things!' Alice thought to herself. `I dare say you're wondering why I don't put my arm round your waist,' the Duchess said after a pause: `the reason is, that I'm doubtful about the temper of your flamingo. Shall I try the experiment?' `HE might bite,' Alice cautiously replied, not feeling at all anxious to have the experiment tried. `Very true,' said the Duchess: `flamingoes and mustard both bite. And the moral of that is--"Birds of a feather flock together."' `Only mustard isn't a bird,' Alice remarked. `Right, as usual,' said the Duchess: `what a clear way you have of putting things!' `It's a mineral, I THINK,' said Alice. `Of course it is,' said the Duchess, who seemed ready to agree to everything that Alice said; `there's a large mustard-mine near here. And the moral of that is--"The more there is of mine, the less there is of yours."' `Oh, I know!' exclaimed Alice, who had not attended to this last remark, `it's a vegetable. It doesn't look like one, but it is.' `I quite agree with you,' said the Duchess; `and the moral of that is--"Be what you would seem to be"--or if you'd like it put more simply--"Never imagine yourself not to be otherwise than what it might appear to others that what you were or might have been was not otherwise than what you had been would have appeared to them to be otherwise."' `I think I should understand that better,' Alice said very politely, `if I had it written down: but I can't quite follow it as you say it.' `That's nothing to what I could say if I chose,' the Duchess replied, in a pleased tone. `Pray don't trouble yourself to say it any longer than that,' said Alice. `Oh, don't talk about trouble!' said the Duchess. `I make you a present of everything I've said as yet.' `A cheap sort of present!' thought Alice. `I'm glad they don't give birthday presents like that!' But she did not venture to say it out loud. `Thinking again?' the Duchess asked, with another dig of her sharp little chin. `I've a right to think,' said Alice sharply, for she was beginning to feel a little worried. `Just about as much right,' said the Duchess, `as pigs have to fly; and the m--' But here, to Alice's great surprise, the Duchess's voice died away, even in the middle of her favourite word `moral,' and the arm that was linked into hers began to tremble. Alice looked up, and there stood the Queen in front of them, with her arms folded, frowning like a thunderstorm. `A fine day, your Majesty!' the Duchess began in a low, weak voice. `Now, I give you fair warning,' shouted the Queen, stamping on the ground as she spoke; `either you or your head must be off, and that in about half no time! Take your choice!' The Duchess took her choice, and was gone in a moment. `Let's go on with the game,' the Queen said to Alice; and Alice was too much frightened to say a word, but slowly followed her back to the croquet-ground. The other guests had taken advantage of the Queen's absence, and were resting in the shade: however, the moment they saw her, they hurried back to the game, the Queen merely remarking that a moment's delay would cost them their lives. All the time they were playing the Queen never left off quarrelling with the other players, and shouting `Off with his head!' or `Off with her head!' Those whom she sentenced were taken into custody by the soldiers, who of course had to leave off being arches to do this, so that by the end of half an hour or so there were no arches left, and all the players, except the King, the Queen, and Alice, were in custody and under sentence of execution. Then the Queen left off, quite out of breath, and said to Alice, `Have you seen the Mock Turtle yet?' `No,' said Alice. `I don't even know what a Mock Turtle is.' `It's the thing Mock Turtle Soup is made from,' said the Queen. `I never saw one, or heard of one,' said Alice. `Come on, then,' said the Queen, `and he shall tell you his history,' As they walked off together, Alice heard the King say in a low voice, to the company generally, `You are all pardoned.' `Come, THAT'S a good thing!' she said to herself, for she had felt quite unhappy at the number of executions the Queen had ordered. They very soon came upon a Gryphon, lying fast asleep in the sun. (IF you don't know what a Gryphon is, look at the picture.) `Up, lazy thing!' said the Queen, `and take this young lady to see the Mock Turtle, and to hear his history. I must go back and see after some executions I have ordered'; and she walked off, leaving Alice alone with the Gryphon. Alice did not quite like the look of the creature, but on the whole she thought it would be quite as safe to stay with it as to go after that savage Queen: so she waited. The Gryphon sat up and rubbed its eyes: then it watched the Queen till she was out of sight: then it chuckled. `What fun!' said the Gryphon, half to itself, half to Alice. `What IS the fun?' said Alice. `Why, SHE,' said the Gryphon. `It's all her fancy, that: they never executes nobody, you know. Come on!' `Everybody says "come on!" here,' thought Alice, as she went slowly after it: `I never was so ordered about in all my life, never!' They had not gone far before they saw the Mock Turtle in the distance, sitting sad and lonely on a little ledge of rock, and, as they came nearer, Alice could hear him sighing as if his heart would break. She pitied him deeply. `What is his sorrow?' she asked the Gryphon, and the Gryphon answered, very nearly in the same words as before, `It's all his fancy, that: he hasn't got no sorrow, you know. Come on!' So they went up to the Mock Turtle, who looked at them with large eyes full of tears, but said nothing. `This here young lady,' said the Gryphon, `she wants for to know your history, she do.' `I'll tell it her,' said the Mock Turtle in a deep, hollow tone: `sit down, both of you, and don't speak a word till I've finished.' So they sat down, and nobody spoke for some minutes. Alice thought to herself, `I don't see how he can EVEN finish, if he doesn't begin.' But she waited patiently. `Once,' said the Mock Turtle at last, with a deep sigh, `I was a real Turtle.' These words were followed by a very long silence, broken only by an occasional exclamation of `Hjckrrh!' from the Gryphon, and the constant heavy sobbing of the Mock Turtle. Alice was very nearly getting up and saying, `Thank you, sir, for your interesting story,' but she could not help thinking there MUST be more to come, so she sat still and said nothing. `When we were little,' the Mock Turtle went on at last, more calmly, though still sobbing a little now and then, `we went to school in the sea. The master was an old Turtle--we used to call him Tortoise--' `Why did you call him Tortoise, if he wasn't one?' Alice asked. `We called him Tortoise because he taught us,' said the Mock Turtle angrily: `really you are very dull!' `You ought to be ashamed of yourself for asking such a simple question,' added the Gryphon; and then they both sat silent and looked at poor Alice, who felt ready to sink into the earth. At last the Gryphon said to the Mock Turtle, `Drive on, old fellow! Don't be all day about it!' and he went on in these words: `Yes, we went to school in the sea, though you mayn't believe it--' `I never said I didn't!' interrupted Alice. `You did,' said the Mock Turtle. `Hold your tongue!' added the Gryphon, before Alice could speak again. The Mock Turtle went on. `We had the best of educations--in fact, we went to school every day--' `I'VE been to a day-school, too,' said Alice; `you needn't be so proud as all that.' `With extras?' asked the Mock Turtle a little anxiously. `Yes,' said Alice, `we learned French and music.' `And washing?' said the Mock Turtle. `Certainly not!' said Alice indignantly. `Ah! then yours wasn't a really good school,' said the Mock Turtle in a tone of great relief. `Now at OURS they had at the end of the bill, "French, music, AND WASHING--extra."' `You couldn't have wanted it much,' said Alice; `living at the bottom of the sea.' `I couldn't afford to learn it.' said the Mock Turtle with a sigh. `I only took the regular course.' `What was that?' inquired Alice. `Reeling and Writhing, of course, to begin with,' the Mock Turtle replied; `and then the different branches of Arithmetic-- Ambition, Distraction, Uglification, and Derision.' `I never heard of "Uglification,"' Alice ventured to say. `What is it?' The Gryphon lifted up both its paws in surprise. `What! Never heard of uglifying!' it exclaimed. `You know what to beautify is, I suppose?' `Yes,' said Alice doubtfully: `it means--to--make--anything-- prettier.' `Well, then,' the Gryphon went on, `if you don't know what to uglify is, you ARE a simpleton.' Alice did not feel encouraged to ask any more questions about it, so she turned to the Mock Turtle, and said `What else had you to learn?' `Well, there was Mystery,' the Mock Turtle replied, counting off the subjects on his flappers, `--Mystery, ancient and modern, with Seaography: then Drawling--the Drawling-master was an old conger-eel, that used to come once a week: HE taught us Drawling, Stretching, and Fainting in Coils.' `What was THAT like?' said Alice. `Well, I can't show it you myself,' the Mock Turtle said: `I'm too stiff. And the Gryphon never learnt it.' `Hadn't time,' said the Gryphon: `I went to the Classics master, though. He was an old crab, HE was.' `I never went to him,' the Mock Turtle said with a sigh: `he taught Laughing and Grief, they used to say.' `So he did, so he did,' said the Gryphon, sighing in his turn; and both creatures hid their faces in their paws. `And how many hours a day did you do lessons?' said Alice, in a hurry to change the subject. `Ten hours the first day,' said the Mock Turtle: `nine the next, and so on.' `What a curious plan!' exclaimed Alice. `That's the reason they're called lessons,' the Gryphon remarked: `because they lessen from day to day.' This was quite a new idea to Alice, and she thought it over a little before she made her next remark. `Then the eleventh day must have been a holiday?' `Of course it was,' said the Mock Turtle. `And how did you manage on the twelfth?' Alice went on eagerly. `That's enough about lessons,' the Gryphon interrupted in a very decided tone: `tell her something about the games now.' CHAPTER X The Lobster Quadrille The Mock Turtle sighed deeply, and drew the back of one flapper across his eyes. He looked at Alice, and tried to speak, but for a minute or two sobs choked his voice. `Same as if he had a bone in his throat,' said the Gryphon: and it set to work shaking him and punching him in the back. At last the Mock Turtle recovered his voice, and, with tears running down his cheeks, he went on again:-- `You may not have lived much under the sea--' (`I haven't,' said Alice)--`and perhaps you were never even introduced to a lobster--' (Alice began to say `I once tasted--' but checked herself hastily, and said `No, never') `--so you can have no idea what a delightful thing a Lobster Quadrille is!' `No, indeed,' said Alice. `What sort of a dance is it?' `Why,' said the Gryphon, `you first form into a line along the sea-shore--' `Two lines!' cried the Mock Turtle. `Seals, turtles, salmon, and so on; then, when you've cleared all the jelly-fish out of the way--' `THAT generally takes some time,' interrupted the Gryphon. `--you advance twice--' `Each with a lobster as a partner!' cried the Gryphon. `Of course,' the Mock Turtle said: `advance twice, set to partners--' `--change lobsters, and retire in same order,' continued the Gryphon. `Then, you know,' the Mock Turtle went on, `you throw the--' `The lobsters!' shouted the Gryphon, with a bound into the air. `--as far out to sea as you can--' `Swim after them!' screamed the Gryphon. `Turn a somersault in the sea!' cried the Mock Turtle, capering wildly about. `Back to land again, and that's all the first figure,' said the Mock Turtle, suddenly dropping his voice; and the two creatures, who had been jumping about like mad things all this time, sat down again very sadly and quietly, and looked at Alice. `It must be a very pretty dance,' said Alice timidly. `Would you like to see a little of it?' said the Mock Turtle. `Very much indeed,' said Alice. `Come, let's try the first figure!' said the Mock Turtle to the Gryphon. `We can do without lobsters, you know. Which shall sing?' `Oh, YOU sing,' said the Gryphon. `I've forgotten the words.' So they began solemnly dancing round and round Alice, every now and then treading on her toes when they passed too close, and waving their forepaws to mark the time, while the Mock Turtle sang this, very slowly and sadly:-- `"Will you walk a little faster?" said a whiting to a snail. "There's a porpoise close behind us, and he's treading on my tail. See how eagerly the lobsters and the turtles all advance! They are waiting on the shingle--will you come and join the dance? Will you, won't you, will you, won't you, will you join the dance? Will you, won't you, will you, won't you, won't you join the dance? "You can really have no notion how delightful it will be When they take us up and throw us, with the lobsters, out to sea!" But the snail replied "Too far, too far!" and gave a look askance-- Said he thanked the whiting kindly, but he would not join the dance. Would not, could not, would not, could not, would not join the dance. Would not, could not, would not, could not, could not join the dance. `"What matters it how far we go?" his scaly friend replied. "There is another shore, you know, upon the other side. The further off from England the nearer is to France-- Then turn not pale, beloved snail, but come and join the dance. Will you, won't you, will you, won't you, will you join the dance? Will you, won't you, will you, won't you, won't you join the dance?"' `Thank you, it's a very interesting dance to watch,' said Alice, feeling very glad that it was over at last: `and I do so like that curious song about the whiting!' `Oh, as to the whiting,' said the Mock Turtle, `they--you've seen them, of course?' `Yes,' said Alice, `I've often seen them at dinn--' she checked herself hastily. `I don't know where Dinn may be,' said the Mock Turtle, `but if you've seen them so often, of course you know what they're like.' `I believe so,' Alice replied thoughtfully. `They have their tails in their mouths--and they're all over crumbs.' `You're wrong about the crumbs,' said the Mock Turtle: `crumbs would all wash off in the sea. But they HAVE their tails in their mouths; and the reason is--' here the Mock Turtle yawned and shut his eyes.--`Tell her about the reason and all that,' he said to the Gryphon. `The reason is,' said the Gryphon, `that they WOULD go with the lobsters to the dance. So they got thrown out to sea. So they had to fall a long way. So they got their tails fast in their mouths. So they couldn't get them out again. That's all.' `Thank you,' said Alice, `it's very interesting. I never knew so much about a whiting before.' `I can tell you more than that, if you like,' said the Gryphon. `Do you know why it's called a whiting?' `I never thought about it,' said Alice. `Why?' `IT DOES THE BOOTS AND SHOES.' the Gryphon replied very solemnly. Alice was thoroughly puzzled. `Does the boots and shoes!' she repeated in a wondering tone. `Why, what are YOUR shoes done with?' said the Gryphon. `I mean, what makes them so shiny?' Alice looked down at them, and considered a little before she gave her answer. `They're done with blacking, I believe.' `Boots and shoes under the sea,' the Gryphon went on in a deep voice, `are done with a whiting. Now you know.' `And what are they made of?' Alice asked in a tone of great curiosity. `Soles and eels, of course,' the Gryphon replied rather impatiently: `any shrimp could have told you that.' `If I'd been the whiting,' said Alice, whose thoughts were still running on the song, `I'd have said to the porpoise, "Keep back, please: we don't want YOU with us!"' `They were obliged to have him with them,' the Mock Turtle said: `no wise fish would go anywhere without a porpoise.' `Wouldn't it really?' said Alice in a tone of great surprise. `Of course not,' said the Mock Turtle: `why, if a fish came to ME, and told me he was going a journey, I should say "With what porpoise?"' `Don't you mean "purpose"?' said Alice. `I mean what I say,' the Mock Turtle replied in an offended tone. And the Gryphon added `Come, let's hear some of YOUR adventures.' `I could tell you my adventures--beginning from this morning,' said Alice a little timidly: `but it's no use going back to yesterday, because I was a different person then.' `Explain all that,' said the Mock Turtle. `No, no! The adventures first,' said the Gryphon in an impatient tone: `explanations take such a dreadful time.' So Alice began telling them her adventures from the time when she first saw the White Rabbit. She was a little nervous about it just at first, the two creatures got so close to her, one on each side, and opened their eyes and mouths so VERY wide, but she gained courage as she went on. Her listeners were perfectly quiet till she got to the part about her repeating `YOU ARE OLD, FATHER WILLIAM,' to the Caterpillar, and the words all coming different, and then the Mock Turtle drew a long breath, and said `That's very curious.' `It's all about as curious as it can be,' said the Gryphon. `It all came different!' the Mock Turtle repeated thoughtfully. `I should like to hear her try and repeat something now. Tell her to begin.' He looked at the Gryphon as if he thought it had some kind of authority over Alice. `Stand up and repeat "'TIS THE VOICE OF THE SLUGGARD,"' said the Gryphon. `How the creatures order one about, and make one repeat lessons!' thought Alice; `I might as well be at school at once.' However, she got up, and began to repeat it, but her head was so full of the Lobster Quadrille, that she hardly knew what she was saying, and the words came very queer indeed:-- `'Tis the voice of the Lobster; I heard him declare, "You have baked me too brown, I must sugar my hair." As a duck with its eyelids, so he with his nose Trims his belt and his buttons, and turns out his toes.' [later editions continued as follows When the sands are all dry, he is gay as a lark, And will talk in contemptuous tones of the Shark, But, when the tide rises and sharks are around, His voice has a timid and tremulous sound.] `That's different from what I used to say when I was a child,' said the Gryphon. `Well, I never heard it before,' said the Mock Turtle; `but it sounds uncommon nonsense.' Alice said nothing; she had sat down with her face in her hands, wondering if anything would EVER happen in a natural way again. `I should like to have it explained,' said the Mock Turtle. `She can't explain it,' said the Gryphon hastily. `Go on with the next verse.' `But about his toes?' the Mock Turtle persisted. `How COULD he turn them out with his nose, you know?' `It's the first position in dancing.' Alice said; but was dreadfully puzzled by the whole thing, and longed to change the subject. `Go on with the next verse,' the Gryphon repeated impatiently: `it begins "I passed by his garden."' Alice did not dare to disobey, though she felt sure it would all come wrong, and she went on in a trembling voice:-- `I passed by his garden, and marked, with one eye, How the Owl and the Panther were sharing a pie--' [later editions continued as follows The Panther took pie-crust, and gravy, and meat, While the Owl had the dish as its share of the treat. When the pie was all finished, the Owl, as a boon, Was kindly permitted to pocket the spoon: While the Panther received knife and fork with a growl, And concluded the banquet--] `What IS the use of repeating all that stuff,' the Mock Turtle interrupted, `if you don't explain it as you go on? It's by far the most confusing thing I ever heard!' `Yes, I think you'd better leave off,' said the Gryphon: and Alice was only too glad to do so. `Shall we try another figure of the Lobster Quadrille?' the Gryphon went on. `Or would you like the Mock Turtle to sing you a song?' `Oh, a song, please, if the Mock Turtle would be so kind,' Alice replied, so eagerly that the Gryphon said, in a rather offended tone, `Hm! No accounting for tastes! Sing her "Turtle Soup," will you, old fellow?' The Mock Turtle sighed deeply, and began, in a voice sometimes choked with sobs, to sing this:-- `Beautiful Soup, so rich and green, Waiting in a hot tureen! Who for such dainties would not stoop? Soup of the evening, beautiful Soup! Soup of the evening, beautiful Soup! Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Soo--oop of the e--e--evening, Beautiful, beautiful Soup! `Beautiful Soup! Who cares for fish, Game, or any other dish? Who would not give all else for two p ennyworth only of beautiful Soup? Pennyworth only of beautiful Soup? Beau--ootiful Soo--oop! Beau--ootiful Soo--oop! Soo--oop of the e--e--evening, Beautiful, beauti--FUL SOUP!' `Chorus again!' cried the Gryphon, and the Mock Turtle had just begun to repeat it, when a cry of `The trial's beginning!' was heard in the distance. `Come on!' cried the Gryphon, and, taking Alice by the hand, it hurried off, without waiting for the end of the song. `What trial is it?' Alice panted as she ran; but the Gryphon only answered `Come on!' and ran the faster, while more and more faintly came, carried on the breeze that followed them, the melancholy words:-- `Soo--oop of the e--e--evening, Beautiful, beautiful Soup!' CHAPTER XI Who Stole the Tarts? The King and Queen of Hearts were seated on their throne when they arrived, with a great crowd assembled about them--all sorts of little birds and beasts, as well as the whole pack of cards: the Knave was standing before them, in chains, with a soldier on each side to guard him; and near the King was the White Rabbit, with a trumpet in one hand, and a scroll of parchment in the other. In the very middle of the court was a table, with a large dish of tarts upon it: they looked so good, that it made Alice quite hungry to look at them--`I wish they'd get the trial done,' she thought, `and hand round the refreshments!' But there seemed to be no chance of this, so she began looking at everything about her, to pass away the time. Alice had never been in a court of justice before, but she had read about them in books, and she was quite pleased to find that she knew the name of nearly everything there. `That's the judge,' she said to herself, `because of his great wig.' The judge, by the way, was the King; and as he wore his crown over the wig, (look at the frontispiece if you want to see how he did it,) he did not look at all comfortable, and it was certainly not becoming. `And that's the jury-box,' thought Alice, `and those twelve creatures,' (she was obliged to say `creatures,' you see, because some of them were animals, and some were birds,) `I suppose they are the jurors.' She said this last word two or three times over to herself, being rather proud of it: for she thought, and rightly too, that very few little girls of her age knew the meaning of it at all. However, `jury-men' would have done just as well. The twelve jurors were all writing very busily on slates. `What are they doing?' Alice whispered to the Gryphon. `They can't have anything to put down yet, before the trial's begun.' `They're putting down their names,' the Gryphon whispered in reply, `for fear they should forget them before the end of the trial.' `Stupid things!' Alice began in a loud, indignant voice, but she stopped hastily, for the White Rabbit cried out, `Silence in the court!' and the King put on his spectacles and looked anxiously round, to make out who was talking. Alice could see, as well as if she were looking over their shoulders, that all the jurors were writing down `stupid things!' on their slates, and she could even make out that one of them didn't know how to spell `stupid,' and that he had to ask his neighbour to tell him. `A nice muddle their slates'll be in before the trial's over!' thought Alice. One of the jurors had a pencil that squeaked. This of course, Alice could not stand, and she went round the court and got behind him, and very soon found an opportunity of taking it away. She did it so quickly that the poor little juror (it was Bill, the Lizard) could not make out at all what had become of it; so, after hunting all about for it, he was obliged to write with one finger for the rest of the day; and this was of very little use, as it left no mark on the slate. `Herald, read the accusation!' said the King. On this the White Rabbit blew three blasts on the trumpet, and then unrolled the parchment scroll, and read as follows:-- `The Queen of Hearts, she made some tarts, All on a summer day: The Knave of Hearts, he stole those tarts, And took them quite away!' `Consider your verdict,' the King said to the jury. `Not yet, not yet!' the Rabbit hastily interrupted. `There's a great deal to come before that!' `Call the first witness,' said the King; and the White Rabbit blew three blasts on the trumpet, and called out, `First witness!' The first witness was the Hatter. He came in with a teacup in one hand and a piece of bread-and-butter in the other. `I beg pardon, your Majesty,' he began, `for bringing these in: but I hadn't quite finished my tea when I was sent for.' `You ought to have finished,' said the King. `When did you begin?' The Hatter looked at the March Hare, who had followed him into the court, arm-in-arm with the Dormouse. `Fourteenth of March, I think it was,' he said. `Fifteenth,' said the March Hare. `Sixteenth,' added the Dormouse. `Write that down,' the King said to the jury, and the jury eagerly wrote down all three dates on their slates, and then added them up, and reduced the answer to shillings and pence. `Take off your hat,' the King said to the Hatter. `It isn't mine,' said the Hatter. `Stolen!' the King exclaimed, turning to the jury, who instantly made a memorandum of the fact. `I keep them to sell,' the Hatter added as an explanation; `I've none of my own. I'm a hatter.' Here the Queen put on her spectacles, and began staring at the Hatter, who turned pale and fidgeted. `Give your evidence,' said the King; `and don't be nervous, or I'll have you executed on the spot.' This did not seem to encourage the witness at all: he kept shifting from one foot to the other, looking uneasily at the Queen, and in his confusion he bit a large piece out of his teacup instead of the bread-and-butter. Just at this moment Alice felt a very curious sensation, which puzzled her a good deal until she made out what it was: she was beginning to grow larger again, and she thought at first she would get up and leave the court; but on second thoughts she decided to remain where she was as long as there was room for her. `I wish you wouldn't squeeze so.' said the Dormouse, who was sitting next to her. `I can hardly breathe.' `I can't help it,' said Alice very meekly: `I'm growing.' `You've no right to grow here,' said the Dormouse. `Don't talk nonsense,' said Alice more boldly: `you know you're growing too.' `Yes, but I grow at a reasonable pace,' said the Dormouse: `not in that ridiculous fashion.' And he got up very sulkily and crossed over to the other side of the court. All this time the Queen had never left off staring at the Hatter, and, just as the Dormouse crossed the court, she said to one of the officers of the court, `Bring me the list of the singers in the last concert!' on which the wretched Hatter trembled so, that he shook both his shoes off. `Give your evidence,' the King repeated angrily, `or I'll have you executed, whether you're nervous or not.' `I'm a poor man, your Majesty,' the Hatter began, in a trembling voice, `--and I hadn't begun my tea--not above a week or so--and what with the bread-and-butter getting so thin--and the twinkling of the tea--' `The twinkling of the what?' said the King. `It began with the tea,' the Hatter replied. `Of course twinkling begins with a T!' said the King sharply. `Do you take me for a dunce? Go on!' `I'm a poor man,' the Hatter went on, `and most things twinkled after that--only the March Hare said--' `I didn't!' the March Hare interrupted in a great hurry. `You did!' said the Hatter. `I deny it!' said the March Hare. `He denies it,' said the King: `leave out that part.' `Well, at any rate, the Dormouse said--' the Hatter went on, looking anxiously round to see if he would deny it too: but the Dormouse denied nothing, being fast asleep. `After that,' continued the Hatter, `I cut some more bread- and-butter--' `But what did the Dormouse say?' one of the jury asked. `That I can't remember,' said the Hatter. `You MUST remember,' remarked the King, `or I'll have you executed.' The miserable Hatter dropped his teacup and bread-and-butter, and went down on one knee. `I'm a poor man, your Majesty,' he began. `You're a very poor speaker,' said the King. Here one of the guinea-pigs cheered, and was immediately suppressed by the officers of the court. (As that is rather a hard word, I will just explain to you how it was done. They had a large canvas bag, which tied up at the mouth with strings: into this they slipped the guinea-pig, head first, and then sat upon it.) `I'm glad I've seen that done,' thought Alice. `I've so often read in the newspapers, at the end of trials, "There was some attempts at applause, which was immediately suppressed by the officers of the court," and I never understood what it meant till now.' `If that's all you know about it, you may stand down,' continued the King. `I can't go no lower,' said the Hatter: `I'm on the floor, as it is.' `Then you may SIT down,' the King replied. Here the other guinea-pig cheered, and was suppressed. `Come, that finished the guinea-pigs!' thought Alice. `Now we shall get on better.' `I'd rather finish my tea,' said the Hatter, with an anxious look at the Queen, who was reading the list of singers. `You may go,' said the King, and the Hatter hurriedly left the court, without even waiting to put his shoes on. `--and just take his head off outside,' the Queen added to one of the officers: but the Hatter was out of sight before the officer could get to the door. `Call the next witness!' said the King. The next witness was the Duchess's cook. She carried the pepper-box in her hand, and Alice guessed who it was, even before she got into the court, by the way the people near the door began sneezing all at once. `Give your evidence,' said the King. `Shan't,' said the cook. The King looked anxiously at the White Rabbit, who said in a low voice, `Your Majesty must cross-examine THIS witness.' `Well, if I must, I must,' the King said, with a melancholy air, and, after folding his arms and frowning at the cook till his eyes were nearly out of sight, he said in a deep voice, `What are tarts made of?' `Pepper, mostly,' said the cook. `Treacle,' said a sleepy voice behind her. `Collar that Dormouse,' the Queen shrieked out. `Behead that Dormouse! Turn that Dormouse out of court! Suppress him! Pinch him! Off with his whiskers!' For some minutes the whole court was in confusion, getting the Dormouse turned out, and, by the time they had settled down again, the cook had disappeared. `Never mind!' said the King, with an air of great relief. `Call the next witness.' And he added in an undertone to the Queen, `Really, my dear, YOU must cross-examine the next witness. It quite makes my forehead ache!' Alice watched the White Rabbit as he fumbled over the list, feeling very curious to see what the next witness would be like, `--for they haven't got much evidence YET,' she said to herself. Imagine her surprise, when the White Rabbit read out, at the top of his shrill little voice, the name `Alice!' CHAPTER XII Alice's Evidence `Here!' cried Alice, quite forgetting in the flurry of the moment how large she had grown in the last few minutes, and she jumped up in such a hurry that she tipped over the jury-box with the edge of her skirt, upsetting all the jurymen on to the heads of the crowd below, and there they lay sprawling about, reminding her very much of a globe of goldfish she had accidentally upset the week before. `Oh, I BEG your pardon!' she exclaimed in a tone of great dismay, and began picking them up again as quickly as she could, for the accident of the goldfish kept running in her head, and she had a vague sort of idea that they must be collected at once and put back into the jury-box, or they would die. `The trial cannot proceed,' said the King in a very grave voice, `until all the jurymen are back in their proper places-- ALL,' he repeated with great emphasis, looking hard at Alice as he said do. Alice looked at the jury-box, and saw that, in her haste, she had put the Lizard in head downwards, and the poor little thing was waving its tail about in a melancholy way, being quite unable to move. She soon got it out again, and put it right; `not that it signifies much,' she said to herself; `I should think it would be QUITE as much use in the trial one way up as the other.' As soon as the jury had a little recovered from the shock of being upset, and their slates and pencils had been found and handed back to them, they set to work very diligently to write out a history of the accident, all except the Lizard, who seemed too much overcome to do anything but sit with its mouth open, gazing up into the roof of the court. `What do you know about this business?' the King said to Alice. `Nothing,' said Alice. `Nothing WHATEVER?' persisted the King. `Nothing whatever,' said Alice. `That's very important,' the King said, turning to the jury. They were just beginning to write this down on their slates, when the White Rabbit interrupted: `UNimportant, your Majesty means, of course,' he said in a very respectful tone, but frowning and making faces at him as he spoke. `UNimportant, of course, I meant,' the King hastily said, and went on to himself in an undertone, `important--unimportant-- unimportant--important--' as if he were trying which word sounded best. Some of the jury wrote it down `important,' and some `unimportant.' Alice could see this, as she was near enough to look over their slates; `but it doesn't matter a bit,' she thought to herself. At this moment the King, who had been for some time busily writing in his note-book, cackled out `Silence!' and read out from his book, `Rule Forty-two. ALL PERSONS MORE THAN A MILE HIGH TO LEAVE THE COURT.' Everybody looked at Alice. `I'M not a mile high,' said Alice. `You are,' said the King. `Nearly two miles high,' added the Queen. `Well, I shan't go, at any rate,' said Alice: `besides, that's not a regular rule: you invented it just now.' `It's the oldest rule in the book,' said the King. `Then it ought to be Number One,' said Alice. The King turned pale, and shut his note-book hastily. `Consider your verdict,' he said to the jury, in a low, trembling voice. `There's more evidence to come yet, please your Majesty,' said the White Rabbit, jumping up in a great hurry; `this paper has just been picked up.' `What's in it?' said the Queen. `I haven't opened it yet,' said the White Rabbit, `but it seems to be a letter, written by the prisoner to--to somebody.' `It must have been that,' said the King, `unless it was written to nobody, which isn't usual, you know.' `Who is it directed to?' said one of the jurymen. `It isn't directed at all,' said the White Rabbit; `in fact, there's nothing written on the OUTSIDE.' He unfolded the paper as he spoke, and added `It isn't a letter, after all: it's a set of verses.' `Are they in the prisoner's handwriting?' asked another of they jurymen. `No, they're not,' said the White Rabbit, `and that's the queerest thing about it.' (The jury all looked puzzled.) `He must have imitated somebody else's hand,' said the King. (The jury all brightened up again.) `Please your Majesty,' said the Knave, `I didn't write it, and they can't prove I did: there's no name signed at the end.' `If you didn't sign it,' said the King, `that only makes the matter worse. You MUST have meant some mischief, or else you'd have signed your name like an honest man.' There was a general clapping of hands at this: it was the first really clever thing the King had said that day. `That PROVES his guilt,' said the Queen. `It proves nothing of the sort!' said Alice. `Why, you don't even know what they're about!' `Read them,' said the King. The White Rabbit put on his spectacles. `Where shall I begin, please your Majesty?' he asked. `Begin at the beginning,' the King said gravely, `and go on till you come to the end: then stop.' These were the verses the White Rabbit read:-- `They told me you had been to her, And mentioned me to him: She gave me a good character, But said I could not swim. He sent them word I had not gone (We know it to be true): If she should push the matter on, What would become of you? I gave her one, they gave him two, You gave us three or more; They all returned from him to you, Though they were mine before. If I or she should chance to be Involved in this affair, He trusts to you to set them free, Exactly as we were. My notion was that you had been (Before she had this fit) An obstacle that came between Him, and ourselves, and it. Don't let him know she liked them best, For this must ever be A secret, kept from all the rest, Between yourself and me.' `That's the most important piece of evidence we've heard yet,' said the King, rubbing his hands; `so now let the jury--' `If any one of them can explain it,' said Alice, (she had grown so large in the last few minutes that she wasn't a bit afraid of interrupting him,) `I'll give him sixpence. _I_ don't believe there's an atom of meaning in it.' The jury all wrote down on their slates, `SHE doesn't believe there's an atom of meaning in it,' but none of them attempted to explain the paper. `If there's no meaning in it,' said the King, `that saves a world of trouble, you know, as we needn't try to find any. And yet I don't know,' he went on, spreading out the verses on his knee, and looking at them with one eye; `I seem to see some meaning in them, after all. "--SAID I COULD NOT SWIM--" you can't swim, can you?' he added, turning to the Knave. The Knave shook his head sadly. `Do I look like it?' he said. (Which he certainly did NOT, being made entirely of cardboard.) `All right, so far,' said the King, and he went on muttering over the verses to himself: `"WE KNOW IT TO BE TRUE--" that's the jury, of course-- "I GAVE HER ONE, THEY GAVE HIM TWO--" why, that must be what he did with the tarts, you know--' `But, it goes on "THEY ALL RETURNED FROM HIM TO YOU,"' said Alice. `Why, there they are!' said the King triumphantly, pointing to the tarts on the table. `Nothing can be clearer than THAT. Then again--"BEFORE SHE HAD THIS FIT--" you never had fits, my dear, I think?' he said to the Queen. `Never!' said the Queen furiously, throwing an inkstand at the Lizard as she spoke. (The unfortunate little Bill had left off writing on his slate with one finger, as he found it made no mark; but he now hastily began again, using the ink, that was trickling down his face, as long as it lasted.) `Then the words don't FIT you,' said the King, looking round the court with a smile. There was a dead silence. `It's a pun!' the King added in an offended tone, and everybody laughed, `Let the jury consider their verdict,' the King said, for about the twentieth time that day. `No, no!' said the Queen. `Sentence first--verdict afterwards.' `Stuff and nonsense!' said Alice loudly. `The idea of having the sentence first!' `Hold your tongue!' said the Queen, turning purple. `I won't!' said Alice. `Off with her head!' the Queen shouted at the top of her voice. Nobody moved. `Who cares for you?' said Alice, (she had grown to her full size by this time.) `You're nothing but a pack of cards!' At this the whole pack rose up into the air, and came flying down upon her: she gave a little scream, half of fright and half of anger, and tried to beat them off, and found herself lying on the bank, with her head in the lap of her sister, who was gently brushing away some dead leaves that had fluttered down from the trees upon her face. `Wake up, Alice dear!' said her sister; `Why, what a long sleep you've had!' `Oh, I've had such a curious dream!' said Alice, and she told her sister, as well as she could remember them, all these strange Adventures of hers that you have just been reading about; and when she had finished, her sister kissed her, and said, `It WAS a curious dream, dear, certainly: but now run in to your tea; it's getting late.' So Alice got up and ran off, thinking while she ran, as well she might, what a wonderful dream it had been. But her sister sat still just as she left her, leaning her head on her hand, watching the setting sun, and thinking of little Alice and all her wonderful Adventures, till she too began dreaming after a fashion, and this was her dream:-- First, she dreamed of little Alice herself, and once again the tiny hands were clasped upon her knee, and the bright eager eyes were looking up into hers--she could hear the very tones of her voice, and see that queer little toss of her head to keep back the wandering hair that WOULD always get into her eyes--and still as she listened, or seemed to listen, the whole place around her became alive the strange creatures of her little sister's dream. The long grass rustled at her feet as the White Rabbit hurried by--the frightened Mouse splashed his way through the neighbouring pool--she could hear the rattle of the teacups as the March Hare and his friends shared their never-ending meal, and the shrill voice of the Queen ordering off her unfortunate guests to execution--once more the pig-baby was sneezing on the Duchess's knee, while plates and dishes crashed around it--once more the shriek of the Gryphon, the squeaking of the Lizard's slate-pencil, and the choking of the suppressed guinea-pigs, filled the air, mixed up with the distant sobs of the miserable Mock Turtle. So she sat on, with closed eyes, and half believed herself in Wonderland, though she knew she had but to open them again, and all would change to dull reality--the grass would be only rustling in the wind, and the pool rippling to the waving of the reeds--the rattling teacups would change to tinkling sheep- bells, and the Queen's shrill cries to the voice of the shepherd boy--and the sneeze of the baby, the shriek of the Gryphon, and all thy other queer noises, would change (she knew) to the confused clamour of the busy farm-yard--while the lowing of the cattle in the distance would take the place of the Mock Turtle's heavy sobs. Lastly, she pictured to herself how this same little sister of hers would, in the after-time, be herself a grown woman; and how she would keep, through all her riper years, the simple and loving heart of her childhood: and how she would gather about her other little children, and make THEIR eyes bright and eager with many a strange tale, perhaps even with the dream of Wonderland of long ago: and how she would feel with all their simple sorrows, and find a pleasure in all their simple joys, remembering her own child-life, and the happy summer days. THE END snappy-1.2.2/testdata/asyoulik.txt000066400000000000000000003643731477101537200172670ustar00rootroot00000000000000 AS YOU LIKE IT DRAMATIS PERSONAE DUKE SENIOR living in banishment. DUKE FREDERICK his brother, an usurper of his dominions. AMIENS | | lords attending on the banished duke. JAQUES | LE BEAU a courtier attending upon Frederick. CHARLES wrestler to Frederick. OLIVER | | JAQUES (JAQUES DE BOYS:) | sons of Sir Rowland de Boys. | ORLANDO | ADAM | | servants to Oliver. DENNIS | TOUCHSTONE a clown. SIR OLIVER MARTEXT a vicar. CORIN | | shepherds. SILVIUS | WILLIAM a country fellow in love with Audrey. A person representing HYMEN. (HYMEN:) ROSALIND daughter to the banished duke. CELIA daughter to Frederick. PHEBE a shepherdess. AUDREY a country wench. Lords, pages, and attendants, &c. (Forester:) (A Lord:) (First Lord:) (Second Lord:) (First Page:) (Second Page:) SCENE Oliver's house; Duke Frederick's court; and the Forest of Arden. AS YOU LIKE IT ACT I SCENE I Orchard of Oliver's house. [Enter ORLANDO and ADAM] ORLANDO As I remember, Adam, it was upon this fashion bequeathed me by will but poor a thousand crowns, and, as thou sayest, charged my brother, on his blessing, to breed me well: and there begins my sadness. My brother Jaques he keeps at school, and report speaks goldenly of his profit: for my part, he keeps me rustically at home, or, to speak more properly, stays me here at home unkept; for call you that keeping for a gentleman of my birth, that differs not from the stalling of an ox? His horses are bred better; for, besides that they are fair with their feeding, they are taught their manage, and to that end riders dearly hired: but I, his brother, gain nothing under him but growth; for the which his animals on his dunghills are as much bound to him as I. Besides this nothing that he so plentifully gives me, the something that nature gave me his countenance seems to take from me: he lets me feed with his hinds, bars me the place of a brother, and, as much as in him lies, mines my gentility with my education. This is it, Adam, that grieves me; and the spirit of my father, which I think is within me, begins to mutiny against this servitude: I will no longer endure it, though yet I know no wise remedy how to avoid it. ADAM Yonder comes my master, your brother. ORLANDO Go apart, Adam, and thou shalt hear how he will shake me up. [Enter OLIVER] OLIVER Now, sir! what make you here? ORLANDO Nothing: I am not taught to make any thing. OLIVER What mar you then, sir? ORLANDO Marry, sir, I am helping you to mar that which God made, a poor unworthy brother of yours, with idleness. OLIVER Marry, sir, be better employed, and be naught awhile. ORLANDO Shall I keep your hogs and eat husks with them? What prodigal portion have I spent, that I should come to such penury? OLIVER Know you where your are, sir? ORLANDO O, sir, very well; here in your orchard. OLIVER Know you before whom, sir? ORLANDO Ay, better than him I am before knows me. I know you are my eldest brother; and, in the gentle condition of blood, you should so know me. The courtesy of nations allows you my better, in that you are the first-born; but the same tradition takes not away my blood, were there twenty brothers betwixt us: I have as much of my father in me as you; albeit, I confess, your coming before me is nearer to his reverence. OLIVER What, boy! ORLANDO Come, come, elder brother, you are too young in this. OLIVER Wilt thou lay hands on me, villain? ORLANDO I am no villain; I am the youngest son of Sir Rowland de Boys; he was my father, and he is thrice a villain that says such a father begot villains. Wert thou not my brother, I would not take this hand from thy throat till this other had pulled out thy tongue for saying so: thou hast railed on thyself. ADAM Sweet masters, be patient: for your father's remembrance, be at accord. OLIVER Let me go, I say. ORLANDO I will not, till I please: you shall hear me. My father charged you in his will to give me good education: you have trained me like a peasant, obscuring and hiding from me all gentleman-like qualities. The spirit of my father grows strong in me, and I will no longer endure it: therefore allow me such exercises as may become a gentleman, or give me the poor allottery my father left me by testament; with that I will go buy my fortunes. OLIVER And what wilt thou do? beg, when that is spent? Well, sir, get you in: I will not long be troubled with you; you shall have some part of your will: I pray you, leave me. ORLANDO I will no further offend you than becomes me for my good. OLIVER Get you with him, you old dog. ADAM Is 'old dog' my reward? Most true, I have lost my teeth in your service. God be with my old master! he would not have spoke such a word. [Exeunt ORLANDO and ADAM] OLIVER Is it even so? begin you to grow upon me? I will physic your rankness, and yet give no thousand crowns neither. Holla, Dennis! [Enter DENNIS] DENNIS Calls your worship? OLIVER Was not Charles, the duke's wrestler, here to speak with me? DENNIS So please you, he is here at the door and importunes access to you. OLIVER Call him in. [Exit DENNIS] 'Twill be a good way; and to-morrow the wrestling is. [Enter CHARLES] CHARLES Good morrow to your worship. OLIVER Good Monsieur Charles, what's the new news at the new court? CHARLES There's no news at the court, sir, but the old news: that is, the old duke is banished by his younger brother the new duke; and three or four loving lords have put themselves into voluntary exile with him, whose lands and revenues enrich the new duke; therefore he gives them good leave to wander. OLIVER Can you tell if Rosalind, the duke's daughter, be banished with her father? CHARLES O, no; for the duke's daughter, her cousin, so loves her, being ever from their cradles bred together, that she would have followed her exile, or have died to stay behind her. She is at the court, and no less beloved of her uncle than his own daughter; and never two ladies loved as they do. OLIVER Where will the old duke live? CHARLES They say he is already in the forest of Arden, and a many merry men with him; and there they live like the old Robin Hood of England: they say many young gentlemen flock to him every day, and fleet the time carelessly, as they did in the golden world. OLIVER What, you wrestle to-morrow before the new duke? CHARLES Marry, do I, sir; and I came to acquaint you with a matter. I am given, sir, secretly to understand that your younger brother Orlando hath a disposition to come in disguised against me to try a fall. To-morrow, sir, I wrestle for my credit; and he that escapes me without some broken limb shall acquit him well. Your brother is but young and tender; and, for your love, I would be loath to foil him, as I must, for my own honour, if he come in: therefore, out of my love to you, I came hither to acquaint you withal, that either you might stay him from his intendment or brook such disgrace well as he shall run into, in that it is a thing of his own search and altogether against my will. OLIVER Charles, I thank thee for thy love to me, which thou shalt find I will most kindly requite. I had myself notice of my brother's purpose herein and have by underhand means laboured to dissuade him from it, but he is resolute. I'll tell thee, Charles: it is the stubbornest young fellow of France, full of ambition, an envious emulator of every man's good parts, a secret and villanous contriver against me his natural brother: therefore use thy discretion; I had as lief thou didst break his neck as his finger. And thou wert best look to't; for if thou dost him any slight disgrace or if he do not mightily grace himself on thee, he will practise against thee by poison, entrap thee by some treacherous device and never leave thee till he hath ta'en thy life by some indirect means or other; for, I assure thee, and almost with tears I speak it, there is not one so young and so villanous this day living. I speak but brotherly of him; but should I anatomize him to thee as he is, I must blush and weep and thou must look pale and wonder. CHARLES I am heartily glad I came hither to you. If he come to-morrow, I'll give him his payment: if ever he go alone again, I'll never wrestle for prize more: and so God keep your worship! OLIVER Farewell, good Charles. [Exit CHARLES] Now will I stir this gamester: I hope I shall see an end of him; for my soul, yet I know not why, hates nothing more than he. Yet he's gentle, never schooled and yet learned, full of noble device, of all sorts enchantingly beloved, and indeed so much in the heart of the world, and especially of my own people, who best know him, that I am altogether misprised: but it shall not be so long; this wrestler shall clear all: nothing remains but that I kindle the boy thither; which now I'll go about. [Exit] AS YOU LIKE IT ACT I SCENE II Lawn before the Duke's palace. [Enter CELIA and ROSALIND] CELIA I pray thee, Rosalind, sweet my coz, be merry. ROSALIND Dear Celia, I show more mirth than I am mistress of; and would you yet I were merrier? Unless you could teach me to forget a banished father, you must not learn me how to remember any extraordinary pleasure. CELIA Herein I see thou lovest me not with the full weight that I love thee. If my uncle, thy banished father, had banished thy uncle, the duke my father, so thou hadst been still with me, I could have taught my love to take thy father for mine: so wouldst thou, if the truth of thy love to me were so righteously tempered as mine is to thee. ROSALIND Well, I will forget the condition of my estate, to rejoice in yours. CELIA You know my father hath no child but I, nor none is like to have: and, truly, when he dies, thou shalt be his heir, for what he hath taken away from thy father perforce, I will render thee again in affection; by mine honour, I will; and when I break that oath, let me turn monster: therefore, my sweet Rose, my dear Rose, be merry. ROSALIND From henceforth I will, coz, and devise sports. Let me see; what think you of falling in love? CELIA Marry, I prithee, do, to make sport withal: but love no man in good earnest; nor no further in sport neither than with safety of a pure blush thou mayst in honour come off again. ROSALIND What shall be our sport, then? CELIA Let us sit and mock the good housewife Fortune from her wheel, that her gifts may henceforth be bestowed equally. ROSALIND I would we could do so, for her benefits are mightily misplaced, and the bountiful blind woman doth most mistake in her gifts to women. CELIA 'Tis true; for those that she makes fair she scarce makes honest, and those that she makes honest she makes very ill-favouredly. ROSALIND Nay, now thou goest from Fortune's office to Nature's: Fortune reigns in gifts of the world, not in the lineaments of Nature. [Enter TOUCHSTONE] CELIA No? when Nature hath made a fair creature, may she not by Fortune fall into the fire? Though Nature hath given us wit to flout at Fortune, hath not Fortune sent in this fool to cut off the argument? ROSALIND Indeed, there is Fortune too hard for Nature, when Fortune makes Nature's natural the cutter-off of Nature's wit. CELIA Peradventure this is not Fortune's work neither, but Nature's; who perceiveth our natural wits too dull to reason of such goddesses and hath sent this natural for our whetstone; for always the dulness of the fool is the whetstone of the wits. How now, wit! whither wander you? TOUCHSTONE Mistress, you must come away to your father. CELIA Were you made the messenger? TOUCHSTONE No, by mine honour, but I was bid to come for you. ROSALIND Where learned you that oath, fool? TOUCHSTONE Of a certain knight that swore by his honour they were good pancakes and swore by his honour the mustard was naught: now I'll stand to it, the pancakes were naught and the mustard was good, and yet was not the knight forsworn. CELIA How prove you that, in the great heap of your knowledge? ROSALIND Ay, marry, now unmuzzle your wisdom. TOUCHSTONE Stand you both forth now: stroke your chins, and swear by your beards that I am a knave. CELIA By our beards, if we had them, thou art. TOUCHSTONE By my knavery, if I had it, then I were; but if you swear by that that is not, you are not forsworn: no more was this knight swearing by his honour, for he never had any; or if he had, he had sworn it away before ever he saw those pancakes or that mustard. CELIA Prithee, who is't that thou meanest? TOUCHSTONE One that old Frederick, your father, loves. CELIA My father's love is enough to honour him: enough! speak no more of him; you'll be whipped for taxation one of these days. TOUCHSTONE The more pity, that fools may not speak wisely what wise men do foolishly. CELIA By my troth, thou sayest true; for since the little wit that fools have was silenced, the little foolery that wise men have makes a great show. Here comes Monsieur Le Beau. ROSALIND With his mouth full of news. CELIA Which he will put on us, as pigeons feed their young. ROSALIND Then shall we be news-crammed. CELIA All the better; we shall be the more marketable. [Enter LE BEAU] Bon jour, Monsieur Le Beau: what's the news? LE BEAU Fair princess, you have lost much good sport. CELIA Sport! of what colour? LE BEAU What colour, madam! how shall I answer you? ROSALIND As wit and fortune will. TOUCHSTONE Or as the Destinies decree. CELIA Well said: that was laid on with a trowel. TOUCHSTONE Nay, if I keep not my rank,-- ROSALIND Thou losest thy old smell. LE BEAU You amaze me, ladies: I would have told you of good wrestling, which you have lost the sight of. ROSALIND You tell us the manner of the wrestling. LE BEAU I will tell you the beginning; and, if it please your ladyships, you may see the end; for the best is yet to do; and here, where you are, they are coming to perform it. CELIA Well, the beginning, that is dead and buried. LE BEAU There comes an old man and his three sons,-- CELIA I could match this beginning with an old tale. LE BEAU Three proper young men, of excellent growth and presence. ROSALIND With bills on their necks, 'Be it known unto all men by these presents.' LE BEAU The eldest of the three wrestled with Charles, the duke's wrestler; which Charles in a moment threw him and broke three of his ribs, that there is little hope of life in him: so he served the second, and so the third. Yonder they lie; the poor old man, their father, making such pitiful dole over them that all the beholders take his part with weeping. ROSALIND Alas! TOUCHSTONE But what is the sport, monsieur, that the ladies have lost? LE BEAU Why, this that I speak of. TOUCHSTONE Thus men may grow wiser every day: it is the first time that ever I heard breaking of ribs was sport for ladies. CELIA Or I, I promise thee. ROSALIND But is there any else longs to see this broken music in his sides? is there yet another dotes upon rib-breaking? Shall we see this wrestling, cousin? LE BEAU You must, if you stay here; for here is the place appointed for the wrestling, and they are ready to perform it. CELIA Yonder, sure, they are coming: let us now stay and see it. [Flourish. Enter DUKE FREDERICK, Lords, ORLANDO, CHARLES, and Attendants] DUKE FREDERICK Come on: since the youth will not be entreated, his own peril on his forwardness. ROSALIND Is yonder the man? LE BEAU Even he, madam. CELIA Alas, he is too young! yet he looks successfully. DUKE FREDERICK How now, daughter and cousin! are you crept hither to see the wrestling? ROSALIND Ay, my liege, so please you give us leave. DUKE FREDERICK You will take little delight in it, I can tell you; there is such odds in the man. In pity of the challenger's youth I would fain dissuade him, but he will not be entreated. Speak to him, ladies; see if you can move him. CELIA Call him hither, good Monsieur Le Beau. DUKE FREDERICK Do so: I'll not be by. LE BEAU Monsieur the challenger, the princesses call for you. ORLANDO I attend them with all respect and duty. ROSALIND Young man, have you challenged Charles the wrestler? ORLANDO No, fair princess; he is the general challenger: I come but in, as others do, to try with him the strength of my youth. CELIA Young gentleman, your spirits are too bold for your years. You have seen cruel proof of this man's strength: if you saw yourself with your eyes or knew yourself with your judgment, the fear of your adventure would counsel you to a more equal enterprise. We pray you, for your own sake, to embrace your own safety and give over this attempt. ROSALIND Do, young sir; your reputation shall not therefore be misprised: we will make it our suit to the duke that the wrestling might not go forward. ORLANDO I beseech you, punish me not with your hard thoughts; wherein I confess me much guilty, to deny so fair and excellent ladies any thing. But let your fair eyes and gentle wishes go with me to my trial: wherein if I be foiled, there is but one shamed that was never gracious; if killed, but one dead that was willing to be so: I shall do my friends no wrong, for I have none to lament me, the world no injury, for in it I have nothing; only in the world I fill up a place, which may be better supplied when I have made it empty. ROSALIND The little strength that I have, I would it were with you. CELIA And mine, to eke out hers. ROSALIND Fare you well: pray heaven I be deceived in you! CELIA Your heart's desires be with you! CHARLES Come, where is this young gallant that is so desirous to lie with his mother earth? ORLANDO Ready, sir; but his will hath in it a more modest working. DUKE FREDERICK You shall try but one fall. CHARLES No, I warrant your grace, you shall not entreat him to a second, that have so mightily persuaded him from a first. ORLANDO An you mean to mock me after, you should not have mocked me before: but come your ways. ROSALIND Now Hercules be thy speed, young man! CELIA I would I were invisible, to catch the strong fellow by the leg. [They wrestle] ROSALIND O excellent young man! CELIA If I had a thunderbolt in mine eye, I can tell who should down. [Shout. CHARLES is thrown] DUKE FREDERICK No more, no more. ORLANDO Yes, I beseech your grace: I am not yet well breathed. DUKE FREDERICK How dost thou, Charles? LE BEAU He cannot speak, my lord. DUKE FREDERICK Bear him away. What is thy name, young man? ORLANDO Orlando, my liege; the youngest son of Sir Rowland de Boys. DUKE FREDERICK I would thou hadst been son to some man else: The world esteem'd thy father honourable, But I did find him still mine enemy: Thou shouldst have better pleased me with this deed, Hadst thou descended from another house. But fare thee well; thou art a gallant youth: I would thou hadst told me of another father. [Exeunt DUKE FREDERICK, train, and LE BEAU] CELIA Were I my father, coz, would I do this? ORLANDO I am more proud to be Sir Rowland's son, His youngest son; and would not change that calling, To be adopted heir to Frederick. ROSALIND My father loved Sir Rowland as his soul, And all the world was of my father's mind: Had I before known this young man his son, I should have given him tears unto entreaties, Ere he should thus have ventured. CELIA Gentle cousin, Let us go thank him and encourage him: My father's rough and envious disposition Sticks me at heart. Sir, you have well deserved: If you do keep your promises in love But justly, as you have exceeded all promise, Your mistress shall be happy. ROSALIND Gentleman, [Giving him a chain from her neck] Wear this for me, one out of suits with fortune, That could give more, but that her hand lacks means. Shall we go, coz? CELIA Ay. Fare you well, fair gentleman. ORLANDO Can I not say, I thank you? My better parts Are all thrown down, and that which here stands up Is but a quintain, a mere lifeless block. ROSALIND He calls us back: my pride fell with my fortunes; I'll ask him what he would. Did you call, sir? Sir, you have wrestled well and overthrown More than your enemies. CELIA Will you go, coz? ROSALIND Have with you. Fare you well. [Exeunt ROSALIND and CELIA] ORLANDO What passion hangs these weights upon my tongue? I cannot speak to her, yet she urged conference. O poor Orlando, thou art overthrown! Or Charles or something weaker masters thee. [Re-enter LE BEAU] LE BEAU Good sir, I do in friendship counsel you To leave this place. Albeit you have deserved High commendation, true applause and love, Yet such is now the duke's condition That he misconstrues all that you have done. The duke is humorous; what he is indeed, More suits you to conceive than I to speak of. ORLANDO I thank you, sir: and, pray you, tell me this: Which of the two was daughter of the duke That here was at the wrestling? LE BEAU Neither his daughter, if we judge by manners; But yet indeed the lesser is his daughter The other is daughter to the banish'd duke, And here detain'd by her usurping uncle, To keep his daughter company; whose loves Are dearer than the natural bond of sisters. But I can tell you that of late this duke Hath ta'en displeasure 'gainst his gentle niece, Grounded upon no other argument But that the people praise her for her virtues And pity her for her good father's sake; And, on my life, his malice 'gainst the lady Will suddenly break forth. Sir, fare you well: Hereafter, in a better world than this, I shall desire more love and knowledge of you. ORLANDO I rest much bounden to you: fare you well. [Exit LE BEAU] Thus must I from the smoke into the smother; From tyrant duke unto a tyrant brother: But heavenly Rosalind! [Exit] AS YOU LIKE IT ACT I SCENE III A room in the palace. [Enter CELIA and ROSALIND] CELIA Why, cousin! why, Rosalind! Cupid have mercy! not a word? ROSALIND Not one to throw at a dog. CELIA No, thy words are too precious to be cast away upon curs; throw some of them at me; come, lame me with reasons. ROSALIND Then there were two cousins laid up; when the one should be lamed with reasons and the other mad without any. CELIA But is all this for your father? ROSALIND No, some of it is for my child's father. O, how full of briers is this working-day world! CELIA They are but burs, cousin, thrown upon thee in holiday foolery: if we walk not in the trodden paths our very petticoats will catch them. ROSALIND I could shake them off my coat: these burs are in my heart. CELIA Hem them away. ROSALIND I would try, if I could cry 'hem' and have him. CELIA Come, come, wrestle with thy affections. ROSALIND O, they take the part of a better wrestler than myself! CELIA O, a good wish upon you! you will try in time, in despite of a fall. But, turning these jests out of service, let us talk in good earnest: is it possible, on such a sudden, you should fall into so strong a liking with old Sir Rowland's youngest son? ROSALIND The duke my father loved his father dearly. CELIA Doth it therefore ensue that you should love his son dearly? By this kind of chase, I should hate him, for my father hated his father dearly; yet I hate not Orlando. ROSALIND No, faith, hate him not, for my sake. CELIA Why should I not? doth he not deserve well? ROSALIND Let me love him for that, and do you love him because I do. Look, here comes the duke. CELIA With his eyes full of anger. [Enter DUKE FREDERICK, with Lords] DUKE FREDERICK Mistress, dispatch you with your safest haste And get you from our court. ROSALIND Me, uncle? DUKE FREDERICK You, cousin Within these ten days if that thou be'st found So near our public court as twenty miles, Thou diest for it. ROSALIND I do beseech your grace, Let me the knowledge of my fault bear with me: If with myself I hold intelligence Or have acquaintance with mine own desires, If that I do not dream or be not frantic,-- As I do trust I am not--then, dear uncle, Never so much as in a thought unborn Did I offend your highness. DUKE FREDERICK Thus do all traitors: If their purgation did consist in words, They are as innocent as grace itself: Let it suffice thee that I trust thee not. ROSALIND Yet your mistrust cannot make me a traitor: Tell me whereon the likelihood depends. DUKE FREDERICK Thou art thy father's daughter; there's enough. ROSALIND So was I when your highness took his dukedom; So was I when your highness banish'd him: Treason is not inherited, my lord; Or, if we did derive it from our friends, What's that to me? my father was no traitor: Then, good my liege, mistake me not so much To think my poverty is treacherous. CELIA Dear sovereign, hear me speak. DUKE FREDERICK Ay, Celia; we stay'd her for your sake, Else had she with her father ranged along. CELIA I did not then entreat to have her stay; It was your pleasure and your own remorse: I was too young that time to value her; But now I know her: if she be a traitor, Why so am I; we still have slept together, Rose at an instant, learn'd, play'd, eat together, And wheresoever we went, like Juno's swans, Still we went coupled and inseparable. DUKE FREDERICK She is too subtle for thee; and her smoothness, Her very silence and her patience Speak to the people, and they pity her. Thou art a fool: she robs thee of thy name; And thou wilt show more bright and seem more virtuous When she is gone. Then open not thy lips: Firm and irrevocable is my doom Which I have pass'd upon her; she is banish'd. CELIA Pronounce that sentence then on me, my liege: I cannot live out of her company. DUKE FREDERICK You are a fool. You, niece, provide yourself: If you outstay the time, upon mine honour, And in the greatness of my word, you die. [Exeunt DUKE FREDERICK and Lords] CELIA O my poor Rosalind, whither wilt thou go? Wilt thou change fathers? I will give thee mine. I charge thee, be not thou more grieved than I am. ROSALIND I have more cause. CELIA Thou hast not, cousin; Prithee be cheerful: know'st thou not, the duke Hath banish'd me, his daughter? ROSALIND That he hath not. CELIA No, hath not? Rosalind lacks then the love Which teacheth thee that thou and I am one: Shall we be sunder'd? shall we part, sweet girl? No: let my father seek another heir. Therefore devise with me how we may fly, Whither to go and what to bear with us; And do not seek to take your change upon you, To bear your griefs yourself and leave me out; For, by this heaven, now at our sorrows pale, Say what thou canst, I'll go along with thee. ROSALIND Why, whither shall we go? CELIA To seek my uncle in the forest of Arden. ROSALIND Alas, what danger will it be to us, Maids as we are, to travel forth so far! Beauty provoketh thieves sooner than gold. CELIA I'll put myself in poor and mean attire And with a kind of umber smirch my face; The like do you: so shall we pass along And never stir assailants. ROSALIND Were it not better, Because that I am more than common tall, That I did suit me all points like a man? A gallant curtle-axe upon my thigh, A boar-spear in my hand; and--in my heart Lie there what hidden woman's fear there will-- We'll have a swashing and a martial outside, As many other mannish cowards have That do outface it with their semblances. CELIA What shall I call thee when thou art a man? ROSALIND I'll have no worse a name than Jove's own page; And therefore look you call me Ganymede. But what will you be call'd? CELIA Something that hath a reference to my state No longer Celia, but Aliena. ROSALIND But, cousin, what if we assay'd to steal The clownish fool out of your father's court? Would he not be a comfort to our travel? CELIA He'll go along o'er the wide world with me; Leave me alone to woo him. Let's away, And get our jewels and our wealth together, Devise the fittest time and safest way To hide us from pursuit that will be made After my flight. Now go we in content To liberty and not to banishment. [Exeunt] AS YOU LIKE IT ACT II SCENE I The Forest of Arden. [Enter DUKE SENIOR, AMIENS, and two or three Lords, like foresters] DUKE SENIOR Now, my co-mates and brothers in exile, Hath not old custom made this life more sweet Than that of painted pomp? Are not these woods More free from peril than the envious court? Here feel we but the penalty of Adam, The seasons' difference, as the icy fang And churlish chiding of the winter's wind, Which, when it bites and blows upon my body, Even till I shrink with cold, I smile and say 'This is no flattery: these are counsellors That feelingly persuade me what I am.' Sweet are the uses of adversity, Which, like the toad, ugly and venomous, Wears yet a precious jewel in his head; And this our life exempt from public haunt Finds tongues in trees, books in the running brooks, Sermons in stones and good in every thing. I would not change it. AMIENS Happy is your grace, That can translate the stubbornness of fortune Into so quiet and so sweet a style. DUKE SENIOR Come, shall we go and kill us venison? And yet it irks me the poor dappled fools, Being native burghers of this desert city, Should in their own confines with forked heads Have their round haunches gored. First Lord Indeed, my lord, The melancholy Jaques grieves at that, And, in that kind, swears you do more usurp Than doth your brother that hath banish'd you. To-day my Lord of Amiens and myself Did steal behind him as he lay along Under an oak whose antique root peeps out Upon the brook that brawls along this wood: To the which place a poor sequester'd stag, That from the hunter's aim had ta'en a hurt, Did come to languish, and indeed, my lord, The wretched animal heaved forth such groans That their discharge did stretch his leathern coat Almost to bursting, and the big round tears Coursed one another down his innocent nose In piteous chase; and thus the hairy fool Much marked of the melancholy Jaques, Stood on the extremest verge of the swift brook, Augmenting it with tears. DUKE SENIOR But what said Jaques? Did he not moralize this spectacle? First Lord O, yes, into a thousand similes. First, for his weeping into the needless stream; 'Poor deer,' quoth he, 'thou makest a testament As worldlings do, giving thy sum of more To that which had too much:' then, being there alone, Left and abandon'd of his velvet friends, ''Tis right:' quoth he; 'thus misery doth part The flux of company:' anon a careless herd, Full of the pasture, jumps along by him And never stays to greet him; 'Ay' quoth Jaques, 'Sweep on, you fat and greasy citizens; 'Tis just the fashion: wherefore do you look Upon that poor and broken bankrupt there?' Thus most invectively he pierceth through The body of the country, city, court, Yea, and of this our life, swearing that we Are mere usurpers, tyrants and what's worse, To fright the animals and to kill them up In their assign'd and native dwelling-place. DUKE SENIOR And did you leave him in this contemplation? Second Lord We did, my lord, weeping and commenting Upon the sobbing deer. DUKE SENIOR Show me the place: I love to cope him in these sullen fits, For then he's full of matter. First Lord I'll bring you to him straight. [Exeunt] AS YOU LIKE IT ACT II SCENE II A room in the palace. [Enter DUKE FREDERICK, with Lords] DUKE FREDERICK Can it be possible that no man saw them? It cannot be: some villains of my court Are of consent and sufferance in this. First Lord I cannot hear of any that did see her. The ladies, her attendants of her chamber, Saw her abed, and in the morning early They found the bed untreasured of their mistress. Second Lord My lord, the roynish clown, at whom so oft Your grace was wont to laugh, is also missing. Hisperia, the princess' gentlewoman, Confesses that she secretly o'erheard Your daughter and her cousin much commend The parts and graces of the wrestler That did but lately foil the sinewy Charles; And she believes, wherever they are gone, That youth is surely in their company. DUKE FREDERICK Send to his brother; fetch that gallant hither; If he be absent, bring his brother to me; I'll make him find him: do this suddenly, And let not search and inquisition quail To bring again these foolish runaways. [Exeunt] AS YOU LIKE IT ACT II SCENE III Before OLIVER'S house. [Enter ORLANDO and ADAM, meeting] ORLANDO Who's there? ADAM What, my young master? O, my gentle master! O my sweet master! O you memory Of old Sir Rowland! why, what make you here? Why are you virtuous? why do people love you? And wherefore are you gentle, strong and valiant? Why would you be so fond to overcome The bonny priser of the humorous duke? Your praise is come too swiftly home before you. Know you not, master, to some kind of men Their graces serve them but as enemies? No more do yours: your virtues, gentle master, Are sanctified and holy traitors to you. O, what a world is this, when what is comely Envenoms him that bears it! ORLANDO Why, what's the matter? ADAM O unhappy youth! Come not within these doors; within this roof The enemy of all your graces lives: Your brother--no, no brother; yet the son-- Yet not the son, I will not call him son Of him I was about to call his father-- Hath heard your praises, and this night he means To burn the lodging where you use to lie And you within it: if he fail of that, He will have other means to cut you off. I overheard him and his practises. This is no place; this house is but a butchery: Abhor it, fear it, do not enter it. ORLANDO Why, whither, Adam, wouldst thou have me go? ADAM No matter whither, so you come not here. ORLANDO What, wouldst thou have me go and beg my food? Or with a base and boisterous sword enforce A thievish living on the common road? This I must do, or know not what to do: Yet this I will not do, do how I can; I rather will subject me to the malice Of a diverted blood and bloody brother. ADAM But do not so. I have five hundred crowns, The thrifty hire I saved under your father, Which I did store to be my foster-nurse When service should in my old limbs lie lame And unregarded age in corners thrown: Take that, and He that doth the ravens feed, Yea, providently caters for the sparrow, Be comfort to my age! Here is the gold; And all this I give you. Let me be your servant: Though I look old, yet I am strong and lusty; For in my youth I never did apply Hot and rebellious liquors in my blood, Nor did not with unbashful forehead woo The means of weakness and debility; Therefore my age is as a lusty winter, Frosty, but kindly: let me go with you; I'll do the service of a younger man In all your business and necessities. ORLANDO O good old man, how well in thee appears The constant service of the antique world, When service sweat for duty, not for meed! Thou art not for the fashion of these times, Where none will sweat but for promotion, And having that, do choke their service up Even with the having: it is not so with thee. But, poor old man, thou prunest a rotten tree, That cannot so much as a blossom yield In lieu of all thy pains and husbandry But come thy ways; well go along together, And ere we have thy youthful wages spent, We'll light upon some settled low content. ADAM Master, go on, and I will follow thee, To the last gasp, with truth and loyalty. From seventeen years till now almost fourscore Here lived I, but now live here no more. At seventeen years many their fortunes seek; But at fourscore it is too late a week: Yet fortune cannot recompense me better Than to die well and not my master's debtor. [Exeunt] AS YOU LIKE IT ACT II SCENE IV The Forest of Arden. [Enter ROSALIND for Ganymede, CELIA for Aliena, and TOUCHSTONE] ROSALIND O Jupiter, how weary are my spirits! TOUCHSTONE I care not for my spirits, if my legs were not weary. ROSALIND I could find in my heart to disgrace my man's apparel and to cry like a woman; but I must comfort the weaker vessel, as doublet and hose ought to show itself courageous to petticoat: therefore courage, good Aliena! CELIA I pray you, bear with me; I cannot go no further. TOUCHSTONE For my part, I had rather bear with you than bear you; yet I should bear no cross if I did bear you, for I think you have no money in your purse. ROSALIND Well, this is the forest of Arden. TOUCHSTONE Ay, now am I in Arden; the more fool I; when I was at home, I was in a better place: but travellers must be content. ROSALIND Ay, be so, good Touchstone. [Enter CORIN and SILVIUS] Look you, who comes here; a young man and an old in solemn talk. CORIN That is the way to make her scorn you still. SILVIUS O Corin, that thou knew'st how I do love her! CORIN I partly guess; for I have loved ere now. SILVIUS No, Corin, being old, thou canst not guess, Though in thy youth thou wast as true a lover As ever sigh'd upon a midnight pillow: But if thy love were ever like to mine-- As sure I think did never man love so-- How many actions most ridiculous Hast thou been drawn to by thy fantasy? CORIN Into a thousand that I have forgotten. SILVIUS O, thou didst then ne'er love so heartily! If thou remember'st not the slightest folly That ever love did make thee run into, Thou hast not loved: Or if thou hast not sat as I do now, Wearying thy hearer in thy mistress' praise, Thou hast not loved: Or if thou hast not broke from company Abruptly, as my passion now makes me, Thou hast not loved. O Phebe, Phebe, Phebe! [Exit] ROSALIND Alas, poor shepherd! searching of thy wound, I have by hard adventure found mine own. TOUCHSTONE And I mine. I remember, when I was in love I broke my sword upon a stone and bid him take that for coming a-night to Jane Smile; and I remember the kissing of her batlet and the cow's dugs that her pretty chopt hands had milked; and I remember the wooing of a peascod instead of her, from whom I took two cods and, giving her them again, said with weeping tears 'Wear these for my sake.' We that are true lovers run into strange capers; but as all is mortal in nature, so is all nature in love mortal in folly. ROSALIND Thou speakest wiser than thou art ware of. TOUCHSTONE Nay, I shall ne'er be ware of mine own wit till I break my shins against it. ROSALIND Jove, Jove! this shepherd's passion Is much upon my fashion. TOUCHSTONE And mine; but it grows something stale with me. CELIA I pray you, one of you question yond man If he for gold will give us any food: I faint almost to death. TOUCHSTONE Holla, you clown! ROSALIND Peace, fool: he's not thy kinsman. CORIN Who calls? TOUCHSTONE Your betters, sir. CORIN Else are they very wretched. ROSALIND Peace, I say. Good even to you, friend. CORIN And to you, gentle sir, and to you all. ROSALIND I prithee, shepherd, if that love or gold Can in this desert place buy entertainment, Bring us where we may rest ourselves and feed: Here's a young maid with travel much oppress'd And faints for succor. CORIN Fair sir, I pity her And wish, for her sake more than for mine own, My fortunes were more able to relieve her; But I am shepherd to another man And do not shear the fleeces that I graze: My master is of churlish disposition And little recks to find the way to heaven By doing deeds of hospitality: Besides, his cote, his flocks and bounds of feed Are now on sale, and at our sheepcote now, By reason of his absence, there is nothing That you will feed on; but what is, come see. And in my voice most welcome shall you be. ROSALIND What is he that shall buy his flock and pasture? CORIN That young swain that you saw here but erewhile, That little cares for buying any thing. ROSALIND I pray thee, if it stand with honesty, Buy thou the cottage, pasture and the flock, And thou shalt have to pay for it of us. CELIA And we will mend thy wages. I like this place. And willingly could waste my time in it. CORIN Assuredly the thing is to be sold: Go with me: if you like upon report The soil, the profit and this kind of life, I will your very faithful feeder be And buy it with your gold right suddenly. [Exeunt] AS YOU LIKE IT ACT II SCENE V The Forest. [Enter AMIENS, JAQUES, and others] SONG. AMIENS Under the greenwood tree Who loves to lie with me, And turn his merry note Unto the sweet bird's throat, Come hither, come hither, come hither: Here shall he see No enemy But winter and rough weather. JAQUES More, more, I prithee, more. AMIENS It will make you melancholy, Monsieur Jaques. JAQUES I thank it. More, I prithee, more. I can suck melancholy out of a song, as a weasel sucks eggs. More, I prithee, more. AMIENS My voice is ragged: I know I cannot please you. JAQUES I do not desire you to please me; I do desire you to sing. Come, more; another stanzo: call you 'em stanzos? AMIENS What you will, Monsieur Jaques. JAQUES Nay, I care not for their names; they owe me nothing. Will you sing? AMIENS More at your request than to please myself. JAQUES Well then, if ever I thank any man, I'll thank you; but that they call compliment is like the encounter of two dog-apes, and when a man thanks me heartily, methinks I have given him a penny and he renders me the beggarly thanks. Come, sing; and you that will not, hold your tongues. AMIENS Well, I'll end the song. Sirs, cover the while; the duke will drink under this tree. He hath been all this day to look you. JAQUES And I have been all this day to avoid him. He is too disputable for my company: I think of as many matters as he, but I give heaven thanks and make no boast of them. Come, warble, come. SONG. Who doth ambition shun [All together here] And loves to live i' the sun, Seeking the food he eats And pleased with what he gets, Come hither, come hither, come hither: Here shall he see No enemy But winter and rough weather. JAQUES I'll give you a verse to this note that I made yesterday in despite of my invention. AMIENS And I'll sing it. JAQUES Thus it goes:-- If it do come to pass That any man turn ass, Leaving his wealth and ease, A stubborn will to please, Ducdame, ducdame, ducdame: Here shall he see Gross fools as he, An if he will come to me. AMIENS What's that 'ducdame'? JAQUES 'Tis a Greek invocation, to call fools into a circle. I'll go sleep, if I can; if I cannot, I'll rail against all the first-born of Egypt. AMIENS And I'll go seek the duke: his banquet is prepared. [Exeunt severally] AS YOU LIKE IT ACT II SCENE VI The forest. [Enter ORLANDO and ADAM] ADAM Dear master, I can go no further. O, I die for food! Here lie I down, and measure out my grave. Farewell, kind master. ORLANDO Why, how now, Adam! no greater heart in thee? Live a little; comfort a little; cheer thyself a little. If this uncouth forest yield any thing savage, I will either be food for it or bring it for food to thee. Thy conceit is nearer death than thy powers. For my sake be comfortable; hold death awhile at the arm's end: I will here be with thee presently; and if I bring thee not something to eat, I will give thee leave to die: but if thou diest before I come, thou art a mocker of my labour. Well said! thou lookest cheerly, and I'll be with thee quickly. Yet thou liest in the bleak air: come, I will bear thee to some shelter; and thou shalt not die for lack of a dinner, if there live any thing in this desert. Cheerly, good Adam! [Exeunt] AS YOU LIKE IT ACT II SCENE VII The forest. [A table set out. Enter DUKE SENIOR, AMIENS, and Lords like outlaws] DUKE SENIOR I think he be transform'd into a beast; For I can no where find him like a man. First Lord My lord, he is but even now gone hence: Here was he merry, hearing of a song. DUKE SENIOR If he, compact of jars, grow musical, We shall have shortly discord in the spheres. Go, seek him: tell him I would speak with him. [Enter JAQUES] First Lord He saves my labour by his own approach. DUKE SENIOR Why, how now, monsieur! what a life is this, That your poor friends must woo your company? What, you look merrily! JAQUES A fool, a fool! I met a fool i' the forest, A motley fool; a miserable world! As I do live by food, I met a fool Who laid him down and bask'd him in the sun, And rail'd on Lady Fortune in good terms, In good set terms and yet a motley fool. 'Good morrow, fool,' quoth I. 'No, sir,' quoth he, 'Call me not fool till heaven hath sent me fortune:' And then he drew a dial from his poke, And, looking on it with lack-lustre eye, Says very wisely, 'It is ten o'clock: Thus we may see,' quoth he, 'how the world wags: 'Tis but an hour ago since it was nine, And after one hour more 'twill be eleven; And so, from hour to hour, we ripe and ripe, And then, from hour to hour, we rot and rot; And thereby hangs a tale.' When I did hear The motley fool thus moral on the time, My lungs began to crow like chanticleer, That fools should be so deep-contemplative, And I did laugh sans intermission An hour by his dial. O noble fool! A worthy fool! Motley's the only wear. DUKE SENIOR What fool is this? JAQUES O worthy fool! One that hath been a courtier, And says, if ladies be but young and fair, They have the gift to know it: and in his brain, Which is as dry as the remainder biscuit After a voyage, he hath strange places cramm'd With observation, the which he vents In mangled forms. O that I were a fool! I am ambitious for a motley coat. DUKE SENIOR Thou shalt have one. JAQUES It is my only suit; Provided that you weed your better judgments Of all opinion that grows rank in them That I am wise. I must have liberty Withal, as large a charter as the wind, To blow on whom I please; for so fools have; And they that are most galled with my folly, They most must laugh. And why, sir, must they so? The 'why' is plain as way to parish church: He that a fool doth very wisely hit Doth very foolishly, although he smart, Not to seem senseless of the bob: if not, The wise man's folly is anatomized Even by the squandering glances of the fool. Invest me in my motley; give me leave To speak my mind, and I will through and through Cleanse the foul body of the infected world, If they will patiently receive my medicine. DUKE SENIOR Fie on thee! I can tell what thou wouldst do. JAQUES What, for a counter, would I do but good? DUKE SENIOR Most mischievous foul sin, in chiding sin: For thou thyself hast been a libertine, As sensual as the brutish sting itself; And all the embossed sores and headed evils, That thou with licence of free foot hast caught, Wouldst thou disgorge into the general world. JAQUES Why, who cries out on pride, That can therein tax any private party? Doth it not flow as hugely as the sea, Till that the weary very means do ebb? What woman in the city do I name, When that I say the city-woman bears The cost of princes on unworthy shoulders? Who can come in and say that I mean her, When such a one as she such is her neighbour? Or what is he of basest function That says his bravery is not of my cost, Thinking that I mean him, but therein suits His folly to the mettle of my speech? There then; how then? what then? Let me see wherein My tongue hath wrong'd him: if it do him right, Then he hath wrong'd himself; if he be free, Why then my taxing like a wild-goose flies, Unclaim'd of any man. But who comes here? [Enter ORLANDO, with his sword drawn] ORLANDO Forbear, and eat no more. JAQUES Why, I have eat none yet. ORLANDO Nor shalt not, till necessity be served. JAQUES Of what kind should this cock come of? DUKE SENIOR Art thou thus bolden'd, man, by thy distress, Or else a rude despiser of good manners, That in civility thou seem'st so empty? ORLANDO You touch'd my vein at first: the thorny point Of bare distress hath ta'en from me the show Of smooth civility: yet am I inland bred And know some nurture. But forbear, I say: He dies that touches any of this fruit Till I and my affairs are answered. JAQUES An you will not be answered with reason, I must die. DUKE SENIOR What would you have? Your gentleness shall force More than your force move us to gentleness. ORLANDO I almost die for food; and let me have it. DUKE SENIOR Sit down and feed, and welcome to our table. ORLANDO Speak you so gently? Pardon me, I pray you: I thought that all things had been savage here; And therefore put I on the countenance Of stern commandment. But whate'er you are That in this desert inaccessible, Under the shade of melancholy boughs, Lose and neglect the creeping hours of time If ever you have look'd on better days, If ever been where bells have knoll'd to church, If ever sat at any good man's feast, If ever from your eyelids wiped a tear And know what 'tis to pity and be pitied, Let gentleness my strong enforcement be: In the which hope I blush, and hide my sword. DUKE SENIOR True is it that we have seen better days, And have with holy bell been knoll'd to church And sat at good men's feasts and wiped our eyes Of drops that sacred pity hath engender'd: And therefore sit you down in gentleness And take upon command what help we have That to your wanting may be minister'd. ORLANDO Then but forbear your food a little while, Whiles, like a doe, I go to find my fawn And give it food. There is an old poor man, Who after me hath many a weary step Limp'd in pure love: till he be first sufficed, Oppress'd with two weak evils, age and hunger, I will not touch a bit. DUKE SENIOR Go find him out, And we will nothing waste till you return. ORLANDO I thank ye; and be blest for your good comfort! [Exit] DUKE SENIOR Thou seest we are not all alone unhappy: This wide and universal theatre Presents more woeful pageants than the scene Wherein we play in. JAQUES All the world's a stage, And all the men and women merely players: They have their exits and their entrances; And one man in his time plays many parts, His acts being seven ages. At first the infant, Mewling and puking in the nurse's arms. And then the whining school-boy, with his satchel And shining morning face, creeping like snail Unwillingly to school. And then the lover, Sighing like furnace, with a woeful ballad Made to his mistress' eyebrow. Then a soldier, Full of strange oaths and bearded like the pard, Jealous in honour, sudden and quick in quarrel, Seeking the bubble reputation Even in the cannon's mouth. And then the justice, In fair round belly with good capon lined, With eyes severe and beard of formal cut, Full of wise saws and modern instances; And so he plays his part. The sixth age shifts Into the lean and slipper'd pantaloon, With spectacles on nose and pouch on side, His youthful hose, well saved, a world too wide For his shrunk shank; and his big manly voice, Turning again toward childish treble, pipes And whistles in his sound. Last scene of all, That ends this strange eventful history, Is second childishness and mere oblivion, Sans teeth, sans eyes, sans taste, sans everything. [Re-enter ORLANDO, with ADAM] DUKE SENIOR Welcome. Set down your venerable burthen, And let him feed. ORLANDO I thank you most for him. ADAM So had you need: I scarce can speak to thank you for myself. DUKE SENIOR Welcome; fall to: I will not trouble you As yet, to question you about your fortunes. Give us some music; and, good cousin, sing. SONG. AMIENS Blow, blow, thou winter wind. Thou art not so unkind As man's ingratitude; Thy tooth is not so keen, Because thou art not seen, Although thy breath be rude. Heigh-ho! sing, heigh-ho! unto the green holly: Most friendship is feigning, most loving mere folly: Then, heigh-ho, the holly! This life is most jolly. Freeze, freeze, thou bitter sky, That dost not bite so nigh As benefits forgot: Though thou the waters warp, Thy sting is not so sharp As friend remember'd not. Heigh-ho! sing, &c. DUKE SENIOR If that you were the good Sir Rowland's son, As you have whisper'd faithfully you were, And as mine eye doth his effigies witness Most truly limn'd and living in your face, Be truly welcome hither: I am the duke That loved your father: the residue of your fortune, Go to my cave and tell me. Good old man, Thou art right welcome as thy master is. Support him by the arm. Give me your hand, And let me all your fortunes understand. [Exeunt] AS YOU LIKE IT ACT III SCENE I A room in the palace. [Enter DUKE FREDERICK, Lords, and OLIVER] DUKE FREDERICK Not see him since? Sir, sir, that cannot be: But were I not the better part made mercy, I should not seek an absent argument Of my revenge, thou present. But look to it: Find out thy brother, wheresoe'er he is; Seek him with candle; bring him dead or living Within this twelvemonth, or turn thou no more To seek a living in our territory. Thy lands and all things that thou dost call thine Worth seizure do we seize into our hands, Till thou canst quit thee by thy brothers mouth Of what we think against thee. OLIVER O that your highness knew my heart in this! I never loved my brother in my life. DUKE FREDERICK More villain thou. Well, push him out of doors; And let my officers of such a nature Make an extent upon his house and lands: Do this expediently and turn him going. [Exeunt] AS YOU LIKE IT ACT III SCENE II The forest. [Enter ORLANDO, with a paper] ORLANDO Hang there, my verse, in witness of my love: And thou, thrice-crowned queen of night, survey With thy chaste eye, from thy pale sphere above, Thy huntress' name that my full life doth sway. O Rosalind! these trees shall be my books And in their barks my thoughts I'll character; That every eye which in this forest looks Shall see thy virtue witness'd every where. Run, run, Orlando; carve on every tree The fair, the chaste and unexpressive she. [Exit] [Enter CORIN and TOUCHSTONE] CORIN And how like you this shepherd's life, Master Touchstone? TOUCHSTONE Truly, shepherd, in respect of itself, it is a good life, but in respect that it is a shepherd's life, it is naught. In respect that it is solitary, I like it very well; but in respect that it is private, it is a very vile life. Now, in respect it is in the fields, it pleaseth me well; but in respect it is not in the court, it is tedious. As is it a spare life, look you, it fits my humour well; but as there is no more plenty in it, it goes much against my stomach. Hast any philosophy in thee, shepherd? CORIN No more but that I know the more one sickens the worse at ease he is; and that he that wants money, means and content is without three good friends; that the property of rain is to wet and fire to burn; that good pasture makes fat sheep, and that a great cause of the night is lack of the sun; that he that hath learned no wit by nature nor art may complain of good breeding or comes of a very dull kindred. TOUCHSTONE Such a one is a natural philosopher. Wast ever in court, shepherd? CORIN No, truly. TOUCHSTONE Then thou art damned. CORIN Nay, I hope. TOUCHSTONE Truly, thou art damned like an ill-roasted egg, all on one side. CORIN For not being at court? Your reason. TOUCHSTONE Why, if thou never wast at court, thou never sawest good manners; if thou never sawest good manners, then thy manners must be wicked; and wickedness is sin, and sin is damnation. Thou art in a parlous state, shepherd. CORIN Not a whit, Touchstone: those that are good manners at the court are as ridiculous in the country as the behavior of the country is most mockable at the court. You told me you salute not at the court, but you kiss your hands: that courtesy would be uncleanly, if courtiers were shepherds. TOUCHSTONE Instance, briefly; come, instance. CORIN Why, we are still handling our ewes, and their fells, you know, are greasy. TOUCHSTONE Why, do not your courtier's hands sweat? and is not the grease of a mutton as wholesome as the sweat of a man? Shallow, shallow. A better instance, I say; come. CORIN Besides, our hands are hard. TOUCHSTONE Your lips will feel them the sooner. Shallow again. A more sounder instance, come. CORIN And they are often tarred over with the surgery of our sheep: and would you have us kiss tar? The courtier's hands are perfumed with civet. TOUCHSTONE Most shallow man! thou worms-meat, in respect of a good piece of flesh indeed! Learn of the wise, and perpend: civet is of a baser birth than tar, the very uncleanly flux of a cat. Mend the instance, shepherd. CORIN You have too courtly a wit for me: I'll rest. TOUCHSTONE Wilt thou rest damned? God help thee, shallow man! God make incision in thee! thou art raw. CORIN Sir, I am a true labourer: I earn that I eat, get that I wear, owe no man hate, envy no man's happiness, glad of other men's good, content with my harm, and the greatest of my pride is to see my ewes graze and my lambs suck. TOUCHSTONE That is another simple sin in you, to bring the ewes and the rams together and to offer to get your living by the copulation of cattle; to be bawd to a bell-wether, and to betray a she-lamb of a twelvemonth to a crooked-pated, old, cuckoldly ram, out of all reasonable match. If thou beest not damned for this, the devil himself will have no shepherds; I cannot see else how thou shouldst 'scape. CORIN Here comes young Master Ganymede, my new mistress's brother. [Enter ROSALIND, with a paper, reading] ROSALIND From the east to western Ind, No jewel is like Rosalind. Her worth, being mounted on the wind, Through all the world bears Rosalind. All the pictures fairest lined Are but black to Rosalind. Let no fair be kept in mind But the fair of Rosalind. TOUCHSTONE I'll rhyme you so eight years together, dinners and suppers and sleeping-hours excepted: it is the right butter-women's rank to market. ROSALIND Out, fool! TOUCHSTONE For a taste: If a hart do lack a hind, Let him seek out Rosalind. If the cat will after kind, So be sure will Rosalind. Winter garments must be lined, So must slender Rosalind. They that reap must sheaf and bind; Then to cart with Rosalind. Sweetest nut hath sourest rind, Such a nut is Rosalind. He that sweetest rose will find Must find love's prick and Rosalind. This is the very false gallop of verses: why do you infect yourself with them? ROSALIND Peace, you dull fool! I found them on a tree. TOUCHSTONE Truly, the tree yields bad fruit. ROSALIND I'll graff it with you, and then I shall graff it with a medlar: then it will be the earliest fruit i' the country; for you'll be rotten ere you be half ripe, and that's the right virtue of the medlar. TOUCHSTONE You have said; but whether wisely or no, let the forest judge. [Enter CELIA, with a writing] ROSALIND Peace! Here comes my sister, reading: stand aside. CELIA [Reads] Why should this a desert be? For it is unpeopled? No: Tongues I'll hang on every tree, That shall civil sayings show: Some, how brief the life of man Runs his erring pilgrimage, That the stretching of a span Buckles in his sum of age; Some, of violated vows 'Twixt the souls of friend and friend: But upon the fairest boughs, Or at every sentence end, Will I Rosalinda write, Teaching all that read to know The quintessence of every sprite Heaven would in little show. Therefore Heaven Nature charged That one body should be fill'd With all graces wide-enlarged: Nature presently distill'd Helen's cheek, but not her heart, Cleopatra's majesty, Atalanta's better part, Sad Lucretia's modesty. Thus Rosalind of many parts By heavenly synod was devised, Of many faces, eyes and hearts, To have the touches dearest prized. Heaven would that she these gifts should have, And I to live and die her slave. ROSALIND O most gentle pulpiter! what tedious homily of love have you wearied your parishioners withal, and never cried 'Have patience, good people!' CELIA How now! back, friends! Shepherd, go off a little. Go with him, sirrah. TOUCHSTONE Come, shepherd, let us make an honourable retreat; though not with bag and baggage, yet with scrip and scrippage. [Exeunt CORIN and TOUCHSTONE] CELIA Didst thou hear these verses? ROSALIND O, yes, I heard them all, and more too; for some of them had in them more feet than the verses would bear. CELIA That's no matter: the feet might bear the verses. ROSALIND Ay, but the feet were lame and could not bear themselves without the verse and therefore stood lamely in the verse. CELIA But didst thou hear without wondering how thy name should be hanged and carved upon these trees? ROSALIND I was seven of the nine days out of the wonder before you came; for look here what I found on a palm-tree. I was never so be-rhymed since Pythagoras' time, that I was an Irish rat, which I can hardly remember. CELIA Trow you who hath done this? ROSALIND Is it a man? CELIA And a chain, that you once wore, about his neck. Change you colour? ROSALIND I prithee, who? CELIA O Lord, Lord! it is a hard matter for friends to meet; but mountains may be removed with earthquakes and so encounter. ROSALIND Nay, but who is it? CELIA Is it possible? ROSALIND Nay, I prithee now with most petitionary vehemence, tell me who it is. CELIA O wonderful, wonderful, and most wonderful wonderful! and yet again wonderful, and after that, out of all hooping! ROSALIND Good my complexion! dost thou think, though I am caparisoned like a man, I have a doublet and hose in my disposition? One inch of delay more is a South-sea of discovery; I prithee, tell me who is it quickly, and speak apace. I would thou couldst stammer, that thou mightst pour this concealed man out of thy mouth, as wine comes out of a narrow- mouthed bottle, either too much at once, or none at all. I prithee, take the cork out of thy mouth that may drink thy tidings. CELIA So you may put a man in your belly. ROSALIND Is he of God's making? What manner of man? Is his head worth a hat, or his chin worth a beard? CELIA Nay, he hath but a little beard. ROSALIND Why, God will send more, if the man will be thankful: let me stay the growth of his beard, if thou delay me not the knowledge of his chin. CELIA It is young Orlando, that tripped up the wrestler's heels and your heart both in an instant. ROSALIND Nay, but the devil take mocking: speak, sad brow and true maid. CELIA I' faith, coz, 'tis he. ROSALIND Orlando? CELIA Orlando. ROSALIND Alas the day! what shall I do with my doublet and hose? What did he when thou sawest him? What said he? How looked he? Wherein went he? What makes him here? Did he ask for me? Where remains he? How parted he with thee? and when shalt thou see him again? Answer me in one word. CELIA You must borrow me Gargantua's mouth first: 'tis a word too great for any mouth of this age's size. To say ay and no to these particulars is more than to answer in a catechism. ROSALIND But doth he know that I am in this forest and in man's apparel? Looks he as freshly as he did the day he wrestled? CELIA It is as easy to count atomies as to resolve the propositions of a lover; but take a taste of my finding him, and relish it with good observance. I found him under a tree, like a dropped acorn. ROSALIND It may well be called Jove's tree, when it drops forth such fruit. CELIA Give me audience, good madam. ROSALIND Proceed. CELIA There lay he, stretched along, like a wounded knight. ROSALIND Though it be pity to see such a sight, it well becomes the ground. CELIA Cry 'holla' to thy tongue, I prithee; it curvets unseasonably. He was furnished like a hunter. ROSALIND O, ominous! he comes to kill my heart. CELIA I would sing my song without a burden: thou bringest me out of tune. ROSALIND Do you not know I am a woman? when I think, I must speak. Sweet, say on. CELIA You bring me out. Soft! comes he not here? [Enter ORLANDO and JAQUES] ROSALIND 'Tis he: slink by, and note him. JAQUES I thank you for your company; but, good faith, I had as lief have been myself alone. ORLANDO And so had I; but yet, for fashion sake, I thank you too for your society. JAQUES God be wi' you: let's meet as little as we can. ORLANDO I do desire we may be better strangers. JAQUES I pray you, mar no more trees with writing love-songs in their barks. ORLANDO I pray you, mar no more of my verses with reading them ill-favouredly. JAQUES Rosalind is your love's name? ORLANDO Yes, just. JAQUES I do not like her name. ORLANDO There was no thought of pleasing you when she was christened. JAQUES What stature is she of? ORLANDO Just as high as my heart. JAQUES You are full of pretty answers. Have you not been acquainted with goldsmiths' wives, and conned them out of rings? ORLANDO Not so; but I answer you right painted cloth, from whence you have studied your questions. JAQUES You have a nimble wit: I think 'twas made of Atalanta's heels. Will you sit down with me? and we two will rail against our mistress the world and all our misery. ORLANDO I will chide no breather in the world but myself, against whom I know most faults. JAQUES The worst fault you have is to be in love. ORLANDO 'Tis a fault I will not change for your best virtue. I am weary of you. JAQUES By my troth, I was seeking for a fool when I found you. ORLANDO He is drowned in the brook: look but in, and you shall see him. JAQUES There I shall see mine own figure. ORLANDO Which I take to be either a fool or a cipher. JAQUES I'll tarry no longer with you: farewell, good Signior Love. ORLANDO I am glad of your departure: adieu, good Monsieur Melancholy. [Exit JAQUES] ROSALIND [Aside to CELIA] I will speak to him, like a saucy lackey and under that habit play the knave with him. Do you hear, forester? ORLANDO Very well: what would you? ROSALIND I pray you, what is't o'clock? ORLANDO You should ask me what time o' day: there's no clock in the forest. ROSALIND Then there is no true lover in the forest; else sighing every minute and groaning every hour would detect the lazy foot of Time as well as a clock. ORLANDO And why not the swift foot of Time? had not that been as proper? ROSALIND By no means, sir: Time travels in divers paces with divers persons. I'll tell you who Time ambles withal, who Time trots withal, who Time gallops withal and who he stands still withal. ORLANDO I prithee, who doth he trot withal? ROSALIND Marry, he trots hard with a young maid between the contract of her marriage and the day it is solemnized: if the interim be but a se'nnight, Time's pace is so hard that it seems the length of seven year. ORLANDO Who ambles Time withal? ROSALIND With a priest that lacks Latin and a rich man that hath not the gout, for the one sleeps easily because he cannot study, and the other lives merrily because he feels no pain, the one lacking the burden of lean and wasteful learning, the other knowing no burden of heavy tedious penury; these Time ambles withal. ORLANDO Who doth he gallop withal? ROSALIND With a thief to the gallows, for though he go as softly as foot can fall, he thinks himself too soon there. ORLANDO Who stays it still withal? ROSALIND With lawyers in the vacation, for they sleep between term and term and then they perceive not how Time moves. ORLANDO Where dwell you, pretty youth? ROSALIND With this shepherdess, my sister; here in the skirts of the forest, like fringe upon a petticoat. ORLANDO Are you native of this place? ROSALIND As the cony that you see dwell where she is kindled. ORLANDO Your accent is something finer than you could purchase in so removed a dwelling. ROSALIND I have been told so of many: but indeed an old religious uncle of mine taught me to speak, who was in his youth an inland man; one that knew courtship too well, for there he fell in love. I have heard him read many lectures against it, and I thank God I am not a woman, to be touched with so many giddy offences as he hath generally taxed their whole sex withal. ORLANDO Can you remember any of the principal evils that he laid to the charge of women? ROSALIND There were none principal; they were all like one another as half-pence are, every one fault seeming monstrous till his fellow fault came to match it. ORLANDO I prithee, recount some of them. ROSALIND No, I will not cast away my physic but on those that are sick. There is a man haunts the forest, that abuses our young plants with carving 'Rosalind' on their barks; hangs odes upon hawthorns and elegies on brambles, all, forsooth, deifying the name of Rosalind: if I could meet that fancy-monger I would give him some good counsel, for he seems to have the quotidian of love upon him. ORLANDO I am he that is so love-shaked: I pray you tell me your remedy. ROSALIND There is none of my uncle's marks upon you: he taught me how to know a man in love; in which cage of rushes I am sure you are not prisoner. ORLANDO What were his marks? ROSALIND A lean cheek, which you have not, a blue eye and sunken, which you have not, an unquestionable spirit, which you have not, a beard neglected, which you have not; but I pardon you for that, for simply your having in beard is a younger brother's revenue: then your hose should be ungartered, your bonnet unbanded, your sleeve unbuttoned, your shoe untied and every thing about you demonstrating a careless desolation; but you are no such man; you are rather point-device in your accoutrements as loving yourself than seeming the lover of any other. ORLANDO Fair youth, I would I could make thee believe I love. ROSALIND Me believe it! you may as soon make her that you love believe it; which, I warrant, she is apter to do than to confess she does: that is one of the points in the which women still give the lie to their consciences. But, in good sooth, are you he that hangs the verses on the trees, wherein Rosalind is so admired? ORLANDO I swear to thee, youth, by the white hand of Rosalind, I am that he, that unfortunate he. ROSALIND But are you so much in love as your rhymes speak? ORLANDO Neither rhyme nor reason can express how much. ROSALIND Love is merely a madness, and, I tell you, deserves as well a dark house and a whip as madmen do: and the reason why they are not so punished and cured is, that the lunacy is so ordinary that the whippers are in love too. Yet I profess curing it by counsel. ORLANDO Did you ever cure any so? ROSALIND Yes, one, and in this manner. He was to imagine me his love, his mistress; and I set him every day to woo me: at which time would I, being but a moonish youth, grieve, be effeminate, changeable, longing and liking, proud, fantastical, apish, shallow, inconstant, full of tears, full of smiles, for every passion something and for no passion truly any thing, as boys and women are for the most part cattle of this colour; would now like him, now loathe him; then entertain him, then forswear him; now weep for him, then spit at him; that I drave my suitor from his mad humour of love to a living humour of madness; which was, to forswear the full stream of the world, and to live in a nook merely monastic. And thus I cured him; and this way will I take upon me to wash your liver as clean as a sound sheep's heart, that there shall not be one spot of love in't. ORLANDO I would not be cured, youth. ROSALIND I would cure you, if you would but call me Rosalind and come every day to my cote and woo me. ORLANDO Now, by the faith of my love, I will: tell me where it is. ROSALIND Go with me to it and I'll show it you and by the way you shall tell me where in the forest you live. Will you go? ORLANDO With all my heart, good youth. ROSALIND Nay you must call me Rosalind. Come, sister, will you go? [Exeunt] AS YOU LIKE IT ACT III SCENE III The forest. [Enter TOUCHSTONE and AUDREY; JAQUES behind] TOUCHSTONE Come apace, good Audrey: I will fetch up your goats, Audrey. And how, Audrey? am I the man yet? doth my simple feature content you? AUDREY Your features! Lord warrant us! what features! TOUCHSTONE I am here with thee and thy goats, as the most capricious poet, honest Ovid, was among the Goths. JAQUES [Aside] O knowledge ill-inhabited, worse than Jove in a thatched house! TOUCHSTONE When a man's verses cannot be understood, nor a man's good wit seconded with the forward child Understanding, it strikes a man more dead than a great reckoning in a little room. Truly, I would the gods had made thee poetical. AUDREY I do not know what 'poetical' is: is it honest in deed and word? is it a true thing? TOUCHSTONE No, truly; for the truest poetry is the most feigning; and lovers are given to poetry, and what they swear in poetry may be said as lovers they do feign. AUDREY Do you wish then that the gods had made me poetical? TOUCHSTONE I do, truly; for thou swearest to me thou art honest: now, if thou wert a poet, I might have some hope thou didst feign. AUDREY Would you not have me honest? TOUCHSTONE No, truly, unless thou wert hard-favoured; for honesty coupled to beauty is to have honey a sauce to sugar. JAQUES [Aside] A material fool! AUDREY Well, I am not fair; and therefore I pray the gods make me honest. TOUCHSTONE Truly, and to cast away honesty upon a foul slut were to put good meat into an unclean dish. AUDREY I am not a slut, though I thank the gods I am foul. TOUCHSTONE Well, praised be the gods for thy foulness! sluttishness may come hereafter. But be it as it may be, I will marry thee, and to that end I have been with Sir Oliver Martext, the vicar of the next village, who hath promised to meet me in this place of the forest and to couple us. JAQUES [Aside] I would fain see this meeting. AUDREY Well, the gods give us joy! TOUCHSTONE Amen. A man may, if he were of a fearful heart, stagger in this attempt; for here we have no temple but the wood, no assembly but horn-beasts. But what though? Courage! As horns are odious, they are necessary. It is said, 'many a man knows no end of his goods:' right; many a man has good horns, and knows no end of them. Well, that is the dowry of his wife; 'tis none of his own getting. Horns? Even so. Poor men alone? No, no; the noblest deer hath them as huge as the rascal. Is the single man therefore blessed? No: as a walled town is more worthier than a village, so is the forehead of a married man more honourable than the bare brow of a bachelor; and by how much defence is better than no skill, by so much is a horn more precious than to want. Here comes Sir Oliver. [Enter SIR OLIVER MARTEXT] Sir Oliver Martext, you are well met: will you dispatch us here under this tree, or shall we go with you to your chapel? SIR OLIVER MARTEXT Is there none here to give the woman? TOUCHSTONE I will not take her on gift of any man. SIR OLIVER MARTEXT Truly, she must be given, or the marriage is not lawful. JAQUES [Advancing] Proceed, proceed I'll give her. TOUCHSTONE Good even, good Master What-ye-call't: how do you, sir? You are very well met: God 'ild you for your last company: I am very glad to see you: even a toy in hand here, sir: nay, pray be covered. JAQUES Will you be married, motley? TOUCHSTONE As the ox hath his bow, sir, the horse his curb and the falcon her bells, so man hath his desires; and as pigeons bill, so wedlock would be nibbling. JAQUES And will you, being a man of your breeding, be married under a bush like a beggar? Get you to church, and have a good priest that can tell you what marriage is: this fellow will but join you together as they join wainscot; then one of you will prove a shrunk panel and, like green timber, warp, warp. TOUCHSTONE [Aside] I am not in the mind but I were better to be married of him than of another: for he is not like to marry me well; and not being well married, it will be a good excuse for me hereafter to leave my wife. JAQUES Go thou with me, and let me counsel thee. TOUCHSTONE 'Come, sweet Audrey: We must be married, or we must live in bawdry. Farewell, good Master Oliver: not,-- O sweet Oliver, O brave Oliver, Leave me not behind thee: but,-- Wind away, Begone, I say, I will not to wedding with thee. [Exeunt JAQUES, TOUCHSTONE and AUDREY] SIR OLIVER MARTEXT 'Tis no matter: ne'er a fantastical knave of them all shall flout me out of my calling. [Exit] AS YOU LIKE IT ACT III SCENE IV The forest. [Enter ROSALIND and CELIA] ROSALIND Never talk to me; I will weep. CELIA Do, I prithee; but yet have the grace to consider that tears do not become a man. ROSALIND But have I not cause to weep? CELIA As good cause as one would desire; therefore weep. ROSALIND His very hair is of the dissembling colour. CELIA Something browner than Judas's marry, his kisses are Judas's own children. ROSALIND I' faith, his hair is of a good colour. CELIA An excellent colour: your chestnut was ever the only colour. ROSALIND And his kissing is as full of sanctity as the touch of holy bread. CELIA He hath bought a pair of cast lips of Diana: a nun of winter's sisterhood kisses not more religiously; the very ice of chastity is in them. ROSALIND But why did he swear he would come this morning, and comes not? CELIA Nay, certainly, there is no truth in him. ROSALIND Do you think so? CELIA Yes; I think he is not a pick-purse nor a horse-stealer, but for his verity in love, I do think him as concave as a covered goblet or a worm-eaten nut. ROSALIND Not true in love? CELIA Yes, when he is in; but I think he is not in. ROSALIND You have heard him swear downright he was. CELIA 'Was' is not 'is:' besides, the oath of a lover is no stronger than the word of a tapster; they are both the confirmer of false reckonings. He attends here in the forest on the duke your father. ROSALIND I met the duke yesterday and had much question with him: he asked me of what parentage I was; I told him, of as good as he; so he laughed and let me go. But what talk we of fathers, when there is such a man as Orlando? CELIA O, that's a brave man! he writes brave verses, speaks brave words, swears brave oaths and breaks them bravely, quite traverse, athwart the heart of his lover; as a puisny tilter, that spurs his horse but on one side, breaks his staff like a noble goose: but all's brave that youth mounts and folly guides. Who comes here? [Enter CORIN] CORIN Mistress and master, you have oft inquired After the shepherd that complain'd of love, Who you saw sitting by me on the turf, Praising the proud disdainful shepherdess That was his mistress. CELIA Well, and what of him? CORIN If you will see a pageant truly play'd, Between the pale complexion of true love And the red glow of scorn and proud disdain, Go hence a little and I shall conduct you, If you will mark it. ROSALIND O, come, let us remove: The sight of lovers feedeth those in love. Bring us to this sight, and you shall say I'll prove a busy actor in their play. [Exeunt] AS YOU LIKE IT ACT III SCENE V Another part of the forest. [Enter SILVIUS and PHEBE] SILVIUS Sweet Phebe, do not scorn me; do not, Phebe; Say that you love me not, but say not so In bitterness. The common executioner, Whose heart the accustom'd sight of death makes hard, Falls not the axe upon the humbled neck But first begs pardon: will you sterner be Than he that dies and lives by bloody drops? [Enter ROSALIND, CELIA, and CORIN, behind] PHEBE I would not be thy executioner: I fly thee, for I would not injure thee. Thou tell'st me there is murder in mine eye: 'Tis pretty, sure, and very probable, That eyes, that are the frail'st and softest things, Who shut their coward gates on atomies, Should be call'd tyrants, butchers, murderers! Now I do frown on thee with all my heart; And if mine eyes can wound, now let them kill thee: Now counterfeit to swoon; why now fall down; Or if thou canst not, O, for shame, for shame, Lie not, to say mine eyes are murderers! Now show the wound mine eye hath made in thee: Scratch thee but with a pin, and there remains Some scar of it; lean but upon a rush, The cicatrice and capable impressure Thy palm some moment keeps; but now mine eyes, Which I have darted at thee, hurt thee not, Nor, I am sure, there is no force in eyes That can do hurt. SILVIUS O dear Phebe, If ever,--as that ever may be near,-- You meet in some fresh cheek the power of fancy, Then shall you know the wounds invisible That love's keen arrows make. PHEBE But till that time Come not thou near me: and when that time comes, Afflict me with thy mocks, pity me not; As till that time I shall not pity thee. ROSALIND And why, I pray you? Who might be your mother, That you insult, exult, and all at once, Over the wretched? What though you have no beauty,-- As, by my faith, I see no more in you Than without candle may go dark to bed-- Must you be therefore proud and pitiless? Why, what means this? Why do you look on me? I see no more in you than in the ordinary Of nature's sale-work. 'Od's my little life, I think she means to tangle my eyes too! No, faith, proud mistress, hope not after it: 'Tis not your inky brows, your black silk hair, Your bugle eyeballs, nor your cheek of cream, That can entame my spirits to your worship. You foolish shepherd, wherefore do you follow her, Like foggy south puffing with wind and rain? You are a thousand times a properer man Than she a woman: 'tis such fools as you That makes the world full of ill-favour'd children: 'Tis not her glass, but you, that flatters her; And out of you she sees herself more proper Than any of her lineaments can show her. But, mistress, know yourself: down on your knees, And thank heaven, fasting, for a good man's love: For I must tell you friendly in your ear, Sell when you can: you are not for all markets: Cry the man mercy; love him; take his offer: Foul is most foul, being foul to be a scoffer. So take her to thee, shepherd: fare you well. PHEBE Sweet youth, I pray you, chide a year together: I had rather hear you chide than this man woo. ROSALIND He's fallen in love with your foulness and she'll fall in love with my anger. If it be so, as fast as she answers thee with frowning looks, I'll sauce her with bitter words. Why look you so upon me? PHEBE For no ill will I bear you. ROSALIND I pray you, do not fall in love with me, For I am falser than vows made in wine: Besides, I like you not. If you will know my house, 'Tis at the tuft of olives here hard by. Will you go, sister? Shepherd, ply her hard. Come, sister. Shepherdess, look on him better, And be not proud: though all the world could see, None could be so abused in sight as he. Come, to our flock. [Exeunt ROSALIND, CELIA and CORIN] PHEBE Dead Shepherd, now I find thy saw of might, 'Who ever loved that loved not at first sight?' SILVIUS Sweet Phebe,-- PHEBE Ha, what say'st thou, Silvius? SILVIUS Sweet Phebe, pity me. PHEBE Why, I am sorry for thee, gentle Silvius. SILVIUS Wherever sorrow is, relief would be: If you do sorrow at my grief in love, By giving love your sorrow and my grief Were both extermined. PHEBE Thou hast my love: is not that neighbourly? SILVIUS I would have you. PHEBE Why, that were covetousness. Silvius, the time was that I hated thee, And yet it is not that I bear thee love; But since that thou canst talk of love so well, Thy company, which erst was irksome to me, I will endure, and I'll employ thee too: But do not look for further recompense Than thine own gladness that thou art employ'd. SILVIUS So holy and so perfect is my love, And I in such a poverty of grace, That I shall think it a most plenteous crop To glean the broken ears after the man That the main harvest reaps: loose now and then A scatter'd smile, and that I'll live upon. PHEBE Know'st now the youth that spoke to me erewhile? SILVIUS Not very well, but I have met him oft; And he hath bought the cottage and the bounds That the old carlot once was master of. PHEBE Think not I love him, though I ask for him: 'Tis but a peevish boy; yet he talks well; But what care I for words? yet words do well When he that speaks them pleases those that hear. It is a pretty youth: not very pretty: But, sure, he's proud, and yet his pride becomes him: He'll make a proper man: the best thing in him Is his complexion; and faster than his tongue Did make offence his eye did heal it up. He is not very tall; yet for his years he's tall: His leg is but so so; and yet 'tis well: There was a pretty redness in his lip, A little riper and more lusty red Than that mix'd in his cheek; 'twas just the difference Between the constant red and mingled damask. There be some women, Silvius, had they mark'd him In parcels as I did, would have gone near To fall in love with him; but, for my part, I love him not nor hate him not; and yet I have more cause to hate him than to love him: For what had he to do to chide at me? He said mine eyes were black and my hair black: And, now I am remember'd, scorn'd at me: I marvel why I answer'd not again: But that's all one; omittance is no quittance. I'll write to him a very taunting letter, And thou shalt bear it: wilt thou, Silvius? SILVIUS Phebe, with all my heart. PHEBE I'll write it straight; The matter's in my head and in my heart: I will be bitter with him and passing short. Go with me, Silvius. [Exeunt] AS YOU LIKE IT ACT IV SCENE I The forest. [Enter ROSALIND, CELIA, and JAQUES] JAQUES I prithee, pretty youth, let me be better acquainted with thee. ROSALIND They say you are a melancholy fellow. JAQUES I am so; I do love it better than laughing. ROSALIND Those that are in extremity of either are abominable fellows and betray themselves to every modern censure worse than drunkards. JAQUES Why, 'tis good to be sad and say nothing. ROSALIND Why then, 'tis good to be a post. JAQUES I have neither the scholar's melancholy, which is emulation, nor the musician's, which is fantastical, nor the courtier's, which is proud, nor the soldier's, which is ambitious, nor the lawyer's, which is politic, nor the lady's, which is nice, nor the lover's, which is all these: but it is a melancholy of mine own, compounded of many simples, extracted from many objects, and indeed the sundry's contemplation of my travels, in which my often rumination wraps me m a most humorous sadness. ROSALIND A traveller! By my faith, you have great reason to be sad: I fear you have sold your own lands to see other men's; then, to have seen much and to have nothing, is to have rich eyes and poor hands. JAQUES Yes, I have gained my experience. ROSALIND And your experience makes you sad: I had rather have a fool to make me merry than experience to make me sad; and to travel for it too! [Enter ORLANDO] ORLANDO Good day and happiness, dear Rosalind! JAQUES Nay, then, God be wi' you, an you talk in blank verse. [Exit] ROSALIND Farewell, Monsieur Traveller: look you lisp and wear strange suits, disable all the benefits of your own country, be out of love with your nativity and almost chide God for making you that countenance you are, or I will scarce think you have swam in a gondola. Why, how now, Orlando! where have you been all this while? You a lover! An you serve me such another trick, never come in my sight more. ORLANDO My fair Rosalind, I come within an hour of my promise. ROSALIND Break an hour's promise in love! He that will divide a minute into a thousand parts and break but a part of the thousandth part of a minute in the affairs of love, it may be said of him that Cupid hath clapped him o' the shoulder, but I'll warrant him heart-whole. ORLANDO Pardon me, dear Rosalind. ROSALIND Nay, an you be so tardy, come no more in my sight: I had as lief be wooed of a snail. ORLANDO Of a snail? ROSALIND Ay, of a snail; for though he comes slowly, he carries his house on his head; a better jointure, I think, than you make a woman: besides he brings his destiny with him. ORLANDO What's that? ROSALIND Why, horns, which such as you are fain to be beholding to your wives for: but he comes armed in his fortune and prevents the slander of his wife. ORLANDO Virtue is no horn-maker; and my Rosalind is virtuous. ROSALIND And I am your Rosalind. CELIA It pleases him to call you so; but he hath a Rosalind of a better leer than you. ROSALIND Come, woo me, woo me, for now I am in a holiday humour and like enough to consent. What would you say to me now, an I were your very very Rosalind? ORLANDO I would kiss before I spoke. ROSALIND Nay, you were better speak first, and when you were gravelled for lack of matter, you might take occasion to kiss. Very good orators, when they are out, they will spit; and for lovers lacking--God warn us!--matter, the cleanliest shift is to kiss. ORLANDO How if the kiss be denied? ROSALIND Then she puts you to entreaty, and there begins new matter. ORLANDO Who could be out, being before his beloved mistress? ROSALIND Marry, that should you, if I were your mistress, or I should think my honesty ranker than my wit. ORLANDO What, of my suit? ROSALIND Not out of your apparel, and yet out of your suit. Am not I your Rosalind? ORLANDO I take some joy to say you are, because I would be talking of her. ROSALIND Well in her person I say I will not have you. ORLANDO Then in mine own person I die. ROSALIND No, faith, die by attorney. The poor world is almost six thousand years old, and in all this time there was not any man died in his own person, videlicit, in a love-cause. Troilus had his brains dashed out with a Grecian club; yet he did what he could to die before, and he is one of the patterns of love. Leander, he would have lived many a fair year, though Hero had turned nun, if it had not been for a hot midsummer night; for, good youth, he went but forth to wash him in the Hellespont and being taken with the cramp was drowned and the foolish coroners of that age found it was 'Hero of Sestos.' But these are all lies: men have died from time to time and worms have eaten them, but not for love. ORLANDO I would not have my right Rosalind of this mind, for, I protest, her frown might kill me. ROSALIND By this hand, it will not kill a fly. But come, now I will be your Rosalind in a more coming-on disposition, and ask me what you will. I will grant it. ORLANDO Then love me, Rosalind. ROSALIND Yes, faith, will I, Fridays and Saturdays and all. ORLANDO And wilt thou have me? ROSALIND Ay, and twenty such. ORLANDO What sayest thou? ROSALIND Are you not good? ORLANDO I hope so. ROSALIND Why then, can one desire too much of a good thing? Come, sister, you shall be the priest and marry us. Give me your hand, Orlando. What do you say, sister? ORLANDO Pray thee, marry us. CELIA I cannot say the words. ROSALIND You must begin, 'Will you, Orlando--' CELIA Go to. Will you, Orlando, have to wife this Rosalind? ORLANDO I will. ROSALIND Ay, but when? ORLANDO Why now; as fast as she can marry us. ROSALIND Then you must say 'I take thee, Rosalind, for wife.' ORLANDO I take thee, Rosalind, for wife. ROSALIND I might ask you for your commission; but I do take thee, Orlando, for my husband: there's a girl goes before the priest; and certainly a woman's thought runs before her actions. ORLANDO So do all thoughts; they are winged. ROSALIND Now tell me how long you would have her after you have possessed her. ORLANDO For ever and a day. ROSALIND Say 'a day,' without the 'ever.' No, no, Orlando; men are April when they woo, December when they wed: maids are May when they are maids, but the sky changes when they are wives. I will be more jealous of thee than a Barbary cock-pigeon over his hen, more clamorous than a parrot against rain, more new-fangled than an ape, more giddy in my desires than a monkey: I will weep for nothing, like Diana in the fountain, and I will do that when you are disposed to be merry; I will laugh like a hyen, and that when thou art inclined to sleep. ORLANDO But will my Rosalind do so? ROSALIND By my life, she will do as I do. ORLANDO O, but she is wise. ROSALIND Or else she could not have the wit to do this: the wiser, the waywarder: make the doors upon a woman's wit and it will out at the casement; shut that and 'twill out at the key-hole; stop that, 'twill fly with the smoke out at the chimney. ORLANDO A man that had a wife with such a wit, he might say 'Wit, whither wilt?' ROSALIND Nay, you might keep that cheque for it till you met your wife's wit going to your neighbour's bed. ORLANDO And what wit could wit have to excuse that? ROSALIND Marry, to say she came to seek you there. You shall never take her without her answer, unless you take her without her tongue. O, that woman that cannot make her fault her husband's occasion, let her never nurse her child herself, for she will breed it like a fool! ORLANDO For these two hours, Rosalind, I will leave thee. ROSALIND Alas! dear love, I cannot lack thee two hours. ORLANDO I must attend the duke at dinner: by two o'clock I will be with thee again. ROSALIND Ay, go your ways, go your ways; I knew what you would prove: my friends told me as much, and I thought no less: that flattering tongue of yours won me: 'tis but one cast away, and so, come, death! Two o'clock is your hour? ORLANDO Ay, sweet Rosalind. ROSALIND By my troth, and in good earnest, and so God mend me, and by all pretty oaths that are not dangerous, if you break one jot of your promise or come one minute behind your hour, I will think you the most pathetical break-promise and the most hollow lover and the most unworthy of her you call Rosalind that may be chosen out of the gross band of the unfaithful: therefore beware my censure and keep your promise. ORLANDO With no less religion than if thou wert indeed my Rosalind: so adieu. ROSALIND Well, Time is the old justice that examines all such offenders, and let Time try: adieu. [Exit ORLANDO] CELIA You have simply misused our sex in your love-prate: we must have your doublet and hose plucked over your head, and show the world what the bird hath done to her own nest. ROSALIND O coz, coz, coz, my pretty little coz, that thou didst know how many fathom deep I am in love! But it cannot be sounded: my affection hath an unknown bottom, like the bay of Portugal. CELIA Or rather, bottomless, that as fast as you pour affection in, it runs out. ROSALIND No, that same wicked bastard of Venus that was begot of thought, conceived of spleen and born of madness, that blind rascally boy that abuses every one's eyes because his own are out, let him be judge how deep I am in love. I'll tell thee, Aliena, I cannot be out of the sight of Orlando: I'll go find a shadow and sigh till he come. CELIA And I'll sleep. [Exeunt] AS YOU LIKE IT ACT IV SCENE II The forest. [Enter JAQUES, Lords, and Foresters] JAQUES Which is he that killed the deer? A Lord Sir, it was I. JAQUES Let's present him to the duke, like a Roman conqueror; and it would do well to set the deer's horns upon his head, for a branch of victory. Have you no song, forester, for this purpose? Forester Yes, sir. JAQUES Sing it: 'tis no matter how it be in tune, so it make noise enough. SONG. Forester What shall he have that kill'd the deer? His leather skin and horns to wear. Then sing him home; [The rest shall bear this burden] Take thou no scorn to wear the horn; It was a crest ere thou wast born: Thy father's father wore it, And thy father bore it: The horn, the horn, the lusty horn Is not a thing to laugh to scorn. [Exeunt] AS YOU LIKE IT ACT IV SCENE III The forest. [Enter ROSALIND and CELIA] ROSALIND How say you now? Is it not past two o'clock? and here much Orlando! CELIA I warrant you, with pure love and troubled brain, he hath ta'en his bow and arrows and is gone forth to sleep. Look, who comes here. [Enter SILVIUS] SILVIUS My errand is to you, fair youth; My gentle Phebe bid me give you this: I know not the contents; but, as I guess By the stern brow and waspish action Which she did use as she was writing of it, It bears an angry tenor: pardon me: I am but as a guiltless messenger. ROSALIND Patience herself would startle at this letter And play the swaggerer; bear this, bear all: She says I am not fair, that I lack manners; She calls me proud, and that she could not love me, Were man as rare as phoenix. 'Od's my will! Her love is not the hare that I do hunt: Why writes she so to me? Well, shepherd, well, This is a letter of your own device. SILVIUS No, I protest, I know not the contents: Phebe did write it. ROSALIND Come, come, you are a fool And turn'd into the extremity of love. I saw her hand: she has a leathern hand. A freestone-colour'd hand; I verily did think That her old gloves were on, but 'twas her hands: She has a huswife's hand; but that's no matter: I say she never did invent this letter; This is a man's invention and his hand. SILVIUS Sure, it is hers. ROSALIND Why, 'tis a boisterous and a cruel style. A style for-challengers; why, she defies me, Like Turk to Christian: women's gentle brain Could not drop forth such giant-rude invention Such Ethiope words, blacker in their effect Than in their countenance. Will you hear the letter? SILVIUS So please you, for I never heard it yet; Yet heard too much of Phebe's cruelty. ROSALIND She Phebes me: mark how the tyrant writes. [Reads] Art thou god to shepherd turn'd, That a maiden's heart hath burn'd? Can a woman rail thus? SILVIUS Call you this railing? ROSALIND [Reads] Why, thy godhead laid apart, Warr'st thou with a woman's heart? Did you ever hear such railing? Whiles the eye of man did woo me, That could do no vengeance to me. Meaning me a beast. If the scorn of your bright eyne Have power to raise such love in mine, Alack, in me what strange effect Would they work in mild aspect! Whiles you chid me, I did love; How then might your prayers move! He that brings this love to thee Little knows this love in me: And by him seal up thy mind; Whether that thy youth and kind Will the faithful offer take Of me and all that I can make; Or else by him my love deny, And then I'll study how to die. SILVIUS Call you this chiding? CELIA Alas, poor shepherd! ROSALIND Do you pity him? no, he deserves no pity. Wilt thou love such a woman? What, to make thee an instrument and play false strains upon thee! not to be endured! Well, go your way to her, for I see love hath made thee a tame snake, and say this to her: that if she love me, I charge her to love thee; if she will not, I will never have her unless thou entreat for her. If you be a true lover, hence, and not a word; for here comes more company. [Exit SILVIUS] [Enter OLIVER] OLIVER Good morrow, fair ones: pray you, if you know, Where in the purlieus of this forest stands A sheep-cote fenced about with olive trees? CELIA West of this place, down in the neighbour bottom: The rank of osiers by the murmuring stream Left on your right hand brings you to the place. But at this hour the house doth keep itself; There's none within. OLIVER If that an eye may profit by a tongue, Then should I know you by description; Such garments and such years: 'The boy is fair, Of female favour, and bestows himself Like a ripe sister: the woman low And browner than her brother.' Are not you The owner of the house I did inquire for? CELIA It is no boast, being ask'd, to say we are. OLIVER Orlando doth commend him to you both, And to that youth he calls his Rosalind He sends this bloody napkin. Are you he? ROSALIND I am: what must we understand by this? OLIVER Some of my shame; if you will know of me What man I am, and how, and why, and where This handkercher was stain'd. CELIA I pray you, tell it. OLIVER When last the young Orlando parted from you He left a promise to return again Within an hour, and pacing through the forest, Chewing the food of sweet and bitter fancy, Lo, what befell! he threw his eye aside, And mark what object did present itself: Under an oak, whose boughs were moss'd with age And high top bald with dry antiquity, A wretched ragged man, o'ergrown with hair, Lay sleeping on his back: about his neck A green and gilded snake had wreathed itself, Who with her head nimble in threats approach'd The opening of his mouth; but suddenly, Seeing Orlando, it unlink'd itself, And with indented glides did slip away Into a bush: under which bush's shade A lioness, with udders all drawn dry, Lay couching, head on ground, with catlike watch, When that the sleeping man should stir; for 'tis The royal disposition of that beast To prey on nothing that doth seem as dead: This seen, Orlando did approach the man And found it was his brother, his elder brother. CELIA O, I have heard him speak of that same brother; And he did render him the most unnatural That lived amongst men. OLIVER And well he might so do, For well I know he was unnatural. ROSALIND But, to Orlando: did he leave him there, Food to the suck'd and hungry lioness? OLIVER Twice did he turn his back and purposed so; But kindness, nobler ever than revenge, And nature, stronger than his just occasion, Made him give battle to the lioness, Who quickly fell before him: in which hurtling From miserable slumber I awaked. CELIA Are you his brother? ROSALIND Wast you he rescued? CELIA Was't you that did so oft contrive to kill him? OLIVER 'Twas I; but 'tis not I I do not shame To tell you what I was, since my conversion So sweetly tastes, being the thing I am. ROSALIND But, for the bloody napkin? OLIVER By and by. When from the first to last betwixt us two Tears our recountments had most kindly bathed, As how I came into that desert place:-- In brief, he led me to the gentle duke, Who gave me fresh array and entertainment, Committing me unto my brother's love; Who led me instantly unto his cave, There stripp'd himself, and here upon his arm The lioness had torn some flesh away, Which all this while had bled; and now he fainted And cried, in fainting, upon Rosalind. Brief, I recover'd him, bound up his wound; And, after some small space, being strong at heart, He sent me hither, stranger as I am, To tell this story, that you might excuse His broken promise, and to give this napkin Dyed in his blood unto the shepherd youth That he in sport doth call his Rosalind. [ROSALIND swoons] CELIA Why, how now, Ganymede! sweet Ganymede! OLIVER Many will swoon when they do look on blood. CELIA There is more in it. Cousin Ganymede! OLIVER Look, he recovers. ROSALIND I would I were at home. CELIA We'll lead you thither. I pray you, will you take him by the arm? OLIVER Be of good cheer, youth: you a man! you lack a man's heart. ROSALIND I do so, I confess it. Ah, sirrah, a body would think this was well counterfeited! I pray you, tell your brother how well I counterfeited. Heigh-ho! OLIVER This was not counterfeit: there is too great testimony in your complexion that it was a passion of earnest. ROSALIND Counterfeit, I assure you. OLIVER Well then, take a good heart and counterfeit to be a man. ROSALIND So I do: but, i' faith, I should have been a woman by right. CELIA Come, you look paler and paler: pray you, draw homewards. Good sir, go with us. OLIVER That will I, for I must bear answer back How you excuse my brother, Rosalind. ROSALIND I shall devise something: but, I pray you, commend my counterfeiting to him. Will you go? [Exeunt] AS YOU LIKE IT ACT V SCENE I The forest. [Enter TOUCHSTONE and AUDREY] TOUCHSTONE We shall find a time, Audrey; patience, gentle Audrey. AUDREY Faith, the priest was good enough, for all the old gentleman's saying. TOUCHSTONE A most wicked Sir Oliver, Audrey, a most vile Martext. But, Audrey, there is a youth here in the forest lays claim to you. AUDREY Ay, I know who 'tis; he hath no interest in me in the world: here comes the man you mean. TOUCHSTONE It is meat and drink to me to see a clown: by my troth, we that have good wits have much to answer for; we shall be flouting; we cannot hold. [Enter WILLIAM] WILLIAM Good even, Audrey. AUDREY God ye good even, William. WILLIAM And good even to you, sir. TOUCHSTONE Good even, gentle friend. Cover thy head, cover thy head; nay, prithee, be covered. How old are you, friend? WILLIAM Five and twenty, sir. TOUCHSTONE A ripe age. Is thy name William? WILLIAM William, sir. TOUCHSTONE A fair name. Wast born i' the forest here? WILLIAM Ay, sir, I thank God. TOUCHSTONE 'Thank God;' a good answer. Art rich? WILLIAM Faith, sir, so so. TOUCHSTONE 'So so' is good, very good, very excellent good; and yet it is not; it is but so so. Art thou wise? WILLIAM Ay, sir, I have a pretty wit. TOUCHSTONE Why, thou sayest well. I do now remember a saying, 'The fool doth think he is wise, but the wise man knows himself to be a fool.' The heathen philosopher, when he had a desire to eat a grape, would open his lips when he put it into his mouth; meaning thereby that grapes were made to eat and lips to open. You do love this maid? WILLIAM I do, sir. TOUCHSTONE Give me your hand. Art thou learned? WILLIAM No, sir. TOUCHSTONE Then learn this of me: to have, is to have; for it is a figure in rhetoric that drink, being poured out of a cup into a glass, by filling the one doth empty the other; for all your writers do consent that ipse is he: now, you are not ipse, for I am he. WILLIAM Which he, sir? TOUCHSTONE He, sir, that must marry this woman. Therefore, you clown, abandon,--which is in the vulgar leave,--the society,--which in the boorish is company,--of this female,--which in the common is woman; which together is, abandon the society of this female, or, clown, thou perishest; or, to thy better understanding, diest; or, to wit I kill thee, make thee away, translate thy life into death, thy liberty into bondage: I will deal in poison with thee, or in bastinado, or in steel; I will bandy with thee in faction; I will o'errun thee with policy; I will kill thee a hundred and fifty ways: therefore tremble and depart. AUDREY Do, good William. WILLIAM God rest you merry, sir. [Exit] [Enter CORIN] CORIN Our master and mistress seeks you; come, away, away! TOUCHSTONE Trip, Audrey! trip, Audrey! I attend, I attend. [Exeunt] AS YOU LIKE IT ACT V SCENE II The forest. [Enter ORLANDO and OLIVER] ORLANDO Is't possible that on so little acquaintance you should like her? that but seeing you should love her? and loving woo? and, wooing, she should grant? and will you persever to enjoy her? OLIVER Neither call the giddiness of it in question, the poverty of her, the small acquaintance, my sudden wooing, nor her sudden consenting; but say with me, I love Aliena; say with her that she loves me; consent with both that we may enjoy each other: it shall be to your good; for my father's house and all the revenue that was old Sir Rowland's will I estate upon you, and here live and die a shepherd. ORLANDO You have my consent. Let your wedding be to-morrow: thither will I invite the duke and all's contented followers. Go you and prepare Aliena; for look you, here comes my Rosalind. [Enter ROSALIND] ROSALIND God save you, brother. OLIVER And you, fair sister. [Exit] ROSALIND O, my dear Orlando, how it grieves me to see thee wear thy heart in a scarf! ORLANDO It is my arm. ROSALIND I thought thy heart had been wounded with the claws of a lion. ORLANDO Wounded it is, but with the eyes of a lady. ROSALIND Did your brother tell you how I counterfeited to swoon when he showed me your handkerchief? ORLANDO Ay, and greater wonders than that. ROSALIND O, I know where you are: nay, 'tis true: there was never any thing so sudden but the fight of two rams and Caesar's thrasonical brag of 'I came, saw, and overcame:' for your brother and my sister no sooner met but they looked, no sooner looked but they loved, no sooner loved but they sighed, no sooner sighed but they asked one another the reason, no sooner knew the reason but they sought the remedy; and in these degrees have they made a pair of stairs to marriage which they will climb incontinent, or else be incontinent before marriage: they are in the very wrath of love and they will together; clubs cannot part them. ORLANDO They shall be married to-morrow, and I will bid the duke to the nuptial. But, O, how bitter a thing it is to look into happiness through another man's eyes! By so much the more shall I to-morrow be at the height of heart-heaviness, by how much I shall think my brother happy in having what he wishes for. ROSALIND Why then, to-morrow I cannot serve your turn for Rosalind? ORLANDO I can live no longer by thinking. ROSALIND I will weary you then no longer with idle talking. Know of me then, for now I speak to some purpose, that I know you are a gentleman of good conceit: I speak not this that you should bear a good opinion of my knowledge, insomuch I say I know you are; neither do I labour for a greater esteem than may in some little measure draw a belief from you, to do yourself good and not to grace me. Believe then, if you please, that I can do strange things: I have, since I was three year old, conversed with a magician, most profound in his art and yet not damnable. If you do love Rosalind so near the heart as your gesture cries it out, when your brother marries Aliena, shall you marry her: I know into what straits of fortune she is driven; and it is not impossible to me, if it appear not inconvenient to you, to set her before your eyes tomorrow human as she is and without any danger. ORLANDO Speakest thou in sober meanings? ROSALIND By my life, I do; which I tender dearly, though I say I am a magician. Therefore, put you in your best array: bid your friends; for if you will be married to-morrow, you shall, and to Rosalind, if you will. [Enter SILVIUS and PHEBE] Look, here comes a lover of mine and a lover of hers. PHEBE Youth, you have done me much ungentleness, To show the letter that I writ to you. ROSALIND I care not if I have: it is my study To seem despiteful and ungentle to you: You are there followed by a faithful shepherd; Look upon him, love him; he worships you. PHEBE Good shepherd, tell this youth what 'tis to love. SILVIUS It is to be all made of sighs and tears; And so am I for Phebe. PHEBE And I for Ganymede. ORLANDO And I for Rosalind. ROSALIND And I for no woman. SILVIUS It is to be all made of faith and service; And so am I for Phebe. PHEBE And I for Ganymede. ORLANDO And I for Rosalind. ROSALIND And I for no woman. SILVIUS It is to be all made of fantasy, All made of passion and all made of wishes, All adoration, duty, and observance, All humbleness, all patience and impatience, All purity, all trial, all observance; And so am I for Phebe. PHEBE And so am I for Ganymede. ORLANDO And so am I for Rosalind. ROSALIND And so am I for no woman. PHEBE If this be so, why blame you me to love you? SILVIUS If this be so, why blame you me to love you? ORLANDO If this be so, why blame you me to love you? ROSALIND Who do you speak to, 'Why blame you me to love you?' ORLANDO To her that is not here, nor doth not hear. ROSALIND Pray you, no more of this; 'tis like the howling of Irish wolves against the moon. [To SILVIUS] I will help you, if I can: [To PHEBE] I would love you, if I could. To-morrow meet me all together. [To PHEBE] I will marry you, if ever I marry woman, and I'll be married to-morrow: [To ORLANDO] I will satisfy you, if ever I satisfied man, and you shall be married to-morrow: [To SILVIUS] I will content you, if what pleases you contents you, and you shall be married to-morrow. [To ORLANDO] As you love Rosalind, meet: [To SILVIUS] as you love Phebe, meet: and as I love no woman, I'll meet. So fare you well: I have left you commands. SILVIUS I'll not fail, if I live. PHEBE Nor I. ORLANDO Nor I. [Exeunt] AS YOU LIKE IT ACT V SCENE III The forest. [Enter TOUCHSTONE and AUDREY] TOUCHSTONE To-morrow is the joyful day, Audrey; to-morrow will we be married. AUDREY I do desire it with all my heart; and I hope it is no dishonest desire to desire to be a woman of the world. Here comes two of the banished duke's pages. [Enter two Pages] First Page Well met, honest gentleman. TOUCHSTONE By my troth, well met. Come, sit, sit, and a song. Second Page We are for you: sit i' the middle. First Page Shall we clap into't roundly, without hawking or spitting or saying we are hoarse, which are the only prologues to a bad voice? Second Page I'faith, i'faith; and both in a tune, like two gipsies on a horse. SONG. It was a lover and his lass, With a hey, and a ho, and a hey nonino, That o'er the green corn-field did pass In the spring time, the only pretty ring time, When birds do sing, hey ding a ding, ding: Sweet lovers love the spring. Between the acres of the rye, With a hey, and a ho, and a hey nonino These pretty country folks would lie, In spring time, &c. This carol they began that hour, With a hey, and a ho, and a hey nonino, How that a life was but a flower In spring time, &c. And therefore take the present time, With a hey, and a ho, and a hey nonino; For love is crowned with the prime In spring time, &c. TOUCHSTONE Truly, young gentlemen, though there was no great matter in the ditty, yet the note was very untuneable. First Page You are deceived, sir: we kept time, we lost not our time. TOUCHSTONE By my troth, yes; I count it but time lost to hear such a foolish song. God be wi' you; and God mend your voices! Come, Audrey. [Exeunt] AS YOU LIKE IT ACT V SCENE IV The forest. [Enter DUKE SENIOR, AMIENS, JAQUES, ORLANDO, OLIVER, and CELIA] DUKE SENIOR Dost thou believe, Orlando, that the boy Can do all this that he hath promised? ORLANDO I sometimes do believe, and sometimes do not; As those that fear they hope, and know they fear. [Enter ROSALIND, SILVIUS, and PHEBE] ROSALIND Patience once more, whiles our compact is urged: You say, if I bring in your Rosalind, You will bestow her on Orlando here? DUKE SENIOR That would I, had I kingdoms to give with her. ROSALIND And you say, you will have her, when I bring her? ORLANDO That would I, were I of all kingdoms king. ROSALIND You say, you'll marry me, if I be willing? PHEBE That will I, should I die the hour after. ROSALIND But if you do refuse to marry me, You'll give yourself to this most faithful shepherd? PHEBE So is the bargain. ROSALIND You say, that you'll have Phebe, if she will? SILVIUS Though to have her and death were both one thing. ROSALIND I have promised to make all this matter even. Keep you your word, O duke, to give your daughter; You yours, Orlando, to receive his daughter: Keep your word, Phebe, that you'll marry me, Or else refusing me, to wed this shepherd: Keep your word, Silvius, that you'll marry her. If she refuse me: and from hence I go, To make these doubts all even. [Exeunt ROSALIND and CELIA] DUKE SENIOR I do remember in this shepherd boy Some lively touches of my daughter's favour. ORLANDO My lord, the first time that I ever saw him Methought he was a brother to your daughter: But, my good lord, this boy is forest-born, And hath been tutor'd in the rudiments Of many desperate studies by his uncle, Whom he reports to be a great magician, Obscured in the circle of this forest. [Enter TOUCHSTONE and AUDREY] JAQUES There is, sure, another flood toward, and these couples are coming to the ark. Here comes a pair of very strange beasts, which in all tongues are called fools. TOUCHSTONE Salutation and greeting to you all! JAQUES Good my lord, bid him welcome: this is the motley-minded gentleman that I have so often met in the forest: he hath been a courtier, he swears. TOUCHSTONE If any man doubt that, let him put me to my purgation. I have trod a measure; I have flattered a lady; I have been politic with my friend, smooth with mine enemy; I have undone three tailors; I have had four quarrels, and like to have fought one. JAQUES And how was that ta'en up? TOUCHSTONE Faith, we met, and found the quarrel was upon the seventh cause. JAQUES How seventh cause? Good my lord, like this fellow. DUKE SENIOR I like him very well. TOUCHSTONE God 'ild you, sir; I desire you of the like. I press in here, sir, amongst the rest of the country copulatives, to swear and to forswear: according as marriage binds and blood breaks: a poor virgin, sir, an ill-favoured thing, sir, but mine own; a poor humour of mine, sir, to take that that no man else will: rich honesty dwells like a miser, sir, in a poor house; as your pearl in your foul oyster. DUKE SENIOR By my faith, he is very swift and sententious. TOUCHSTONE According to the fool's bolt, sir, and such dulcet diseases. JAQUES But, for the seventh cause; how did you find the quarrel on the seventh cause? TOUCHSTONE Upon a lie seven times removed:--bear your body more seeming, Audrey:--as thus, sir. I did dislike the cut of a certain courtier's beard: he sent me word, if I said his beard was not cut well, he was in the mind it was: this is called the Retort Courteous. If I sent him word again 'it was not well cut,' he would send me word, he cut it to please himself: this is called the Quip Modest. If again 'it was not well cut,' he disabled my judgment: this is called the Reply Churlish. If again 'it was not well cut,' he would answer, I spake not true: this is called the Reproof Valiant. If again 'it was not well cut,' he would say I lied: this is called the Counter-cheque Quarrelsome: and so to the Lie Circumstantial and the Lie Direct. JAQUES And how oft did you say his beard was not well cut? TOUCHSTONE I durst go no further than the Lie Circumstantial, nor he durst not give me the Lie Direct; and so we measured swords and parted. JAQUES Can you nominate in order now the degrees of the lie? TOUCHSTONE O sir, we quarrel in print, by the book; as you have books for good manners: I will name you the degrees. The first, the Retort Courteous; the second, the Quip Modest; the third, the Reply Churlish; the fourth, the Reproof Valiant; the fifth, the Countercheque Quarrelsome; the sixth, the Lie with Circumstance; the seventh, the Lie Direct. All these you may avoid but the Lie Direct; and you may avoid that too, with an If. I knew when seven justices could not take up a quarrel, but when the parties were met themselves, one of them thought but of an If, as, 'If you said so, then I said so;' and they shook hands and swore brothers. Your If is the only peacemaker; much virtue in If. JAQUES Is not this a rare fellow, my lord? he's as good at any thing and yet a fool. DUKE SENIOR He uses his folly like a stalking-horse and under the presentation of that he shoots his wit. [Enter HYMEN, ROSALIND, and CELIA] [Still Music] HYMEN Then is there mirth in heaven, When earthly things made even Atone together. Good duke, receive thy daughter Hymen from heaven brought her, Yea, brought her hither, That thou mightst join her hand with his Whose heart within his bosom is. ROSALIND [To DUKE SENIOR] To you I give myself, for I am yours. [To ORLANDO] To you I give myself, for I am yours. DUKE SENIOR If there be truth in sight, you are my daughter. ORLANDO If there be truth in sight, you are my Rosalind. PHEBE If sight and shape be true, Why then, my love adieu! ROSALIND I'll have no father, if you be not he: I'll have no husband, if you be not he: Nor ne'er wed woman, if you be not she. HYMEN Peace, ho! I bar confusion: 'Tis I must make conclusion Of these most strange events: Here's eight that must take hands To join in Hymen's bands, If truth holds true contents. You and you no cross shall part: You and you are heart in heart You to his love must accord, Or have a woman to your lord: You and you are sure together, As the winter to foul weather. Whiles a wedlock-hymn we sing, Feed yourselves with questioning; That reason wonder may diminish, How thus we met, and these things finish. SONG. Wedding is great Juno's crown: O blessed bond of board and bed! 'Tis Hymen peoples every town; High wedlock then be honoured: Honour, high honour and renown, To Hymen, god of every town! DUKE SENIOR O my dear niece, welcome thou art to me! Even daughter, welcome, in no less degree. PHEBE I will not eat my word, now thou art mine; Thy faith my fancy to thee doth combine. [Enter JAQUES DE BOYS] JAQUES DE BOYS Let me have audience for a word or two: I am the second son of old Sir Rowland, That bring these tidings to this fair assembly. Duke Frederick, hearing how that every day Men of great worth resorted to this forest, Address'd a mighty power; which were on foot, In his own conduct, purposely to take His brother here and put him to the sword: And to the skirts of this wild wood he came; Where meeting with an old religious man, After some question with him, was converted Both from his enterprise and from the world, His crown bequeathing to his banish'd brother, And all their lands restored to them again That were with him exiled. This to be true, I do engage my life. DUKE SENIOR Welcome, young man; Thou offer'st fairly to thy brothers' wedding: To one his lands withheld, and to the other A land itself at large, a potent dukedom. First, in this forest, let us do those ends That here were well begun and well begot: And after, every of this happy number That have endured shrewd days and nights with us Shall share the good of our returned fortune, According to the measure of their states. Meantime, forget this new-fall'n dignity And fall into our rustic revelry. Play, music! And you, brides and bridegrooms all, With measure heap'd in joy, to the measures fall. JAQUES Sir, by your patience. If I heard you rightly, The duke hath put on a religious life And thrown into neglect the pompous court? JAQUES DE BOYS He hath. JAQUES To him will I : out of these convertites There is much matter to be heard and learn'd. [To DUKE SENIOR] You to your former honour I bequeath; Your patience and your virtue well deserves it: [To ORLANDO] You to a love that your true faith doth merit: [To OLIVER] You to your land and love and great allies: [To SILVIUS] You to a long and well-deserved bed: [To TOUCHSTONE] And you to wrangling; for thy loving voyage Is but for two months victuall'd. So, to your pleasures: I am for other than for dancing measures. DUKE SENIOR Stay, Jaques, stay. JAQUES To see no pastime I what you would have I'll stay to know at your abandon'd cave. [Exit] DUKE SENIOR Proceed, proceed: we will begin these rites, As we do trust they'll end, in true delights. [A dance] AS YOU LIKE IT EPILOGUE ROSALIND It is not the fashion to see the lady the epilogue; but it is no more unhandsome than to see the lord the prologue. If it be true that good wine needs no bush, 'tis true that a good play needs no epilogue; yet to good wine they do use good bushes, and good plays prove the better by the help of good epilogues. What a case am I in then, that am neither a good epilogue nor cannot insinuate with you in the behalf of a good play! I am not furnished like a beggar, therefore to beg will not become me: my way is to conjure you; and I'll begin with the women. I charge you, O women, for the love you bear to men, to like as much of this play as please you: and I charge you, O men, for the love you bear to women--as I perceive by your simpering, none of you hates them--that between you and the women the play may please. If I were a woman I would kiss as many of you as had beards that pleased me, complexions that liked me and breaths that I defied not: and, I am sure, as many as have good beards or good faces or sweet breaths will, for my kind offer, when I make curtsy, bid me farewell. [Exeunt] snappy-1.2.2/testdata/baddata1.snappy000066400000000000000000000655701477101537200175600ustar00rootroot00000000000000l J/etc/HOSTNAME.old J`cron.15minly/arpwatch.par$$4google/network info-di ,  octl.save($ld.so.cach  Xrc.d/init.d/loadmodules}B& slb J8rc0.d/K40monsshB60:=1f=b=2v=S9zJ.3=$95memtest !2 4z 5> :6 fJ)(resolv.conf-M?sys,igQ /libcom_errA2T..0e2p2.3.ext2fs1.44s0  uuiE1Cw.J C/Me</sbin/badblocksE lkiAJ debugf$J umpe2  ca9e2imagi\ Le2labelp 8 find J JfsHJ .!3.!srlogu _mk.: mkfsOdOyresiz? tun LJ/user/prodadmin/.key!0J+j! RQ0.}B`JO3fsFM~f 3fJ usr/Mchattr ls/pydoc2 JB  thon/F 00 gen% doc/.2- J r/B/ACKS=V=/HISTORYr$LICENSE$aNiNEWviPortingEZREADM h!Z# cheatshee J"Z'$unicode.tx ()<include9@Drpcsvc fo e2s rd_helper:lib5.s><3 J$Z9$/BaseHTTPSE.pyf# r" j*o!E)iw2/ tionR)B^#K#JCGIF()WN(ConfigParse-'NV6(UR- okieI_Z"IJ JIFCNTL.py&%J& HTML+i6xm_MRuMimeWrit9Nu2&u6u Queu%]N!Gk>&Simpl61V1XMLRPCU3m6Socket-N:(UNuStringIOQN$MRTERMIOS]JNQUserDict)b)Lis.)V) N2&JN+$__future__2Nx4__phello__.foo2/J aifc2%Nanydbm'JN asynNm$bMorubM $MNgatexi!ER"IVaudiodev= JNPbase64'JB'db1.NbRjinhexjZise2VcalendaNw$Vcgin CV cgit!#z& hunk=ZmdriN/fJNn%cskN"nfIop~I"IVcolorsy~)mmand6)N$compileall=wR + N#!/__ e-N_aZr (Ujr/const!0X b+[1r[+[R0misN 54 )W&E|>Wpyasse*Z8bZ,]rpyAge _N..a.B3symbol5r,]r(syntar+[r0 transform& /=B60ervisitor,]JFpyQVn EN$copy_reg IV $MJRTursesV\R4 0 asci]N c - has_* j\ pane6e\':+ \textpa璋wrappE6/NdbhashJNdiffliEN#rNdirVtRu diaMJNdistutilZ1J-3archive_A2v7 bcpp27fncR4Nc:5rcoV2;b|J8 _dumU#7p89v2_rpՖ6t 7s[% _winin&s:w;{cuil6c8!u,=exb <J0<5b6qJb;scrip @ clea8!j xcɦJ34mNaYGAy %U4n5oJ9:_dataJY%6=s!27zygwinN*~depFv2dir>3VI Q:5  2*YNW / erro2Jv`extens*Xv}./Jvg(fancy_getop6vfil"SEmv./v4l>NS9amsv.Wv:2vmwerksJR  spaw6~vh"'Qvh./zt _!m}~ unixBjv>3~aj b~. *YJv-verm[2R oc *2R> ospatf ExVK#sV umbfK#KJ&Ls emaim(N /ChaoN >)uNg .EnXNB*YNA /HWN|:(UN -Genera*#N`F+[fHIJf(UfIt !5%f.+[MIMEA*f[.+[f0Zf*Yf/Il+Zv+[f0Messag"NZI6-_vMultipara[%Na/cvNonBfNf:2ivTI v *Yf:f)Wf"Mf(UNh)<U1cN6'SfX>ZfX*Yf7_ at21Zf7.+[2[+[f;_padd%Ny )g2,]Af]2,]quopri]2,]N| %f#.;/fm>/fT4J\N /(8/PyBanner048.gi2JN(>8o.aumNQ >5msg_01#RpR323334353637383931031111111122222222223333339f_N!,1zl 6_&D$NRn8uNV=torf(N{~9wJRc ing2fzN.aRn 3aliase"R J-_Re2BR 0 )* Vdgcharma&cp0372bRcp1006121140b251 9%256- 13.*R-=15b252582R14260>~0506~07`776~`8:06v06`606866` 66`86669`87:R0hexJv4iso8859_6R~h46M56567566464646h6T46h46<vkoi8_&$R U1u ],]vq latin:4vA (mac_cyrilli-iv+7 gree.1R%g4icelan6J&v66l׮5rom2Q%turki2*R "bO 98vo<JR U5 raw_:_escap. ~ rot_1 undefine6R jN{'9A9interna.$~utf_1I 1_b6>v 4l64v4606R29muJBvG zlibJ5N/t"cm.JNG/(inpu"N(.%y%RwnmaKM".Zwormatt_.Rw%wNfp0a)V65ftp(uNg"IN'J%N<getpis=qN7#rZKt*ZK #KRglo.#Vgopher=.N.%tR1gziA%N EVhma6N:2hotshoF@JN .9NJ,N1lou2v 'SN,sta,NB>)SN0htmlentitydaf./V7%/] N#z^K2VK#KRK;ihookima.Nr#zrmgh'VOp:3'V  insp|;%RK#sVKkeyworbK#KVhkne.+V(lib-dynR/ɖ\PC)J-6/uL5NCV J/_failePeN,N6p%5CR25mE lo< /Rh 2_sA /R2/ capi1N21weakref0N.0array-~ oRD~bin6-{~bsddbcPickle/N2/sAIO1~cmo*cryptZN$.-|*XR(.+errnoX~fcntl -Ra2-u .R&..gVB2,zU!~PSYP~linuxEeA%C.~md5)@Wma~Wni~opx*N.0p%eVeN2.cru1~pwh~readlin[~regex]sourc]~rgbimg^o,MK~[sel .zAshastry trucm.ysc ~termioU~Ptimtimin5N..P&1EN4.3xQN ^R$H,ohd/Par6U ^Q(&Z ^#-addpac zP^6+[N{ 0W^W 'Sz,r=X^o X,Y odeh= r],]N,>^*YN /uWnd (UfiWnU (UnfmTn 'Sngre"n (Un+\fin,]nnewdi[n*YNnM/IUnn&Qn#n^J,]npol"VCn (Ur %nU (UnXISnX&QnSn (Un-whatsouy^>-_nzmo- (UV ne>R&RR\~ macpH JN#V2macurl2 O,V a?bo"QGVwil #KVKca(Nmarkup%2NmhHQNmimetosH*yp&*Nmimif'Vmulti.R%OR S mute!&R L netrEN7!GN&nn9IN#KNMntMmJNP"IRQntRNR:o NlR5PpPNI CNpZmN"IVpi6Rplat-l2/CDROMNKN-~2DLFCN2N .2I2/~a TYPE.UTVpopen.Vpo.R"9$Jzposixm*V*YV?>.%OZ prin} 'Z&SRCVpro:Z>Zt&fFCNpyy7" V:2&QZyclbr]VH pydorH!vn 2nN, o">IN"pV:Nreconve;MV=rb_J+OR egsu.Vrep} rexer}!Vrfc82!ER"IV5 rl:lei,RKrobotpQp\N r2'SVsch:"N sgml> Nshelv& Zuhl2oVNsh: RsitrN 1V smtp" N,!GN&)(EVKmKZnd6VMR9VPse%FN Vsre>QN6'SN) ,nstanY.Rre<NSeD2:ROt2"RS`> ^*v:NsF]R"qR'o:QNRuna6)N s&di6\RU=`R]symtabl.:R%RtabnannN$1VA telnet}N;.%ON tempeR$MRL/R@N. auto 2nN%p>=7*9N2 - oublaQjR2outpu6a] N'b.0 basCc1uiltieR>BbcfgerdgrammtthtߦminidooVt7B mmapb..sa|-NF B[ scopq/t^NB^*25bx25rl%2bre eb_:-QV/T/p fodd^1fyston6Vst/re_f b)bb Z1VaY&/regr zj)WV N/reperfj sort .v )VR6fb:-_RC__Z'fb5""p -J);.b 8___R6)b 2^_gb5:O.N+( $9%VD0'dh2 V!3|Qb#1_ɨ]V;, Lo6pN..2gasufR4b5ev{(1U"zU(Uj_R,evm,]j]1vC2fv"'.j6 Fevbin:\zR>fV>6_'uf: z ).fr.b_cLY/p6 v-c9\R`*\ Qv:" =Ojh_>gN*5) h@B2ez.V9dl*a1vc +1P~*.v/k a~K1e,]v coerc*Xz.a^~a.a~ a;2~2"s_ -_2>^~ntain!$e~Fp1~d"l3vHc 2z<,.zu/2avd,_~ desc" v+1j !T_0t&7v}.a~FNdzeNdvDd.Do>Y~8 d 26 vtd"Ye~dI`z_BY~DH+vD+[~Q03 v+:2iz#0.v excep 6v[ext:~[0 v+vp /v/in:4vfB:~* forkT 0vB:~pJ:~ froze._V^EQ_funcattU\eutu2~6,zcj d..?~g"vV(9v73yR}69g%]av20vMgetargb2vB<~gette2gV6zV6<~<2B~uzOgr.Vb#=*6=z *9v/:mV"C:y=~DE9vD-z2tF2 v,<4 go 2 v6.~2gd~a impo1#Pv,1 ~&<2vvi>v/large v./j!X_y("U8M2r*>3kN f)6V-v,]VJ1n"q@zUo*YRG.ngb|2xv(longex%v-v2-b-2~marsh-_~ m6+~Fj:y~] F1.vV;.4s^ -1T~md;mv *Y*.Ez/czu>U$V.yh.v2 +[j` _new1v )W~<.avJ,/vCop6C~2enp2+~Xp=io:-r 5o.J~ :/v("E vV,9z1 ep246Jz10bvEpk.~pkg"xv./c~po:~z>/~7N/~po )W~ p>q/~ F8/Rmye 2xG%v:2i~_>zvw6)zcL/z,vpyeAI~q.ۇv+vqg2v"/,v :*vd$2vB/zC/,vwB~ rich>?zB0~ss&bvK )~'_v+[~qC~ENJ0zhAigR-"A/bv 1_ss6va 5seԍleEz%)W~ strfD9~'QEvZ,zvtrc0aEy ,]vsEseqv./c~I/d2 undr"/z,~}sup.v?-_rF/~3*Y/3~"threaee2v",]v 1ed_6 N{Ay_F5oJNWF:J~ ;G.v%9v  *zhiVHokeniz6N?=,rac0vkt +~ 0b*Fv./cz +[~ uc6]vuna`^~4/(v4-_R}9 2>{~] 7J.vvunE2 z1rB9z1.~"u01av.9+z3 serd>;3B~zWser"Evic0v uu2vwa2:~Spv-vJwin1vwinFFvdxF1rprv"M2v,zi>~qN-v *Yz!,"|2Nr:thi.NZ8eOR%tN9toaif.3R#Ft=Z9&R4$R|*R92SVB<N=tz unitA N$RrurL%4N"IN> 'dJN#KNSOLR١MN]1*N ER2Vwarnin<#b$pNB&NrqNr#pVwebbrowse8NN8 2&QVq>whichmH(NwhJ&Nxdr>FNxmlV?/J0^r2AseV.5N[N-_V2saxVN1R*VO 4nc6/cV4handleB0^wd saxu1^[1xml2R.Ft NQpc6*R&/ %;Nl#."NB3!J*q YF(/A,F.#KF3/>% FF)WN!3/:(UFC-)2F&"IF3/Doc:RFN+[j60|QFD3/!GN&2LN2&QF3/6ãN 3/2v=bu2&uN LN!GF3/SFãRFR,]N ]NF8_:.aN :F3/:(UNSFIj3/$MNO&N#KNȣ@LNs$MdrM $MNk))1NR2&vQ2NQ2&QF3/BUF J*YF| 3/pjTR~str%OF 3/'JNo ENaGGN"INra&@KNr$MovM $MR28AR"IR$Af$MN"5@KN"IF3/FN CR?FR"~IѥjI "IFV3/?EN$. *NB*wR-/^SN S$MR4 MobjNVP 'Sn| recipNN>)WfPdbsPXfP*Y'S Y*Yn  Xn )WN .Qf#.W/F ^/zc9FQAzc/cF2 4ssociatFv5oFhF: basivlFf"j2i9?eGi2iN >7dbihFF1g}zj3BNjuؾmum4menv_closAMn.5oIget_nLnI4mN>9joii  0ed'e 0e{ 0eLq.*L1g recn͎g1g"12iN*4HN($MNF `GHRlg=HNfEN !RG8fG !GRERCNa 1Na EN\ %N( "IQ(^I"IR&yKR8$~M"^GjM$MR!ONil*j QrLN Lr. -NN-N2Zr (Ujr%z:+[@QN+[VRr/% N Y )WN> .&ZNhJ,]r._N_aar&_r,]r("`\r+[r06`N|560er&ar,]V&ߩV EVJ"KV$MRs=HRlzCuJCR.+RB+zR 0aXR6(UNBWN2B*Yjp{y%j(UjD~*Y&~Y*YN"BQNR"IN7&YLJNs#KNsach"NS$MNSVl6QR$isFV "/"N,.)* _WNNdyVN3a6 eNz b29Xvi:Ri:2iN.ffNV/cv]N ]:< N.lXNfB*.6FT12 `.6vZ FDn3k87Fbp8uv2vo~7s <&4F fw;{uos 3k8p.8u=KtFRW7sb< r6q;&v?v;{?cLs3k _6latcN6Nczr4N j/iiA%Nn5o:tFN :y?&|Ftn|=N^b2_7({Fn{ 9wy3{=\regist)x;6q۵n3kexizoBDz5B5NYw(NF+[v" d&Զv.a&a.av 1v *Yv2 emFev:2iN5e2QN5J,]veŷ^/cv):ŷ%v):2ivP fv[ ./cv4a9bv.av mv )Wv:Jv:2ivUB|kv7B4mvdv+[vLsqv./c7?=vc./cv>׸gv*>3kvh1,v[ *YN& v-_R~_R#zK"7_RK#KZ(myBRum.(UR/-iTR/B+[N(s_NN3C"uNs WX*YN~ YBN~:(UN~ -.XN~F+[f"Xf(Uf.Xf.+[^zN+[f0vJ*YfYz.+[f0&]NI6-_Np2U.YNhV/cvNj2iv%(v *Yf:Nx -ehWf"f(UN zT'SfX>fX*Yf7_ atnN+["M?f.+[Ns )b|v\parse ,] 1A1nN 2,]qR]2,]N, +Ef#./fm>/fT4=H\N O{B`/^ofF5{rZ3nųZ3nųZ3nųZ35jZ3nõZ3nõZ3nõZ3nõV3rZ3nõZ3rZfrZfrZfrVfrZ3rZfrZfrZfrZfrVfrZ3rZf*NcN4&fR Nd61&(z6:IpNORn8uNV=toN~9wN%e `R ".i .RN.R 33*ԯ-_RI _.)R B+[R0i )QN5o/:2iv#big5_t"`v-.so%v]&κ-v-R 5%chinesec҅J06^ ,.HRFd4/euc_gb23122utN> utf2B1ӒtwjRZF,BRJ8!q9"9!=r9rv#v+N\Rd9k,]z],]] ,]ҽ] ,]U4t25,]UX],]t,]&],]O],]/],]i],]!],]~^\~ +[3[+[[ +[߿[ +[:[+[5[ +[[+[aĚ[+[aš[+[8":~8 +7[6![+[+[[+[A[+[A[+[[+[d–[+[!A[+[v K jjv:, _bvk,eucksx1001_k 3v b6R5N.}aRR/9&RC4idn k^v *Yz/s&^v6v44dN,20Țee0ee0eaFe0e'd/c!ac/c!_c/c!]c/cGc/c"R /c /cc/cvf japa_v+BRo7eucl6m sjis.7mheur6qvwevq,9]g],]reaneuvko ,BNa9Jd/!G<<! |x<x~<ksTkscT8ksc5601!:<܎:<<)T´<´<v] -^*C v.M$%vp -yv2G*Qdv?:2iv& 7fv7./cv4&ev61gv6%iU.v 20e/rʆ//c/&Be/1gvo ms`z *Yv palmo[v,]vpuniёv.avy):2iverN%3R^!"] R8uv"iv,]v(shift_ji?9`vq&3v4>3.gv./c~4> :v]ufv9 inteN2>F6v8[$gv8,]v8 1P`zj /clA5c/cvW M_v+[E[+[vPu&^v.avr6Nv20eNX/<N.#KNO(MN<.%OR"MR#KRut&BR%ONL*ƕN3$MN?'"KNt3"vIgbI"INyg~3paтK2<iN6hNcRHN R%3/>jzn3/* ENY heap"INW!vܓ%N zEonu3/BNJ,}N1U@NQ6'SN,svu)WN+WonNB*zY>fY>*YN:GRN#~K1VK#KN"N"INima.fN#KRf"IV<JV#zK"N<6hp"J:,N΁6+r`q~resou"VZ20*Ҋ=Q .~sha~*҆Ռ[~s*N62҆ .~.J6?~v"҆^N,o.J ?vB(& ^CUX+[N [*w^ 'Sz,i ^ X,]odz9 ']^j_&^2*YN\ /%^W (Ufi&,nU (Unn 'SnTn (UnmfrYne,]nnzYc*YN>Y:n"npacWn,nYn (U[ nU (UnXnX&QnPSn (Un-.Z^>-_nZn (UNli&RV0%ONTR.IR oggiJ'Z .RF,R 16]R(>*YR /K,]N&TNC#KN6:ON6'SV>OV#Kca"0^K #KNYma*NY2&QNayLRr*IN.KN.%bOpvO %ON"LRAi*7 R9finde"*N1(Rul~3/.ORR !vGbG!GNjpEN' CNn~3/#KN "N "INDn.MN2&QN N"INRopKN$MN?W&f&NAN(os2em+:b(2&QNhpdb.do,Np N cN"8N"If'B N N'SNpNq!GNpkg" IN#KRRlaLN.@-Ni N-~_Dؒ_-_$J{.2-\N^ B*Y~W\~-_~reg2J 3/*n4$wR?]R"I*ZI "INaf*R.o6BbOpbO %R0ѩLR"IR&ŇRCV$,bR<"R<#oRR!JR"IRFRCR9:VNBI'RUR"IRyr3/p !GNF-qN"vIn3/"IN^E%NhANr*/HN.%ONr&TRN:(UNwre|ONw"INGV "INLFN!R-HR"IR'2NN# r2'zS2fS2'SN6MN6!GNseFN EN&HN#KNs2N"IR R  !GV. V "IRo ite-W agesN5&,/CompatMysqlq7N167MySQLdIN>mR..hN2V:connec "N1b=suNvoz8/CLIENTEN,QBR>E>@J ~|FIELD_> NsFLAG@=ʆREFRESHC>C>c+Nj:b`eE3 urso9Nx'Vuo1oUN{#Jmy. N65*H|N!6-_m]N 4N0_2%pysnmK+*V-BU f/,B9N46 9b&  4ehj 6m"d%A mses$9 obji6:nR"oK >f smro3/!(RLm-RL#KRnoJR"zI ockeqgfI"INrFN CRr KN IfbSN{ ,qRg|)WR; r2V|p]'2`RRo ztatE#JN %ORtatMR#KRK1~R"IVringol*V%OR vp*zNV; &QR rRr !GR,&%|R$MR}KR}"IR&KR$vM*bM$MNtar.oN#KNbtn3/.%ON4t&Jf$MJ 00FRest/185%.! Vst.υNDBN5>)N., Fib**b)Nw /bad "OE2L2ZL2)L2"=nocarN %,d6Rv:-9b$greyrgb.uuD}bouN-  $*4b.4 chat2Ng/Bfau'3bE.3cgi-NB`c\/2N$Far)|N J1a& 4e1Ӫ0ua/0<a0a11NBIdev7h2&1ns1b~.bmat:] md5[mGV1B"necniEoD1eC153B4NBo&359pep2770(pkg- #.p//V8B0atp^r/re42 ,04/v/JA0o|`NB 0edm :Z%iz*t)aNB46b0"43~xmlb-&%es*EbT:-& N}/D"bl6,]b p"Yf(Ub *Vb)Wb r "oZb 6,]j~#- :# N,%r#jso~J )Wb6_b:-_N% .xm b&.ou^ b** {bF0b5".?pbh>.abu3&E%bu:-_v%2bv%20ebaeq1b6,]b 1@vIbUz2z,]N6_PBM1v+[v}1lv.azt/Tz,]z%v -_b{!}_"h1bG B/cvr`v,]v&-_v<"DMv<.az"z,]vU@\vU+[~\~ ,]r _boov *Yz\Qz +[z*018"z*.azr3"Qzr,]z%z +[zu1vv2ti6^b I,z"Zz)v.*%v.av]v *YY*YvUWv(Uz2\/cv"*z:vch2-%bb!u_:2zx zx(Uvqv+[[ +[vnCca "P&NB$!qiOW.4mvqmevq,] E8],]z&_z.a5~a.az>QFz-_#% _ -_x_ -_~"`~~.a~1}~ ,]zo&z *Y~p+>ZVIR.az1z6-_zPi z +[zE-zD)Wz(uS1z(,]v"P-v.av*z#1evdvN+z[tnB^ .av&oE,v-_z&`z.az&Oc~Wv z?6 z-"Zzl-z 2" zl.az"g-_z*bv_ d62iv.7*bAER" 5ovtv+[v30 A%v3:2ivenumer*v ./cveo"v )Wz~%z~ +[z0.`vx&$2-vu$Q@z$2_vWqv+9v .E+v^ *Yv/;R%uv-_2dv./cz"d-_zo]z +[v iB&(v ,]v*Zev.azrr_z,]z8u&`z8/czm( z,]z11^zW-_"_-_"._-_v X%vE(Uv")]|v\ *Yvgb0ez"%vrg-_v  2A`v .avM"4i_vM,]t*z -_zx z(UzWz *Yzjloby [zj,]z"^zj-_v `mz"84zl*`jzl *vY8% vY *YvUjZv+[v  hexot\v ,]z<[z *Yvy.fMvy-_"Dz_-_ztm\bv Dj:0ez#~6b<_d-_.{jvima -_-%~_-_vi&t^v )Wv6v,]12b-61gvi"Rkz-_v*imMv+[z0siU>&vi.0ev2i*-)Z::_ *Y/t3-%zv" ./c/cc./cvk 205. NeB9(>3kvm6\v<,]v5v-_vFlo& v *Y~/%v%`;2~6-v%mac$v+[0os2hv%mac0ev&]v>-_]_-_{n6-_v"v *YvClYv )Wz'^z] +[z]Vf^cJ5qvWc /z inid&7Sz-_z0m-z *YvARK [vX,]zpz1rz)Wz>R_z/cz#Ez-_vO]_]vO+[vtno+F)WGmp.v+ normalizaP1v+ >3v"_%uv,]v0=v0-_=_-_vd&>bv20ev 5o%v.a6a~a.avTaz 6%vk*K?1}v 61v"v,]],]\],]7"Fz@2! zty ,z12 v8}(1gvO v )Wv/ ]v./cz'@`bvp.av sBqz' vpoBZv+z["2zb,]~six +[~Bsi2hfz0Razo 6t69 zrpB;Ezr,9vjiD1tvw-_2>v>& d2iz|a`z)WS W)WzaZz,]zE-_vq.v\+[vqv,]"tbt,]v bYv(Uvj>C1vj+[vz.,bv8 *Yv_rGv4.av$7=v$,]x}H2 z# E)v97 z2bcv r219#zzI1z +[vuve )WvI+[v&jtC[dv;8B4mv,]v._v *Yv&ld%v-_z4[z4)Wzl2dvyJezdvCs +uti%\~ ,]],]zli&rz +[z^,]z1avs 0ezese.vG g2izoftspa9z/czj+"~"Yz t"z )W.fjdv;z]_z,z1p*2^z.0eztrK>E+[~^~.a~u(.zF`szW_d%$v s21gz'uns:b ,]z$6^I_zD&_% zD.az\,]z~6N vt&``[v-vT1vt.axt]a.avU_v,]vg 1/%v :F5ov:=hp5r{'J6qv ;i&%vH./cvH.zim6z imeo&?z-zXi%zX,]zw'_zw.avqv+[z raceG_z4/cz#%z +[v Yv )Wv3Yv+[vY1nv-_2JZdv d2iv% 7gv61gvnewlineh%.2iv!#*c~}2z]r/ z],zR1"zP-_v!Zn&fv!./cz'q%~v@+as#a.aqszser .azgn>Z2vP%!zru2Uv+[v.9v]v *YvHvY-_#z_-_vt`Qvt,]z'z.avxm2,]rp"1v2v6x#1yv-v"aav./cvz#%v-_vzip"@6av./cvmzj$Yr"*rC (Ur Ur*Yr img"4mr imgr*rS.mr)tar.tbSj|gtf_[rit_che'kfI F19 fAq aKV 0xmdqbb )Vn" EV;$MNvNIRrh-EV%*+R!;nXN>tiRdime"RIofI"INdug1RcA2R&i&R$z=r !GR&.R%ONyt%RCRmERm !GRu#IR#KNu3/$MN 1N"IN '" N#KR:4 NR* NS. Nr N8&> R64 N* EN$N IN EN& HN#KN3NN2&QR" NR#KRy'* LRy$MN-#N KN-"It6x1iNx7 kN :(qN3-[VK /NodeFil*M?N R.N 3>TyN J,]N1#a!%5Np B*YNd /e-ade_NZ0eNp 5mi<1n|2.aNz.3*:n^ +['Q"%n[+[nxml:zn2.aN3X4 p^ $.^J0^5EjQNN-_^U_V) .^sG}#> ^q1eByTNV/c% ync6/c^B4j^26+[^0+#~,]^Z1xm'$^^Z>-_Rm.R"INspR$Zr%ON@&MNf#KJri2( q getclustefscNJ9oyil4q9 mpm.>_8'c-b%/ak?-_ڌ2/?]_py-!.soFMTFfilpvN32J:R^/7/.%!:sxS : -I 'iobuffEJL6/_ z.swigdepfڮ9ix2depot--prodAT`Xrz]Pf2nsswitchvJz8securett tQt4 bundle>.ޚ>-sy$#m$gwslogp7]t! makeirollreboz) (setup-crawlE2)(c6/B undoA Aman/man12.N.gzB"3AJ)a fraj}J> (mklost+foungtcpduK tcps-*\share/doc/e2fsprogs-1.19#w^#&5j*(LEASE-NOTES% 11 2-2.b$/A f)',L#8fXNEmf)PURIFY.*j2#f,Wj+FD% f(3Q5gdbinix~[$indent.pro f -mode.el3Zf3aid=g./f2vgrF.3-2.3.^ $),,U^j)'fj,]j^+2Bs9T-3=> /CHANG8VuRHN'6Z"sF6aRj SO8/cs/LC_MESSAGESd.mF 3de3effrfit3pl3sv3tz)rډtrov Z"RGlnG"G.xuuidgen HV:#I:2&8/b.8.X n2%M>M lkidIV :!,fs#9^#j.a J<>Jump $KJ8edck IR$E"GJGnXHZe2 #Z#lR J65" find!G : O)R R# ext2 r%3 %Rml #R"R8/"rr%R.R :i6(rr PRx% M_::xy.8 &2 U) 'Rtuna Jr8/# p~ var rpmk6 name/S .Conflict s/. GrouJ2Nam J2PacJ6rovideh6Requir^Trigger<0 /.*/ro",ort/hd.3#/$D($|/.*)/software/ \  %dzoneinfoO.\  le,.*/coi(\.[^/]*)$ i /proc /sys /devI*,firehose.*jrc\.d/.*;$babysitter$ (?!borgle@Wcal.conf).*> 1Ds/default(_once)?^ >bcelli7 $Ds/noassim_.* /tmptidy\ (motd /\.ks d/I[llInfo=I.*er/(?!p | b p bind Bpasswd\.attrs\.ds!(er/.*/\.ssh 2em s/.*Ŀ -ng\(($|\.tmp)$ logrotate!T,&&& #%%!} i686c[-.].*:m #/,p4  ld  +$libBrokenLE  +(ibNoVersion # SegFAJ #]anl D#jcu &#$dB8tmemusage )tns<8 nss1c . dns- 0files yni.26e#nss_dn1.|2Jhesio12J{._nispluLepcqJ K6IWlibFlv -5rt  ?QSoId_db 0!L !A}statu'# misc/.*aletENnfe%H-seedBp f db  .*  g  mail ms ni opt' preserv\ run ~ spooUtmp y 5!.*/.* _ Uadj5( \.db!#/-Eɑ#hw+$arddisksVT  fstab ]Jprobe \/.*authorized_keys /.*tity \.pub host- u erd,bash_historyssh/s 9 lilo I\.old/0/.*/.*\.pyc o -2\..^K.*)!š.d:/ -AOMݧ i*dcdq33PHX&`zdc ed/Fu 𨜖ϽfҚsnappy-1.2.2/testdata/baddata2.snappy000066400000000000000000000655331477101537200175600ustar00rootroot00000000000000l J/etc/HOSTNAME.old J`cron.15minly/arpwatch.par$$4google/network info-di ,  octl.save($ld.so.cach  Xrc.d/init.d/loadmodules}B& slb J8rc0.d/K40monsshB60:=1f=b=2v=S9z643.d/S99burnin !24v5::6.rJ-k$esolv.confM&J8sysigQ /libcom_err!2..0e2p2.3.ext2fs1.44s0  uuiE1Cw.J C/ME</sbin/badblocksE lkiAzJ debugf$J umpe2  can9e2imagiC Le2labelp 8 find J JfsHJ .!3.!srlogu _mk.: mkfsOdOyresiz? tun LJ/user/prodadmin/.|key!0J+j! RQ0.}B`JO3fsFM~f 3fJ usr/Mchattr ls/pydoc2 JB  thon/F 00 ge  doc/.2- J r/B/ACKSEV=/HISTORYr$LICENSE$aNiNEWviPortingEZREADM h!Z#$cheatsheetJ"Z'$unicode.tx ()<include9@DDrpcsvc fo e2Z rd_helper:lib5.s><3 J$Z9$/BaseHTTPSE.pyf# r" j*o!E)iw2/ tionR)B^#K#JCGIF()WN(ConfigParse-'NV6(UR- okieI_Z"IJ JIFCNTL.py&%J& HTML+i6xm_MRuMimeWrit9Nu2&u6u Queu%]N!Gk>&Simpl61V1XMLRPCU3JNSocket-N:(UNuStringIOQN$MRTERMIOS]JNQUserDict)b)Lis.)V) N2&JN+$__future__2Nx4__phello__.foo2/J aifc2%Nanydbm'JN asynNm$bMorubM $MNgatexi!ER"IVaudiodev= JNPbase64'JB'db1.NbRjinhexjZise2VcalendaNw$Vcgin CV cgit!#z& hunk=ZmdriN/fJNn%cskN"nfIop~I"IVcolorsy~)mmand6)N$compileall=wR + N#!/__ e-N_aZr (Ujr/const!0X b+[1r[+[R0misN 54 )W&JE.pyasse*Z8,]rpyAge _N.arsymbol5r,]r(syntar+[r0 transform& /n60ervisitor,]JFpyQVn EN$copy_reg IV $MJRTursesV\R4 0 asci]N c - has_* j\ pane6ej\textpa璋wrappE6/NdbhashJNdiffliEN#rNdir=tRu diaMJNdistutilZ1J-3archive_A2v7 bcpp27fncR4Nc:5rcoV2;b|J8 _dumU#7p89v2_rpjE6t 7s[% _winin&s:w;{cuil6c8!u,=exb <J0<%b6qJb;scrip @ clea8!j xcɦJ34mNaYGAy %U4n5oJ9:_dataJY%6=s!27zygwinN*~depFv2dir>3VI QN 2*YNW / erro2Jv`extens*Xv}./Jvg(fancy_getop6vfil"SEmv./v4l>NS9amsv.Wv:2vmwerksJR  spaw6~vh"'Qvh./zt _!m}~ unixBjv>3~aj b~. *YJv-verm[2R octe (V> ospatf ExVK#zKumbfK#KJ&Ls emaim(N /ChaoN >)uNg .EnXNB*YNA /HWN|:(UN -Genera*#N`F+[fHIJf(UfIt !5%f.+[MIMEA*f[.+[f0Zf*Yf/Il+Zv+[f0Messag"NZI6-_vMultipara[%Na/cvNonBfNf:2ivTI v *Yf:f)Wf"Mf(UNh)<U1cN6'SfX>ZfX*Yf7_ at21Zf7.+[2[+[f;_padd%Ny )g2,]Af]2,]quopri]2,]N %f#.;/fm>/fT4J\N /(8o.au5NQ >5msg_01#RpR323334353637383931031111111122222222223333339f_N!,1zl 6_&D$NRn8uNV=torf(N{~9wJRc ing2fzN.aRn 3aliase"R J-_Re2BR 0 )*(Vdgcharma&cp0372bRcp1006121140b251 9%256- 13.*R-=15b252582R14260:~0506~07`776~`8:06v06`606866` 66`86669`87:R0hexJv4iso8859_6R~h46M56567566464646h6T46h46<vkoi8_&$R U1u ],]vq latin:4vA (mac_cyrilli-iv+7 gree.1R%g4icelan6J&v66l׮5rom2Q%turki2*R "bO 98vo<JR U5 raw_:_escap. ~ rot_1 undefine6R jN{'9A9interna.$~utf_1I 1_b6>v 4l64v4606R29muJBvG zlibJ5N/t"cm.JNG/( inpu"N(.%y%Rwnma2M".Zwormatt_.Rw%wNfp0a)V65ftp(uNg"IN'J%N<getpas=qN3#rZKt*ZK #KRglo.+Vgopher=.N.%tR1gziA%N EVhma6N:2hotshoF@JN .9NJ,N1lou2v 'SN,sta,NB>)WN0htmlentitydef./V%/] N#z^K2VK#KRK;ihookima.Nr#zrmgh'VOp:3'V  insp|;%RK#sVKkeyworbK#KVhkne.+V(lib-dynR/ɖ\PC)J-6/uL5NCV J/_failePeN,N6p%5CR25mE lo< /Rh 2_sA /R2/ capi1N21weakref0N.0array-~ oRD~bin6-{~bsddbcPickle/N2/sAIO1~cmo*cryptZN$.-|*XR(.+errnoX~fcntl -Ra2-u .R&..gVB2,rU!~PSYP~linuxEeA%C.~md5)@Wma~Wni~opx*N.0p%eVeN2.cru1~pwh~readlin[~regex]sourc]~rgbimg^o,MK~[sel .~Ashastry trucm.ysc ~termioU~Ptimtimin5N..P&1EN4.3xQN ^R$H,old/Par6U ^Q(&Z ^#-addpaczX^6+[N{ 0W^W 'Sz,r=X^o X,] odeh= r],]N,>^*YN /uWnd (UfiWnU (UnfmTn 'Sngre"n (Un+\fin,]nnewdi[n*YNnM/AUnn&Qn#n^J,]npol"VCn (Ur %nU (UnXISnX&QnSn (Un-whatsouy^>-_nzmo- (UV ne>V&RR\~ macpH JN#V2macurl2 O,V a?bo"QGVwil #KVKca(Nmarkup%2NmhHQNmimetosH*yp&*Nmimif'Vmulti.R%OR S mute!&R L netrEN7!GN&nn9IN#KNMntMmJNP"IRQntRNR:o NlR5PpPNI CNpZmN"IVpi6Rplat-l2/CDROMNKN-~2DLFCN2N .2I6/~a TYPE.UTVpopen. Vpo.R"9$Jzposixm*V*YV?>.%OZ prin} 'Z&SRCVpro:Z>Zt&fFCNpyy7" V:2&QZyclbr]VH pydorH!vn 2nN, o">IN"pV:Nreconve;MV=rb_J+OR egsu.Vrep} rexer}!Vrfc82!ER"IV5 rl:lei,RKrobotpQp\N r2'SVsch:"N sgml> Nshelv. Zuhl2oVNsh: RsitrN 1V smtp" N,!GN&)(ERKmKZnd6VMR9VPse%FN Vsre>QN6'SN) ,nstanY.Rre<NSeD2:ROt2"RS`> V*v:NsF]R"qR'o:QNRuna6)N s&di6\RU=`R]symtabl.:R%RtabnannN$1VA telnet}N;.%ON tempeR$MRL/R@N. auto 2nN%p>=7*9N2 - oublaQjR2outpu6a] N'b.0basCc1uiltieR>Bbcfgerdgramm[thtߦminidooVt7B mmapb..sax-NF B[ scopq/t^NB^*25bx25rl%2bre eb_:-QV+T/p fodd^1fyston6Vst/re_f b)bb Z1VaY&/regr zj)WV N/reperfj sort .v )VR6fb:-_Jbd_Z'fb5""p -J);.b8___R6)vZdbg:O.N+( $.]vRtdNY c|Qb#1_ɨ]V;, Lo6pN..2gasufR4b5ev{(QU"zU(Uj_R,evm,]j]1vC2fv"'.j6 Fevbin:\zR>fV>6_'uf: z ).fv.b_cLY/p6 v-c9\R`*\ Qv:" =Ojh_>gN*5) h@B2ez.V9dl*a1vc +1P~*.v/k aVI(odee],]vcoerc*Xz.a^~a.a~ a;2~2"s_ -_2>^~ntain!$e~Fp1~d"d3vHc 2z<,.zu/2avd,_~ desc" v+1j !T_0t&7v}.a~FNdzeNdvDd.Do>YVO! 7_d 26 vtd"Ye~dI`z_BY~DH+vD+[~Q03 v+:2iz#0.v excep 6v[ext:~[0 v+vp /v/in:4vfB:~* forkT 0vB:~pJ:~ froze._V^yfuncattU\eutu2~n6,zcj d..?~g"vV(9v73yR}69g%]av20vMgetargb2vB<~gette2gV6zV6<~<2B~uzOgr.Vb#=*6=z *9v/:mV"C:y=~DE9vD-z2tF2 v,<4 go 2 v6.~2gd~a impo1#Pv,1 ~&<2vvi>v/large v./j!X_y("U8M2r*>3kv86V-v,]VJ1n"q@zUo*YRG!4_longb|2xv(6ex%v-v2-b-2~marsh-_~ m6+~Fj:y~] F1.vV;.4s^ -1T~md;mv *Y*.Ez/czu>U$V.yh.v2 +[j` _new1v )W~<.avJ,/vCop6C~2enp2+~Xp=io:-r 5o.J~ :/v("E vV,9z1 ep246Jz10bvEpk.~pkg"xv./c~po:~z>/~7N/~po )W~ p>q/~ F8/Rmye 2xG%v:2i~_>zvw6)zcL/z,vpyeAI~q.ۇv+vqg2v"/,v :*vd$2vB/zC/,vwB~ rich>?zB0~ss&bvK )~'_v+[~qC~ENJ0zhAigR-"A/bv 1_ss6va 5seԍleEz%)W~ strfD9~'QEvZ,zvtr:7vsaEy E.v ]seqv./N`d_I/d2 undr"/z,~}sup.v?-_rF/~3*Y/3~"threaee2v",]v 1ed_6 N{9F5oJNWF:J~ ;G.v%9v  *zhiVHokeniz6N?=,rac0vkt +~ 0b*Fv./cz +[~ uc6]vuna`^~4/(v4-_R}9 2>{~ 7J.vvunE2 z1rB9z1.~"u01av.9+z3 serd>;3B~zWser"Evic0v uu2vwa2:~Spv-vJwin1vwinFFvdxF1rprv"M2v,zi>~qN-v *Yz!,"|2Nr:thi.NZ8eOR%tN9toaif.3R#Ft=Z9&R4$R|*R92SVB<N=tz unitA N$RrurL%4N"IN> 'dJN#KNSOLR١MN]1*N ERa2Vwarnin<#b$pNB&NrqNr#pVwebbrowse8NN8 2&QVq>whichmH(NwhJ&Nxdr>FNxmlV?/J0^r2AseV.5N[N-_V2saxVN1R*VO 4nc6/cV4handleB0^wd saxu1^[1xml2R.Ft NQpc6*R&/ %;Nl#."NB3!J*q YF(/A,F.#KF3/>% FF)WN!3/:(UFC-)2F&"IF3/Doc:RFN+[j60|QFD3/!GN&2LN2&QF3/6ãN 3/2v=bu2&uN LN!GF3/SFãRFR,]N ]NF8_:.aN :F3/:(UNSFIj3/$MNO&N#KNȣ@LNs$MdrM $MNk))1NR2&vQ2?NQ2&QF3/BUF J*YF| 3/pjTR~str%OF 3/'JNo ENaGGN"INrah\JKNr$MovM $MR28AR"IR$Af$MN"5@KN"IF3/FN CR?FR"~IѥjI "IFV3/?EN$. *NB*wR-/^SN S$MR4 MobjNVP 'Sn| recipNN>)WfPdbsPXfP*Y'S Y*Yn  Xn )WN .Qf#.W/F ^/zc9FQAzc/cF2 4ssociatFv5oFhF: basivlFf"j2i9?ٔi2iN >7dbiF)!F1g}zj3BNjuؾmum4menv_closAMn.5oIget_noLnI4mN>9joii  0ed'e 0e{ 0eLq.*L1g recn͎g1g"12iN*4HN($MNF `GHRlg=HNfEN !RG8fG !GRERCNa 1Na EN\ %N( "IQ(^I"IR&yKR8$~M"^GjM$MR!ONil*j QrLN Lr. -NN-N2Zr (Ujr%z:+[@QN+[VRr/% N Y )WN> .,]r2_aar&%N&,]r("`\r+[r06`N|60er&ar,]V&ߩV EVJ"KV$MRs=HRlzCuJCR.+RB+zR 0aXR6(UNBWN2B*Yjp{y%j(UjD~*Y&~Y*YN"BQNR"IN7&YLJNs#KNsach"NS$MNSVl6QR$isFV "/"N,.)* _WNdyVN3a6 eNz b29Xvi:Ri:2iN.ffNV/cv]N ]:< N.lXNfB*.6FT12 `.6vZ FDn3k87Fbp8uv2vo~7s <&4F fw;{uos 3k8p.8u=KtFRW7sb< r6q;&v?v;{?cLs3k _6latcN6Nczr4N j/iiA%Nn5o:_3tFN :y?&|Ftn|=N^b2_7({Fn{ 9wy3{=\regist)x;6q۵n3kexizoBDz5B5NYw(NF+[v" d&Զv.a&a.av 1v *Yv2 emFev:2iN5e2QN5J,]veŷ^/cv):ŷ%v):2ivP fv[ ./cv4a9bv.av mv )Wv:Jv:2ivUB|kv7B4mvdv+[vLsqv./c7?=vc./cv>׸gv*>3kvh1,v[ *YN& v-_R~_R#zK"7_RK#KZ(my_"6PRum.(UR/-iTXR/B+[N(s_NN3C"uNs WX*YN~ YBN~:(UN~ -.XN~F+[f"Xf(Uf.Xf.+[^zN+[f0vJ*YfYz.+[f0&]NI6-_Np2U.YNhV/cvNj2iv%(v *Yf:Nx -ehWf"f(UN zT'SfX>fX*Yf7_ atnN+["M?f.+[Ns )b|v\parse ,] 1A1nN 2,]qR]2,]N, +Ef#./fm>/fT4O\N O{B`/^ofF5{rZ3nųZ3nųZ3nųZ35jZ3nõZ3nõZ3nõZ3nõV3rZ3nõZ3rZfrZfrZfrVfrZ3rZfrZfrZfrZfrVfrZ3rZf*NcN4&fR Nd61&(z6:IpNORn8uNV=toN~9wN%e `R ".i .RN.R 33*ԯ-_RI _.)R B+[R0i )QN5o/:2iv#big5_t"`v-.so%v]&κ-v-R 5%chinesec҅J06^ ,.HRFd4/euc_gb23122utN> utf2B1ӒtwjRZF,BRJ8!q9"9!=r9rv#v+N\Rd9k,]z],]] ,]ҽ] ,]U4t25,]UX],]t,]&],]O],]/],]i],]!],]~^\~ +[3[+[[ +[߿[ +[:[+[5[ +[[+[aĚ[+[aš[+[8":~8 +7[6![+[+[[+[A[+[A[+[[+[d–[+[!A[+[v K jjv:, _bvk,eucksx1001_k 3v b6R5N.}aRR/9&RC4idn k^v *Yz/s&^v6v44dN,20Țee0ee0eaFe0e'd/c!ac/c!_c/c!]c/cGc/c"R /c /cc/cvf japa_v+BRo7eucl6m sjis.7mheur6qvwevq,9]g],]reaneuvko ,BNa9Jd/!G<<! |x<x~<ksTkscT8ksc5601!:<܎:<<)T´<´<v] -^*C v.M$%vp -yv2G*Qdv?:2iv& 7fv7./cv4&ev61gv6%iU.v 20e/rʆ//c/&Be/1gvo ms`z *Yv palmo[v,]vpuniёv.avy):2iverN%3R^!"] R8uv"iv,]v(shift_ji?9`vq&3v4>3.gv./c~4> :v]ufv9 inteN2>F6v8[$gv8,]v8 1P`zj /clA5c/cvW M_v+[E[+[vPu&^v.avr6Nv20eNX/<N.#KNO(MN<.%OR"MR#KRut&BR%ONL*ƕN3$MN?'"KNt3"vIgbI"INyg~3paтK2<iN6hNcRHN R%3/>jzn3/* ENY heap"INW!vܓ%N zEonu3/BNJ,}N1U@NQ6'SN,svu)WN+WonNB*zY>fY>*YN:GRN#~K1VK#KN"N"INima.fN#KRf"IV<JV#zK"N<6hp"J:,N΁6+r`q~resou"VZ20*Ҋ=Q .~sha~*҆Ռ[~s*N62҆ .~.J6?~v"҆^N,o.J ?vB(& ^CUX+[N [*w^ 'Sz,i ^ X,]odz9 ']^j_&^2*YN\ /%^W (Ufi&,nU (Unn 'SnTn (UnmfrYne,]nnzYc*YN>Y:n"npacWn,nYn (U[ nU (UnXnX&QnPSn (Un-Z^-_nںZn (UNli&RV0%ONTR.IR oggiJ'Z .RF,R 16]R(>*YR /K,]N&TNC#KN6:ON6'SV>OV#Kca"0^K#KNYma*NY2&QNayLRr*IN.KN.%bOpvO %ON"LRAi*7 R9finde"*N1(Rul~3/.ORR !vGbG!GNjpEN' CNn~3/#KN "őN "INDn.MN2&QN NINRopKN$MN?Wf&NAN(osem+:b(2&QNhpdb.do,Np NcN"NIf'B N N'SNpNqGNpkg" IN#KRRlaLN.@-Ni N~_Dؒ_-_$J{.2-\N^ B*Y~W\~-_~regJ 3/*n4$wR]R"I*ZI "INaf*R.o6BbOpbO %R0ѩLR"IR&ŇRCV$쪱bR<"R<#oRR!JR"IRFRCR9:VNBI'RUR"IRyr3p !GNF-qN"vIn3/"IN^E%NhANr*/HN.%ONr&TRN:(UNwre|ONw"INGV "INLFN!R-HR"IR'2NN# r2'zS2fS2'SN6MN6!GNseFN EN&HN#KNs2N"IR R  !GV. V "IRo ite-W agesN5&,/CompatMysqlq7N17MySQLdINmR..hN2V:connec˗"N1b=suNvoz8/CLIENTEN,QBR>E@J ~|FIELD_> NsFLAG@=ʆREFRESHC>C>c+Nj:b`eE3 urso9Nx'Vuo1oUN{#Jmy. N65*H|N!6-_m]N 4N_2%ĆpysnmK*V-BU f,B9N46 9b& 4ehj 6m"d%A mses$9 obji6:nR"oK >f smro3/!RLmRL#KRnoJRzI ockeqgfIINrFN CRr KN IfbSN{ ,qRg|)WR; r2V|p]2`RRo ztatE#JN %ORtatMR#KRK~R"IVringol*V%OR vp*zNV; &QR rRr !GR,&%|R$MR}KR}"IR&KR$vM*bM$MNtar.oN#KNbtn3/.%ON4t&Jf$MJ 00FRest/185%.! Vst.υNDBN5>)N., Fib**b)Nw /bad "OE2L2ZL2)L2"=nocarN %,d6Rv:-9b$greyrgb.uuD}bouN-  $*4b.4 chat2NgBfau'3bE.cgi-NB`c\/ޝ2N$Far|N J1a 4e1Ӫ0ua/0<a0a1NBIdev7h2&1 ngexb~.bmat!] md[mGV1B"necniEoD1eC153B4NBo&359pep2770(pkg-#.p//V8B0atp^r/re42 ,04/v/JA0o|`NB 0edm :Z%iz*t)aNB6b0"43~xmlb-&%es*EbT-& N}/D"bl6,]b p"Yf(Ub *Vb)Wb r "oZb 6,]j~#- :# N,%r#jso~J )Wb6_b:-_N% .xm b&.ou^ b** {bF0b5".?pbh>.abu3&E%bu:-_v%2bv%20ebaeq1b6,]b 1@vIbUz2z,]N6_PBM1v+[v}1lv.azt/Tz,]z%v -_b{!}_"h1bGB/cvr`v,]v-_v<"DMv<.az"z,]vU@\vU+[~\~ ,]r _boov *Yz\Qz +[z*018"z*.azr3"Qzr,]z%z +[zu1vv2ti6^b I,z"Zz)v.*%v.av]v YY*YvUWv(Uz2\/cv"*z:vch2-%bb!u_2zx zx(Uvqv+[[ +[vnCca P&NB$!qiOW.4mvqmevq,] E8],]z_z.a~a.az>QFz-_#% _ -_x_ -_~"`~~.a~1}~ ,]zo&z *Y~p+>ZVIR.az1z6-_zPi z +[zE-zD)Wz(uS1z,]v"P-v.av*z#1evdvN+z[tnB^.av&oE,v-_z&`z.az&Oc~Wv z?6 z-"Zzl-z 2" zl.az"g-_z*bv_ d62iv.7*bAER" 5ovtv+[v30 A%v3:2ivenumer*v ./cveo∅v )Wz~%z~ +[z0.`vx&$2-vu$Q@z$2_vWqv+v .E+v^ *Yv/;R%uv-_2dv./cz"d-_zo]z +[v iB&(v ,]v*Zev.azrr_z,]z8u&`z8/czm( z,]z11^zW-_"_-_"._-_v X%vE(Uv")]|v\ *Yvgb0ez"%vrg-_v  2A`v .avM"4i_vM,]tex" 7 -_zx z(UzWz *Yzjloby [zj,]z"^zj-_v `mz"84zl*`jzl *vY8% vY *YvUjZv+[v  hexot\v ,]z<[z *Yvy.fMvy-_"Dz_-_ztm\bv Dj:0ez#~6b<_d-_.{jvima -_-%~_-_vi&t^v )Wv6v,]12b-61gvi"Rkz-_v*iTMv+[z0siU>&vi.0ev2i*-)Z::_ *Y/t3-%zv" ./c/cc./cvk 205. NeB9(>3kvm6\v<,]v5v-_vFlo& v *Y~/%v%`;2~6-v%mac$v+[0os2hv%mac0ev&]v>-_]_-_{n6-_v"v *YvClYv )Wz'^z] +[z]Vf^cJ5qvWc /z inid&7Sz-_z0m-z *YvARK [vX,]zpz1rz)Wz>R_z/cz#Ez-_vO]_]vO+[vtno+F)WGmp.v+ normalizaP1v+ >3v"_%uv,]v0=v0-_=_-_vd&>bv20ev 5o%v.a6a~a.avTaz 6%vk*K?1}v 61v"v,]],]\],]7"Fz@2! zty ,z12 v8}(1gvO v )Wv/ ]v./cz'@`bvp.av sBqz' vpoBZv+z["2zb,]~six +[~Bsi2hfz0Razo 6t69 zrpB;Ezr,9vjiD1tvw-_2>v>& d2iz|a`z)WS W)WzaZz,]zE-_vq.v\+[vqv,]"tbt,]v bYv(Uvj>C1vj+[vz.,bv8 *Yv_rGv4.av$7=v$,]x}H2 z# E)v97 z2bcv r219#zzI1z +[vuve )WvI+[v&jtC[dv;8B4mv,]v._v *Yv&ld%v-_z4[z4)Wzl2dvyJezdvCs +uti%\~ ,]],]zli&rz +[z^,]z1avs 0ezese.vG g2izoftspa9z/czj+"~"Yz t"z )W.fjdv;z]_z,z1p*2^z.0eztrK>E+[~^~.a~u(.zHsoF` /zW_d%$v s21gz'uns:b ,]z$6^I_zD&_% zD.az\,]z~6N vt&``[v-vT1vt.axt]a.avU_v,]vg 1/%v :F5ov:=hp5r{'J6qv ;i&%vH./cvH.zim6z imeo&?z-zXi%zX,]zw'_zw.avqv+[z raceG_z4/cz#%z +[v Yv )Wv3Yv+[vY1nv-_2JZdv d2iv% 7gv61gvnewlineh%.2iv!#*c~}2z]r/ z],zR1"zP-_v!Zn&fv!./cz'q%~v@+as#a.aqszser .azgn>Z2vP%!zru2Uv+[v.9v]v *YvHvY-_#z_-_vt`Qvt,]z'z.avxm2,]rp"1v2v6x#1yv-v"aav./cvz#%v-_vzip"@6av./cvmzj$Yr"*rC (Ur Ur*Yr img"4mr imgr*rS.mr)tar.tbSj|gtf_[rit_che'kfI F19 fAq aKV 0xmdqbb )Vn" EV;$MNvNIRrh-EV%*+R!;nXN>tiRdime"RIofI"INdug1RcA2R&i&R$z=r !GR&.R%ONyt%RCRmERm !GRu#IR#KNu3/$MN 1N"IN '" N#KR:4 NR* NS. Nr N8&> R64 N* EN$N IN EN& HN#KN3NN2&QR" NR#KRy'* LRy$MN-#N KN-"It6x1iNx7 kN :(qN3-[VK /NodeFil*M?N R.N 3>TyN J,]N1#a!%5Np B*YNd /e-ade_NZ0eNp 5mi<1n|2.aNz.3*:n^ +['Q"%n[+[nxml:zn2.aN3X4 p^ $.^J0^5EjQNN-_^U_V) .^sG}#> ^q1eByTNV/c% ync6/c^B4j^26+[^0+#~,]^Z1xm'$^^Z>-_Rm.R"INspR$Zr%ON@&MNf#KJri2( q getclustefsc7zJ9oyil4q9 mpm.>_8'c-b%/ak?-_ڌ2/?]_py-!.soFMTFfilpvN32J:R^/7/.%!:sxS : -I 'iobuffEJL6/_ z.swigdepfڮ9ix2depot--prodATXrz]Pf2nsswitch`ez8securett tQt4 bundle>.ޚ>-sy$#m$gwslogp7t! makeirollreboz) (setup-crawlE2)(c6/B undoA Aman/man12.N.gzB"3AJ)a fraj}J> (mklost+foungtcpduK tcps-*\share/doc/e2fsprogs-1.19#w^#&5j*(LEASE-NOTES% 11 2-2.b$/A f)',L#8fXNEmf)PURIFY.*j2#f,Wj+FD% f(3Q5gdbinix~[$indent.pro f -mode.el3Zf3aid=g./f2vgrF.3-2.3.^ $),,U^j)'fj,]j^+2Bs9T-3=> /CHANG8VuRHN'6Z"sF6aRj SO8/cs/LC_MESSAGESd.mF 3de3effrfit3pl3sv3tz)rډtrov Z"RGlnG"G.xuuidgen HV:#I:2&8/b.8.X n2%M>M lkidIV :!,fs#9^#j.a J<>Jump $KJ8edck IR$E"GJGnXHZe2 #Z#lR J65" find!G : O)R R# ext2 r%3 %Rml #R"R8/"rr%R.R :i6(rr PRx% M_::xy.8 &2 U) 'Rtuna Jr8/# p~ var rpmk6 name/S .Conflict s/. GrouJ2Nam J2PacJ6rovideh6Requir^Trigger<0 /.*/ro",ort/hd.3#/$D($|/.*)/software/ \  %dzoneinfoO.\  le,.*/coi(\.[^/]*)$ i /proc /sys /devI*,firehose.*jrc\.d/.*;$babysitter$ (?!borgle@Wcal.conf).*> 1Ds/default(_once)?E >bcelli7 $Ds/noassim_.* /tmptidy\ (motd /\.ks d/I[llInfo=I.*er/(?!p | b p bind Bpasswd\.attrs\.ds!(er/.*/\.ssh 2em s/.*Ŀ -ng\(($|\.tmp)$ logrotate!T,&&& #%%!} i686c[-.].*:m #/,p4  ld  +$libBrokenLE  +(ibNoVersion # SegFAJ #]anl D#jcu &#$dB8tmemusage )tns<8 nss1c . dns- 0files yni.26e#nss_dn1.|2Jhesio12J{._nispluLepcqJ K6IWlibFlv -5rt  ?QSoId_db 0!L !A}statu'# misc/.*aletENnfe%H-seedBp f db  .*  g  mail ms ni opt' preserv\ run ~ spooUtmp y 5!.*/.* _ Uadj5( \.db!#/-Eɑ#hw+$arddisksVT  fstab ]Jprobe \/.*authorized_keys /.*tity \.pub host- u erd,bash_historyssh/s 9 lilo I\.old/0/.*/.*\.pyc o -2\..^K.*)!š.d/ -AQOݧ d*bxbo35PHX"`zbx yo/ ̄фӱI̚snappy-1.2.2/testdata/baddata3.snappy000066400000000000000000000673401477101537200175570ustar00rootroot00000000000000l J/etc/HOSTNAME.old Jxcron.15minly/arpwatch.par J$@hourly/monitoringE!4google/network info-diMJ  octl.save($ld.so.cach  Xrc.d/init.d/loadmodules  .&:BG slb J8rc0.d/K40monsshB60!*!::=1f=b=2v=S9zJ.3=$95memtest !2 4z 5> :6 fJ)(resolv.conf-M RQ0.}B`JO3fsFM~f 3fJ usr/Mchattr ls/pydoc2 JB  thon/F 00 gen% doc/.2- J r/B/ACKS=V=/HISTORYr$LICENSE$aNiNEWvi Port-JZREADM h!Z# cheatsheeJ"Z'$unicode.tx ()<include9@Drpcsvc fo e2 rd_helper:lib5.s><3 J$Z9$/BaseHTTPSE.pyf# r" j*o!E)iw2/ tionR)B^#K#JCGIF()WN(ConfigParse-'NV6(UR- okieI_Z"IJ JIFCNTL.py&%J& HTML+i6xm_MRuMimeWrit9Nu2&uQ}9 Queu%]N!Gk>&Simpl61V1XMLRPCU3m6 Socket-N:(UNuStIOQN$MRTERMIOS]JNQUserDict)b)Lis.)V) N2&JN+$__future__2Nx4__phello__.foo2/J aifc2%Nanydbm'JN asynNm$bMorubM $MNgatexi!ER"IVaudiodev= JNPbase64'JB'db1.NbRjinhexjZise2VcalendaNw$Vcgin CV cgit!#z& hunk=ZmdriN/fJNn%cskN"nfIop~I"IVcolorsy~)mmand6)N$compileall=w BT+ N# L r/__ e-N_aZr (Ujr/const!0X b+[1r[+[R0misN 54 )W&JE.pyasse*Z8,]rpyAge _N.arsymbol5r,]r(syntar+[r0 transform& /n60ervisZQr,]JFpyQVn EN$copy_reg IV $MJRTursesV\R4 0 asci]N c - has_* j\ pane6ej\textpa璋wrappE6/Ndbhash.6diffliEN#rNdirp tRu diaMJNdistutilZ1J-3archive_A2v7 bcpp27fncR4Nc:5rcoV2;b|J8 _dumU#7p89v2_rpjE6t 7s[% _winin&s:w;{cuil6c8!u,=exb <J0<%b6qJb;scrip @ clea8!j xcɦJ34mNaYGAy %U4n5oJ9:_dataJY%6=s!27zygwinN*~depFv2dir>3VI QN 2*YNW / erro2Jv`extens*Xv}./Jvg(fancy_getop6vfil"SEmv./v4l>NS9amsv.Wv:2vmwerksJR  spaw6~vh"'Qvh./zt _!m}~ unixBjv>3~aj b~. *YJv-verm[2R oc+2Ndospatf ExVK#sV umbfK#KJ&Ls emaim(N /ChaoN >)uNg .EnXNB*YNA /HWN|:(UN -GeneratoAXN`F+[fHIJf(UfIt !5z.+[MIMEA*f .+[f0Zf*Yf/Il+Zv+[f0Messag"NZI6-_vMultipara[%Na/cvNonBfNf:2ivTI v *Yf:f)Wf"Mf(UNh)<U1cN6'SfX>ZfX*Yf7_ at21Zf7.+[2[+[f;_padd%Ny )g2,]Af]2,]quopri]2,]N| %f#.;/fm>/fT4J\N /(8/PyBanner048.gi3JN(>8o.aumNQ >5msg_01#RpR323334353637383931031111111122222222223333339f_N!,1zl 6_&D$NRn8uNV=torf(N{~9wJRc ing2fzN.aRn 3aliase"R J-_Re2BR 0 )* Vdgcharma&cp0372bRcp1006121140b251 9%256- 13.*R-=15b252582R14260:~0506~07`776~`8:06v06`606866` 66`86669`87:R0hexJv4iso8859_6R~h46M56567566464646h6T46h46<vkoi8_&$R U1u ],]vq latin:4vA (mac_cyrilli-iv+7 gree.1R%g4icelan6J&v66l׮5rom2Q%turki2*R "bO 98vo<JR U5 raw_:_escap. ~ rot_1 undefine6R jN{'9A9interna.$~utf_1I 1_b6>v 4l64v4606R29muJBvG zlibJ5N/t"cm.JNG/( inpu"N(.%y%RwnmaN".Zwormatt_.Rw%wNfp0a)V65ftp(uNg"IN'J%N<getpas=qN3#rZKt*ZK #KRglo.+Vgopher=.N.%tR1gziA%N EVhma6N:2hotshoF@JN .9NJ,N1lou2v 'SN,sta,NB>)WN0htmlentitydef./V7%/] N#z^K2VK#KRK;ihookima.Nr#zrmgh'VOp:3'V  insp|;%RK#sVKkeyworbK#KVhkne.+V(lib-dynS/ɖ\PC)J-6/uL5NCV J/_failePeN,N6p%5CR25mE lo< /Rh 2_sA /R2/ capi1N21weakref0N.0array-~ oRD~bin6-{~bsddbcPickle/N2/sAIO1~cmo*cryptZN$.-|*XR(.+errnoX~fcntl -Ra2-u .R&..gVB2,rU!~PSYP~linuxEeA%C.~md5)@Wma~Wni~opx*N.0p%eVeN2.cru1~pwh~readlin[~regex]sourc]~rgbimg^o,MK~[sel .~Ashastry trucm.ysc ~termioU~Ptimtimin5N..P&1EN4.3xQN ^R$H,old/Par6U ^Q(&Z ^#-addpaczX^6+[N{ 0W^W 'Sz,r=X^o X,] odeh= r],]N,>^*YN /uWnd (UfiWnU (UnfmTn 'Sngre"n (Un+\fin,]nnewdi[n*YNnM/AUnn&Qn#n^J,]npol"VCn (Ur %nU (UnXISnX&QnSn (Un-whatsouy^>-_nzmo- (UV ne>V&RR\~ macpH JN#V2macurl2 O,V a?bo"QGVwil #KVKca(Nmarkup%2NmhHQNmimetosH*yp&*Nmimif'Vmulti.R%OR S mute!&R L netrEN7!GN&nn9IN#KNMntMmJNP"IRQntRNR:o NlR5PpPNI CNpZmN"IVpi6Rplat-l2/CDROMNKN-~2DLFCN2N .2I6/~a TYPE.UTVpopen. Vpo.R"9$Jzposixm*V*YV?>.%OZ prin} 'Z&SRCVpro:Z>Zt&fFCNpyy7" V:2&QZyclbr]VH pydorH!vn 2nN, o">IN"pV:Nreconve;MV=rb_J+OR egsu.Vrep} rexer}!Vrfc82!ER"IV5 rl:lei,RKrobotpQp\N r2'SVsch:"N sgml> Nshelv. Zuhl2oVNsh: RsitrN 1V smtp" N,!GN&)(ERKmKZnd6VMR9VPse%FN Vsre>QN6'SN) ,nstanY.Rre<NSeD2:ROt2"RS`> V*v:NsF]R"qR'o:QNRuna6)N s&di6\RU=`R]symtabl.:R%RtabnannN$1VA telnet}N;.%ON tempeR$MRL/R@N. auto 2nN%p>=7*9N2 - oublaQjR2outpu6a] N'b.0basCc1uiltieR>BbcfgerdgrammuR BdhtߦminidooVt7Bb mmapb..sax-NF B[ scopq/t^NB^*25bx25rl%2bre eb_:-QV+T/p fodd^1fyston6Vst/re_f b)b+b Z1VaY&/regr zj)WV N/reperfj sort .v )VR6fb:-_RC__Z'fb5""p -J);.b8___R6)b 2^_gb5:O.N+( $9%VD0'dh2 V!3|Qb#1_ɨ]V;, Lo6pN..2gasufR4b5ev{(1U"zU(Uj_R,evm,]j]1vC2fv"'.j6 Fevbin:\zR>fV>6_'uf: z ).fv.b_cLY/p6 v-c9\R`*\ Qv:" =Ojh_>gN*5) h@B2ez.V9dl*a1vc +1P~*.v/k a~K1e,]vcoerc*Xz.a^~a.a~ a;2~2"s_ -_2>^~ntain!$e~Fp1~d"d3vHc 2z<,.zu/2avd,_~ desc" v+1j !T_0t&7v}.a~FNdzeNdvDd.Do>Y~8 d 26 vt&Ye~dI`z_BY~DH+vD+[~Q03 v+:2iz#0.v excep 6v[ext:~[0 v+vp /v/in:4vfB:z* forkT 0vB:~pJ:~ froze._V^EQ_funcattU\eutu2~6,zcj d..?~g"vV(9v73yR}69g%]av20vMgetargb2vB<~gette2gV>zV6<~<2B~uzOgr.Vb#=*6=z *9v/:mV"C:y=~DE9vD-z2tF2 v,<4 go 2 v6.~2gd~a impo1#Pv,1 ~&<2vvi>v/large v./j!X_y("U8M2r*>3kN f)6V-v,]VJ1n"q@zUo*YRG.ngb|2xv(longex%v-v2-b-2~marsh-_~ m6+~Fj:y~] F1.vV;.4s^ -1T~md;mv *Y*.Ez/czu>U$V.yh.v2 +[j` _new1v )W~<.avJ,/vCop6C~2enp2+~Xp=io:-r 5o.J~ :/v("E vV,9z1 ep246Jz10bvEpk.~pkg"xv./c~po:~z>/~7N/~po )W~ p>q/~ F8/Rmye 2xG%v:2i~_>zvw6)zcL/z,vpyeAI~q.ۇv+vqg2v"/,v :*vd$2vB/zC/,vwBz rich>?zB0~ss&bvK )~'_v+[~qC~ENJ0zhAigR-"A/bv 1_ss6va 5seԍleEz%)W~ strfD9~'QEvZ,zvtrc0aEy ,]vsEseqv./c~I/d2 undr"/z,~}sup.v?-_rF/z3*Y/3~"threaee2v",]v 1ed_6 N{Ay_F5oJNWF:J~ ;G.v%9v  *zhiVHokaniz6N?=,rac0vkt +~ 0b*Fv./cz +[~ uc6]vuna`^~4/(v4-_R}9 2>{~] 7J.vvunE2 z1rB9z1.~"u01av.9+z3 serd>;3B~zWser"Evic0v uu2vwa2:~Spv-vJwin1vwinFFvdxF1rprv"M2v,zi>~qN-v *Yz!,"|2Nr:thi.NZ8eOR%tN9toaif.3R#Ft=Z9&R4$R|*R92SVB<N=tz unitA N$RrurL%4N"IN> 'dJN#KNSOLR١MN]1*N ER2Vwarnin<#b$pNB&NrqNr#pVwebbrowse8NN8 2&QVq>whichmH(NwhJ&Nxdr>FNxmlV?/J0^r2AseV.5N[N-_V2saxVJ1R*VO 4nc6/cV4handleB0^wd saxu1^[1xml2R.Ft NUpc>*R"/ %;Nl#."NB3!J*q YF(/A,F.#KF3/>% FF)WN!3/:(UFC-)2F&"IF3/Doc:RFN+[j60|QFD3/!GN&2LN2&QF3/6ãN 3/2v=bu2&uN LN!GF3/SFãRFR,]N ]NF8_:.aN :F3/:(UNSFIj3/$MNO&N#KNȣ@LNs$MdrM $MNk))1NR2&vQ2NQ2&QF3/BUF J*YF| 3/pjTR~str%OF 3/'JNo ENaGGN"INra&@KNr$MovM $MR28AR"IR$Af$MN"5@KN"IF3/FN CR?FR"~IѥjI "IFV3/?EN$. *NB*wR-/^SN S$MR4 MobjNVP 'Sn| recipNN>)WfPdbsPXfP*Y'S Y*Yn  Xn )WN .Qf#.W/F ^/zc9FQAzc/cF2 4wsociatFv5oFhF: besivlFf"j2i9?eGi2iN >7dbihFF1g}zj3BNjuؾmue4menv_closAMn .5oIget_nLnI4mN>9joii  0ed'e 0e{ 0eLq.*L1g rekn͎g1g"12iN*4HN($MNF `GHRlg=HNfEN !RG8fG !GRERCNa 1Na EN\ %N( "IQ(^I"IR&yKR8$~M"^GjM$MR!ONil*j QrLN LZ2-N_ (Ujr2)0r[@QN+VRr/% N Y )WN> .,]r2_aar&%N&,]r"`\r+[r06`N|60er&ar,]V&ߩV EVJ"KV$MRs=HRlzCuJCR*+RB+zR 0aXRp6(UNB_N2B*Yjp{y%j(UjD~*Y&~Y*YN"BQNR"IN7&YLJNs#KNsach"NS$MNSVl6QR$isFV "/"N,.)* _WNdyVNz 3a6 eNz b29Xvi:Ri:2iN.ffNV/cv]N ]:< N.lXNfB*.6FT12 `.6vZ FDn3k87Fbp8uv2vo~7s <&4F fw;{uos 3k8p.8u=KtFRW7sb< r6q;&v?v;{?cLs3k _6latcN6Nczr4N j/iiA%Nn5o:tFN :y?&|Ftn|=N^b2_7({Fn{ 9wy3{=\regist)x;6q۵n3kexizoBDz5B5NYw(NF+[v" d&Զv.a&a.av 1v *Yv2 emFev:2iN5e2QN5J,]veŷ^/cv):ŷ%v):2ivP fv[ ./cv4a9bv.av mv )Wv:Jv:2ivUB|kv7B4mvdv+[vLsqv./c7?=vc./cv>׸gv*>3kvh1,v[ *YN& v-_R~_R#zK"7_RK#KZ(myBRum.(UR/-iTR/B+[N(s_NN3C"uNs WX*YN~ YBN~:(UN~ -.XN~F+[f"Xf(Uf.Xf.+[^zN+[f0vJ*YfYz.+[f0&]NI6-_Np2U.YNhV/cvNj2iv%(v *Yf:Nx -ehWf"f(UN zT'SfX>fX*Yf7_ atnN+["M?f.+[Ns )b|v\parse ,] 1A1nN 2,]qR]2,]N, +Ef#./fm>/fT4=H\N O{B`/^ofF5{rZ3nųZ3nųZ3nųZ35jZ3nõZ3nõZ3nõZ3nõV3rZ3nõZ3rZfrZfrZfrVfrZ3rZfrZfrZfrZfrVfrZ3rZf*NcN4&fR Nd61&(z6:IpNORn8uNV=toN~9wN%e `R ".i .RN.R 33*ԯ-_RI _.)R B+[R0i )QN5o/:2iv#big5_t"`v-.so%v]&κ-v-R 5%chinesec҅J06^ ,.HRFd4/euc_gb23122utN> utf2B1ӒtwjRZF,BRJ8!q9"9!=r9rv#v+N\Rd9k,]z],]] ,]ҽ] ,]U4t25,]UX],]t,]&],]O],]/],]i],]!],]~^\~ +[3[+[[ +[߿[ +[:[+[5[ +[[+[aĚ[+[aš[+[8"f920 +7[6~D86![+[+[[+[A[+[A[+[[+[d–[+[!A[+[v K jjv:, _bvk,eucksx1001_k 3v b6R5N.}aRR/9&RC4idn k^v *Yz/s&^v6v44dN,20Țee0ee0eaFe0e'd/c!ac/c!_c/c!]c/cGc/c"R /c /cc/cvf japa_v+BRo7eucl6m sjis.7mheur6qvwevq,9]g],]reaneuvko ,BNa9Jd/!G<<! |x<x~<ksTkscT8ksc5601!:<܎:<<)T´<´<v] -^*C v.M$%vp -yv2G*Qdv?:2iv& 7fv7./cv4&ev61gv6%iU.v 20e/rʆ//c/&Be/1gvo ms`z *Yv palmo[v,]vpuniёv.avy):2iverN%3R^!"] R8uv"iv,]v(shift_ji?9`vq&3v4>3.gv./c~4> :v]ufv9 inteN2>F6v8[$gv8,]v8 1P`zj /clA5c/cvW M_v+[E[+[vPu&^v.avr6Nv20eNX/<N.#KNO(MN<.%OR"MR#KRut&BR%ONL*ƕN3$MN?'"KNt3"vIgbI"INyg~3paтK2<iN6hNcRHN R%3/>jzn3/* ENY heap"INW!vܓ%N zEonu3/BNJ,}N1U@NQ6'SN,svu)WN+WonNB*zY>fY>*YN:GRN#~K1VK#KN"N"INima.fN#KRf"IV<JV#zK"N<6hp"J:,N΁6+r`q~resou"VZ20*Ҋ=Q .~sha~*҆Ռ[~s*N62҆ .~.J6?~v"҆^N,o40J ?vB(& ^CUX+[N [*w^ 'Sz,i ^ X,]odz9 ']^j_&^2*YN\ /%^W (Ufi&,nU (Unn 'SnTn (UnmfrYne,]nnzYc*YN>Y:n"npacWn,nYn (U[ nU (UnXnX&QnPSn (Un-.Z^>-_nZn (UNli&RV0%ONTR.IR oggiw7Z .RF,R 16]R(>*YR /K,]N&TNC#KN6:ON6'SV>OV#Kca"0^K #KNYma*NY2&QNayLRr*IN.KN.%bOpvO %ON"LRAi*7 R:finde"*N1(Rul~3/.ORR !vGbG!GNjpEN' CNn~3/#KN "N "INDn.MN2&QN N"INRopKN$MN?W&f&NAN(os2em+:b(2&QNhpdb.do,Np N cN"8N"If'B N N'SNpNq!GNpkg" IN#KRRlaLN.@-Ni N-~_Dؒ_-_$J{.2-\N^ B*Y~W\~-_~reg2J 3/*n4$wR?]R"I*ZI "INaf*R.o6BbOpbO %R0ѩLR"IR&ŇRCV$,bR<"R<#oRR!JR"IRFRCR9:VNBI'RUR"IRyr3/p !GNF-qN"vIn3/"IN^E%NhANr*/HN.%ONr&TRN:(UNwre|ONw"INGV "INLFN!R-HR"IR'2NN# r2'zS2fS2'SN6MN6!GNseFN EN&HN#KNs2N"IR R  !GV. V "IRo ite-W agesN5&,/CompatMysqlq7N167MySQLdJN>mR..hN2V:connec "N1b=suNvoz8/CLIENTEN,QBR>E>@J ~|FIELD_> NsFLAG@=ʆREFRESHC>C>c+Nj:b`eE3 urso9Nx'Vuo1oUN{#Jmy. N65*H|N!6-_m]N 4N0_2%pysnmK+*V-BU f/,B9N46 9b&  4ehj 6m"d%A mses$9 obji6:nR"oK >f smro3/!(RLm-RL#KRnoJR"zI ockeqgfI"INrFN CRr KN IfbSN{ ,qRg|)WR; r2V|p]'2`RRo ztatE#JN %ORtatMR#KRK1~R"IVringol*V%OR vp*zNV; &QR rRr !GR,&%|R$MR}KR}"IR&KR$vM*bM$MNtar.oN#KNbtn3/.%ON4t&Jf$MJ 00FRest/185%.! Vst.υNDBN5>)N., Fib**b)Nw /bad "OE2L2ZL2)L2"=nocarN %,d6Rv:-9b$greyrgb.uuD}bouN-  $*4b.4 chat2Ng/Bfau'3bE.3cgi-NB`c\/2N$Far)|N J1a& 4e1Ӫ0ua/0<a0a11NBIdev7h2&1ns1b~.bmat3^ md5[mGV1B"necniEoD1eC153B4NBo&359pep2770(pkg- #.p//V8B0atp^r/re42 ,04/v/JA0o|`NB 0edm :Z%iz*t)aNB46b0"43~xmlb-&%es*EbT:-& N}/D"bl6,]b p"Yf(Ub *Vb)Wb r "oZb 6,]j~#- :# N,%r#jso~J )Wb6_b:-_N% .xm b&.ou^ b** {bF0b5".?pbh>.abu3&E%bu:-_v%2bv%20ebaeq1b6,]b 1@vIbUz2z,]N6_PBM1v+[v}1lv.azt/Tz,]z%v -_b{!}_"h1bG B/cvr`v,]v&-_v<"DMv<.az"z,]vU@\vU+[~\~ ,]r _boov *Yz\Qz +[z*018"z*.azr3"Qzr,]z%z +[zu1vv2ti6^b I,z"Zz)v.*%v.av]v *YY*YvUWv(Uz2\/cv"*z:vch2-%bb!u_:2zx zx(Uvqv+[[ +[vnCca "P&NB$!qiOW.4mvqmevq,] E8],]z&_z.a5~a.az>QFz-_#% _ -_x_ -_~"`~~.a~1}~ ,]zo&z *Y~p+>ZVIR.az1z6-_zPi z +[zE-zD)Wz(uS1z(,]v"P-v.av*z#1evdvN+z[tnB^ .av&oE,v-_z&`z.az&Oc~Wv z?6 z-"Zzl-z 2" zl.az"g-_z*bv_ d62iv.7*bAER" 5ovtv+[v30 A%v3:2ivenumer*v ./cveo"v )Wz~%z~ +[z0.`vx&$2-vu$Q@z$2_vWqv+9v .E+v^ *Yv/;R%uv-_2dv./cz"d-_zo]z +[v iB&(v ,]v*Zev.azrr_z,]z8u&`z8/czm( z,]z11^zW-_"_-_"._-_v X%vE(Uv")]|v\ *Yvgb0ez"%vrg-_v  2A`v .avM"4i_vM,]t*z -_zx z(UzWz *Yzjloby [zj,]z"^zj-_v `mz"84zl*`jzl *vY8% vY *YvUjZv+[v  hexot\v ,]z<[z *Yvy.fMvy-_"Dz_-_ztm\bv Dj:0ez#~6b<_d-_.{jvima -_-%~_-_vi&t^v )Wv6v,]12b-61gvi"Rkz-_v*iMv+[z0siU>&vi.0ev2i*-)Z::_ *Y/t3-%zv" ./c/cc./cvk 205. NeB9(>3kvm6\v<,]v5v-_vFlo& v *Y~/%v%`;2~6-v%mac$v+[0os2hv%mac0ev&]v>-_]_-_{n6-_v"v *YvClYv )Wz'^z] +[z]Vf^cJ5qvWc /z inid&7Sz-_z0m-z *YvARK [vX,]zpz1rz)Wz>R_z/cz#Ez-_vO]_]vO+[vtno+F)WGmp.v+ normalizaP1v+ >3v"_%uv,]v0=v0-_=_-_vd&>bv20ev 5o%v.a6a~a.avTaz 6%vk*K?1}v 61v"v,]],]\],]7"Fz@2! zty ,z12 v8}(1gvO v )Wv/ ]v./cz'@`bvp.av sBqz' vpoBZv+z["2zb,]~six +[~Bsi2hfz0Razo 6t69 zrpB;Ezr,9vjiD1tvw-_2>v>& d2iz|a`z)WS W)WzaZz,]zE-_vq.v\+[vqv,]"tbt,]v bYv(Uvj>C1vj+[vz.,bv8 *Yv_rGv4.av$7=v$,]x}H2 z# E)v97 z2bcv r219#zzI1z +[vuve )WvI+[v&jtC[dv;8B4mv,]v._v *Yv&ld%v-_z4[z4)Wzl2dvyJezdvCs +uti%\~ ,]],]zli&rz +[z^,]z1avs 0ezese.vG g2izoftspa9z/czj+"~"Yz t"z )W.fjdv;z]_z,z1p*2^z.0eztrK>E+[~^~.a~u(.zF`szW_d%$v s21gz'uns:b ,]z$6^I_zD&_% zD.az\,]z~6N vt&``[v-vT1vt.axt]a.avU_v,]vg 1/%v :F5ov:=hp5r{'J6qv ;i&%vH./cvH.zim6z imeo&?z-zXi%zX,]zw'_zw.avqv+[z raceG_z4/cz#%z +[v Yv )Wv3Yv+[vY1nv-_2JZdv d2iv% 7gv61gvnewlineh%.2iv!#*c~}2z]r/ z],zR1"zP-_v!Zn&fv!./cz'q%~v@+as#a.aqszser .azgn>Z2vP%!zru2Uv+[v.9v]v *YvHvY-_#z_-_vt`Qvt,]z'z.avxm2,]rp"1v2v6x#1yv-v"aav./cvz#%v-_vzip"@6av./cvmzj$Yr"*rC (Ur Ur*Yr img"4mr imgr*rS.mr)tar.tbSj|gtf_[rit_che'kfI F19 fAq aKV 0xmdqbb )Vn" EV;$MNvNIRrh-EV%*+R!;nXN>tiRdime"RIofI"INdug1RcA2R&i&R$z=r !GR&.R%ONyt%RCRmERm !GRu#IR#KNu3/$MN 1N"IN '" N#KR:4 NR* NS. Nr N8&> R64 N* EN$N IN EN& HN#KN3NN2&QR" NR#KRy'* LRy$MN-#N KN-"It6x1iNx7 kN :(qN3-[VK /NodeFil*M?N R.N 3>TyN J,]N1#a!%5Np B*YNd /e-ade_NZ0eNp 5mi<1n|2.aNz.3*:n^ +['Q"%n[+[nxml:zn2.aN3X4 p^ $.^J0^5EjQNN-_^U_V) .^sG}#> ^q1eByTNV/c% ync6/c^B4j^26+[^0+#~,]^Z1xm'$^^Z>-_Rm.R"INspR$Zr%ON@&MNf#KBr/assimil`P ]=N! emIuJ) bin/2)E  getclusteCfscqoil~q܇ mpm. ?_'cM&b%/ a?-_$2/]_pyw!.soFMFfil!q32J:l^%7/M.Ro!:sS : -I qiobuffEJL6/_ .swigdep$9"x2depot--prodATYrĝPf2nsswitchz8securettTtt4 bundle>.͑(>-sy$B$'΄ .lm_h>,6 o>'biosinfhnNsum#'.B'pu.M.I.&ustom.)Z,default_rout#lgZ diskS^dnsN >' ecc--works-J.ޗdrome_t:l%O.=(ethernetdev".6- iostZbzip%F  >&lastcrs( B( isten_porYbAl9x#oF' gstaN>'machineQbx misc'JZkE:%ZnamedZoN)I 5sZnorth.bpci ictB&rocessb# raid9#DZF'm.^_eeprmH4N*sv5 F&trieve_ ed%B3p7bIZ &_confi$nsmartra=++ F+Tnsshke+bsslceuy/B'!h5R##8J"_&@ J*p  B%waB#ystemloA#qD>)textreq)*RSmalDott%Z volt#gwslogp@?% -!maka 0 urollreboI2_(setup-crawl 2 #c6 undoA Aman/man1" 2.IN.gz>  B"3AJ1|z fra#J(mklost+foun! tcpduxK tcps5]M\share/doc/e2fsprogs-1.19#d^# *j*(LEASE-NOTES%;11 2-2.y6b$/Af)',L#fXNE0 f)PURIFY.* j2#f,Wj+FD%if(3 5gdbini~[$indent.proɮf -mode.el3f3aid g. f2vgr}[F.3-2.3.\^ $),,U^j)'<fj,]j^+2B9T-3> /CHANG8h RHN'6YZ"sF6aRWur SlM lkidIV :!fs# ^#j.a Ju>Jump $KJ8edck IR$E"GJG'`HZe2#Z#lR J65" find!G: )R R# ext2 r%3 %Rml #R"R8/"rr%R.R :i6(rr8 PRx% Mk:xy.8 &uF&s 'Rtuna Jr8/# p~ varFrpm$> /.Conflict 2 Grou~ .7Na2/PaJ6rovideh6Requir^Trigger<0 /.*/ro"4y ort/hd.3#/,D($|/.*)/software/ \  %dzovO.nfo lM .*.*/coi(\.[^/]*)$ i /proc /sys /dev]*,firehose.*rc\.d/.*;$babysitter$ (?!borgle^cal. ).*. 1s/dp (_once)? >bcelli7 $ s/noS _.* /tmptidy\l (motd /\.ks d/IFcllInfo=I.*Wer/(?!p| b p bind &passwd\.attrs\.ds!(er/.*/\.ssh 2emºs/.*} -ng\(($|\.tmp)$ logrotate!T,&&& #8%%!6 i686c[-.].*:m #/,p><  ld  +$libBrokenLE  +ibNoVer # SegF #anl D##cO} &#dB8tmemusage )tns<8 nss1  . dns- 0files yni.26e#dnss_dn1.|w2Jhesio12J{._nispluLepc*R K6IWlibkNlv -5rt  ?QSoId_db 0!L( !A}u'#/.*aletENnfe%P-seedBp #f db  .*  g  mail ms ni opt' preserve run ~ spooUtmp y 5!.*/.* _ Uadj/ \.db!#/-|Mɑ#hw+ardsVT  fstab ]Jprobe 8/.*authorized_a /.*tity \.pub host- u erd,bash_historyssh/s 9 lilo \.old/0/.*/.*\.pyc o -2\..^K.*)!š.d/ -ASQݧ *dcdq33PHX6`zdc ed1 ٷ ҙsnappy-1.2.2/testdata/fireworks.jpeg000066400000000000000000003603251477101537200175410ustar00rootroot00000000000000JFIFHHC      C    S!1AQa"q 2#B $3RCbr4S%cs6DdvB!1AQaq"2#BR3br$CS ? r2*ah"rƯhQ$Zbm c&ΠV&0*I6Im2rhHglxS2c fZ $Z35f:>DU MǜH,Dkx2O{M"$4\0jtR'dDh CabFvnі OySBC/`"*"_@lyƸ2rh"{\A͟ O8Q$zfYJ(HwIWVh8U6ʌ$eE, 4@D0(4L^Er{4Nt023od$lFI!&h lNTD\_~m: 1h99=!Hk#AV\@yB !c4?xll h'2Db SnFѕ&#@^"D vh6Aߴ_(D53%DnmzQ H"." !@@rx}$8#:3o&.hKԒO7ED}EhP m ̙hDHzF_1%$׍+Bi"\DHDh@XDDAf\thĆ"9}bdJeRa$ & Φ&}\"H 6R=*{D(B mxA*;@>o0YG[1 @(@D(r[hw?XmD5+ðٵ3Iք[6Y]օ&ôko΢{E`\x2O8L:j+CDBT53h,͑?(M"$[qhb%D\!Y(f0h, BVHlADAhPYny@ɗ{Xr_Ed?(lKW#ny0<^!! vW8[! ^xJ4/0?8% ~ `׼hm" QAeA#4ÓٻsDEW:/o1*%2 }rgMD Flؑ48m۴$3DFm%1Ѵa7 '6$Fvb@.[ϴCF}0K6h!gFEh D,P$1 4 h Z.FZ,rDL&,-"RŢՉ :ƨASDEW}6Ŏ+<"@9[A x{on?x] 'Q:BȐ@bDl9} >qbDU^766d􈨿h"wCd;X!۴h .#] VM@i!& @ q,@%/oW?T`SٹThX0#^ m"UٹO=Ј ֌hA;,UqHo !erZ!"lzD@wPjQ1)~ФTD̀ fߔ&nlZ-7TYXwBmqHa4$[rD}*$ABE,, ls݉H 2IP1P_qI\"L =DV,m 'w}8I-r9H X&k8mdXAH&=k46}4`}!Efz @ Tg]#?xQi$6d#Q00GDdsx $qh5_F6 K|Ln[OHb>`obx3*I-q~pr$I>v&#Ovѫ%$"+"(XZ=Ln׈)$T}V{ȅhCksi8cir1}"+m H DdRL)S4$rY7Bvƚx,|!%9oA Va}C{2@/k[oxV>С-h(!;qV=B\q/";?XJGIoVFMݡ DB,DϬL@!ݹ_x1t *&"DD,Y}++"YFܾ+" Т&Pl/r)a- $lLwЈ,͈Sro)+r4Ms @Dxmѐ2xEVJ܌ '*P@ xs(^NcBʔM[¹l ԑ&3;tg|}ŹBUj4IOv ܰckH$_-B{83$R*Oc*G`wD P$S&cxWR6=HD; ܒ&uWp+#-!"Ӫm!r *_!.-"md<@Ysd !":KhV q CD&DBǰ?@.{Cb ;n Y/j!'ktȉv6Ks +" gK4@!pmF$_*2X$%h<@6D6bb+aFawO+Q"9@~B7a\ $*"bvP d `$Dm (-o b٣))tK6bDF@7xR3 {`dw(긵R>їFl. تs4\FT@M<4adtIhBOh9<[ CBjX!oę$8&tF+@C@<%ed-uxY3cR@);F  $j ٻDdSWQnF/R!v@DhH@bO""df%IAH&9 9D`9{A@l/%d.@%{"h[ xEDD%#r E!4@D "oO(˓d%IPlˆ\o @@=DHIi-d9e;XHIx}ńe-L_roˑ$>^`8 +6@!FYw (ѧs"2!Qx΢}apY{;~OhIwI(Lo+c\[,hX!XqsQrcF܂a$[YXQY(]BD<@FÝD!eH,DMm!-$4%B̋Q!<ͯX"lQ0ߔaeGPMc4̥rgɣ5VKL bn?*ܤ_ 1Q11A38["Dj"*؁twȀfF,0YBInc$Ia *@\;!7CL&Fx}o "t&?@".F.6D.7F@RZIּiZ'Xz@7xf=DJ9E")7h 0;Bȃ/4@ &(=" 8b!" .߬ /lnQ0mv ]Bsߔ@;^"Hk#:o߬!?;!@4N>Q`yDBY(0K .oa"'ЕROj 0f _h5?h o+w{bFWhuCv-!-Dd@#ݠ4U"bR(E w6IDa!sȿxdO_hBsܢHRoxʷ6JT<Ȋnߡ"A[Y-i _.YYXжVDY,w"GѮИ&K(l+mLܢ2$yDk#VGЭ#I:f0m3ob,@3L oHF b K[{rq  27k!+%^V~q!(Mh!}܉w؎k tĝ,DLhR$hfBѐܷMd!+kh bС]EּF uqAr8b"͙Dh @Ȉm;BH t$9q7DL׈` poxDT,×"͢ ː j@Z"h |"g &n^! QO+ZlwfD" 4,B{DFIБ:CxH.Y&tY͈y<GGxD@鈀%n"!D}h&FӨߜDՆ78AkO4<#< Ş*!ۨ3D$˴z+;6,XEdE unQH=⢢g;$ DIS4&!P$ߞГD|̅ݺr$|Kw'„XHrL2D7ox+7(6R{ц&uRBH٠4:%ZhL=I&s`Z#;qmFDOR'9;D*,-gX\3$M4D{L U%b0 K*$Ƀw#"MnK$93" 7b CD;Lw>HIhm5AP'D $)853R%Aw"e "XuE@M:6IB)Mit6LRA>XUXl Z1` _s\  O)ꌕ{`6&+ @xlճ-ы$l4EODIѡBfh! @lX20Y#)/uD`,k,,UFidH)66bȟM6\3AMbodLüB=g4$ o1 X;IW->d%DE^!eP \@Zs!$mX=$? qvKVjҧ`OB!ݢ wt/ eh@v# Q ~*JI ˤpN'4&qe ƣfYlC /2#;ƈYD.T \הH$@hhH,ZD="}C`!#* mq͠hDNOwt"7a!#w0SAȄ]6IgFI" }#zt(sx" .b/DBK$eJsלePxW -l m] r"'^ 0ohP"4L(}@$C}2 ćX@LR4H hw5,hw"TAWé+ 2{D߬VZm!r!ETm*4WAR@*P-sbeEld)FC%d̔D̢ՒTI.q!f-ѠVߴIVbsDBAhd&}DD|T+Ry1FH 3D׹aZ^QkFɾѐuh[!b#( 34Z--􆆉oA#s&qhR"f!t"#d uۯHqA@[D# 71 ;tb$} P*"~M nztAHmjy)JV&:k<šbͣ}}F"-< .bLihK@%V+%6+!! I Q3&'ȉ!$<{АцF8 p" 7+` $4RsH}K0X1Kr4w&ʈ#Z {D@xrô@CDI#&͢d[\4[+$D1sx d^߮ )r/O1wxP{0 v$ܳ fxBȥ2Ȁ/^d)w`_D~0 !` 6#B, wԥh/2Rw2:11@dH7 lI~ a{9 0Ho #VcvxM.FpEc,,DبOh d0! _oYY[ [ J"I~bg4ht.[ql }t } جEXY۬dsBI6x6bsh"!",C'D_PHQ?@H Q1"D>@D h#DD[bvDLݺD&Cv COX ۴I $ahD4eV.#] '@f\DCc"-.h#$#~^"Eqf<}  Z"!$D9w;" "nq܄1ۼL"׌ -2h c Bhk*-b^!:n!*[Xdh3"2-X6x7w&6!9Sђ&o$1-w~6[?7F'}aF5(xVn12QVkHx@hKC`_$Ð.PcZDhzs P64MtNdKTٳN!1Ǔ,1naxy 3IKYNNj/e!9\ )(So,CBCbi"܄DrxrY2VdMPOLo-̈}D3$"F0~`b)K#",,*> a #q[Xm$Jgh;􈉯"@[hiD򀀒zv @/r02mkч&R)bd3JVv'9Oؿsis\G;qjdb2'I-3e(zAoYgZ{أ5:xOIE jU.sx?$WnW\)%[h["mkYk{Vik<@x,DD*Z.`XKD90LB3"DV@z#;D)EvD$V _ w#xX(D1ѧ{B($&?,;Z  }B% @V,"<-̀"xY\ԆׄGxXl!-WDB$} *&ul7ˬKA;bBhB!~];1 #$F]j Fl/2h˔ |# Cg]_VD@DF6$ȚH;`!LIGRvH˲Hb[A4eS`+*"IvCm /Z%`؆F?XՑn9aob=_1>,aD $i,_!xG#XbR>3AIa()6DBXxdݎ..TZZ$覑=IBN}f3ɍJG,SƂ_;MٴgN`K u 2[\L6Ƀh( nq"ֈۿKD_DŶLxص$׈k1Sxlw ,/( JAB4(Px7XͬQPIDp-,il~!JZ&%SIEJo]cл;cIQ >(ˑ7?ˢp' ZmcƚiB,}?CMZ?3.qmkj'N{4P a{? V4` eL6 -:/ffBڹ BeKht_nQ r!,FI$_k6!)fBR)q aCVą()-.DKNʕ :@}B[ ;0eVM]&t`lc?vbixsrL GG&g Bv'Y2z2ljRrK8UIt;rG(Dn(2(k<,^,F#*5ŷInM8Hx,1838sdʊdЕ\x&qGn~J;Ts.[?8%DJ [2d N-Z,ċ,w&M $<$ ngAp2:,D*Qyd9y9h"Z8W7a$&,QnQYrDUrzz^$]6ăCef\B2gq&#IFYW h54[AnX+)f 3D>N^ hzmx!+uhHRxh Iv6!p)> v)"hyQ oDF"ho C1'+D[BhE;D %`܍&ȋwh"H/ؤ!Z@I#8p8&|L3A* A 3 yGW׬$}rf_v,N]U]W-r"rt:E ~M}{^]yߡljOYtrNSk8Q4ϚE?uYYd}LiBC z n> :4rUv1N'K(XĤ3'aP$r2Vtj(:@K>֞RhN4Ih `;vs&l!J!6)X Om&XvF 6w",kvc#}Y$$=IhSg022-HJ .Y_EjI59j)T"\r%$]:8+i:]m>8$c7IҪI Ve(ԛ591c&::u4륞Sh>EjFg˙@7!wهL ~1 G6M:NORGKW:|X/y]N\x2J"^tQ S-'rQi[RGh=:2{ 󈈋]" KBH?"n" 4@WB[xDPY0DK%FH5r9sh4DD '!d?ȊÿNXY RDi\1E&0z1 r="TlnOQx d$kXMnvVD]6(Q#;\"{o_/YKFOl>+*C bέ n #)..aŠ*4mPD]DLRIY !> XD.=+a8ݢ! 54D\1 & {@BѢ @v2l CV"ohQ-#O8H9;,Jv/ȁ4 $Hk`'ci +=A$=#QVmKsgL'G⒗JOr̳z*r)6ZOX9`D{r6fYI%n5urkUJ@%p՟Ěr|AQwv Kr1;1SS698*H#@n6< g <&4HzySGk5~# zm#NTXzKv!,n'SQ9TǛ)4vnFJlKZ$ʌpm2Qn )` A1[S-n,9~#Ǫ)BRI7y4+v%H&~jLYIB&ReKU}$qIja rz9Em%~nO;iՒXiJU)Yxpu;9qӮtu87 6eT$+1԰E't9YN6YtIL,zjܝXG;9j}[>od%j^Yq c%8}$gK=} NWu->m̳'skG"dds"Q! lA" R==.QP @0HwDŻDEDA.olDD;Dd o } fR {s?8ȉs#`M"Ym lv~^օ"R @NCVv#=`1#S B=Pu PFoi[]$T`-˖#$$ȝ!4,:Ɨ"FZ(f O&hZ!s '! q)(:,_$lCD%P TAIخcodLDѤ{EL4P&o HF6ͷx !4 Y2t?xZ $-hDLִ@/l[ooD==B"c5dkt # M"@0Q P PZd :!qxrlRB_bhď9$"`*#v}T8k,tJ&l]Cnq#:kq83WsFw0JQ HaQgZ9Fz($xuK7.sIyf}yS|+s>PWsOH17nxߑGO:~؏<;p**DB0GC[è>h*3w&^'QI:udg@G{ydʬu(FOPjXsOt|靼2`)/e)No LUaDfmЁgz#Rqe)(Y؝q%{c)ZT4ɡR8?FH3t-Jҙy8ȱ7\e&ŮC,y_3KR*4e,?,>()*1xJjP̪p^G<>0|x~xQ4Bt:Hi5IHM]#y2NG,1)DlΟ>xY$ xX R&ٹދI#5.jx<͞1|N9-~Fb1XtQ`t}S(H̐r}ΖJsUwxMx[W"'ef B[3 b})a1. CJ@ȉiwPФi!fBCho$o1b"" D8$?ED s} D(CpxHx2`,$ R  4HOc"a2B'=!D{}& ^#p;mAP;Dko1`D mAqӜBAV}%E]O=dSx05݄H3h,l&igp 3j*dLj o1[x]gTԩ%IIԕiJoꉪk)IC+nĴ<"/cֆʙ!:Sv~ y#-w8nHs@ mDSnqʎox@@t-MLMNZ֊Cr13$I* O7_\Nw^k~Jiʗ161?7iVSmϷ>1^nS̡*ZpF-h暟|匫bHQNPH8_p ktd)M)2Gt>3\WU&vS;5$)ÁN-Rn 4ywؕiiߵ9*Y=FY$ E&]RV?´W/ۨG Oxgse\j(geTK}&qwtr70us5H8U%V5@0%'U THQ}\ҥ:To)gẨJ>#vLQx*mT)2dLC]$sʮ&dt:I^˝8<^%4{}v;?OL=M\2_<(IL*eDJ$Q;x&:}4q|S4y3WW^80?<=JsZLs4 Q"m0rn_LɁJ6 ՝o}kOU˽wEV\9\P.byNl~`%`SEJS#ͳ:$Y!0MIi߷W#濉OUN ELIu}꧙{8-c9)Reb}eR MX ̤ݚ=}>}IIy~.>Jewi N&0Rny*$Dkx*m *:{N Hl Yʉ7"'#ۼ "=;B}!{H@-d ݢM 66D- )&DAF 2~q"&D^hx5oUFT"&?sb+ADV12b}D0I _@KD;?h "9r~e+󈨷EdA_(S7DD" D%󄬁x Nxu9=b6 њ4E@_X Т%3XoݢBF4n{+Ν2E,+ZCǟ,(ϟlyO<1K0&U։uŽgǏSoskRwI{i;O[V)1jBv(HH6g A#I!siDL9oD>mbh4wf]&;I:|2TRvP{FѪzjJ2"R&#܋xfڳ)L88ID(I$ K5{^~Ι=nM}fhÄ5sS/R,,nrqN\1r9xdɸnYl -sq>'j\ nKmΔfz9ݠleȇGQ{aC[ۑ~VSSjME4ѮLz,}\S#\8þ-We~!$Rɪq?!2֥Q]a7dX^-D}ksphqKcWã2Nᙣ gg"N)`1rDRIZe, #NJ2it\]'zrwOt8NcuaDSP%f}tNiyo<7굙/;>ND-Y՘G?yX I&UR%j^SwLy3>7 9B7 ?(Is"@3fI*)K52%sdCIm &#nQ)!d#CY B!%;+!Ip?H)QAt*DC0cM<gkd{'|cʩP% \}x4,ڎqMtqt>a7r]> G|Fu,=#!ZEKDly_h .=!m2Pm$)=L sfۦ#LTZ4dԙzēbNcw+gɒeLRDq4.$ E[AqK4jCTJ1QN勃rwN#As2}2XJy ?x<3B~/O|+5M2IL KnB[tlmmaqg^N1L*d)53D[;3#Ũ./ <1}o<É y WJ-$X|j9Tu*ꏣW%3>9 O>SE_N ñK3J3~/| gA2gUPL) D;yy5 Jm.ݏr/q(rǕ=3`DUomGuI1R8q}XKǂK&mp,Sb8LjjrVj)ZP* 7xXd|IO, 9ߔ>'Yİ&PfdJLT#|\3P>N6ƞe7kzTD,cq1vBMEc%?#z;#D%SAb7څt(9|J4E &+* :RLZfwm2εɨ0 (2:4s?|Uƹt)l(/4Fl %rj3Ay5]'If}-RyoDDB4ʤj3&dQC,p=?6?%=F?iP˴y}[1)ðq%U *Ri(KThHPuI6R^6hiT;m~`j2Qpy߆-8x}x~GOiծg%OA𷑳GU93%d% kG=h-B<6V>B qq"R3m@io'cT6xmr9;Ǿ l۴Mv%1}V]j+IwhEFg;^Gp3xlaEf8L S阞i=AOF7GsKXfE^xO"Ue=e2ES>NeMJvv5>->N}ϳ>}xd\aʧMLժYJ9cmu2ivV&\7j12D[7KQuPmg\"˅W~bp;1S㔸tI+?cĵڼ>._kx |{O T*#q.%4QM )'&o?vP%-eM64q]{&^(+lq)[&h\I84L&'$zORmg=L'?s B|f^$yJVGӿ}}|j>q 2YW5a<5%KW]c!8-5 >}TURZK(F>՟+8`j)W8!^Z,KXvy|=B8309(.FL#(7g! ncNHbh9DahghI30=M1ãAS*VqSxܮ3-+^'X E,| z\'>ɸt7;ǯԳ+oGg%1_9o _pŽB+shW!*҄TO]EJ 'RAW8m)W|CC F+π3f!1A>&F\ˁMU>Xi4tjHC D:)'ǿwׅ^sM57ӷ%} ~<:qNe?ò~[MvK6RqӨkZVꔵKJbO|V1Ru]FYgg=WvN"kw8+Sf|B~%@LFmrO:ɦ8dkT}kWOo>jx|/7I)f G#%/kHhDlĘ0" gL,9ۦ>Bh1}LA"`$BCּ Ԟx.33+PFkǟG)wj81~Tu9rZ8tg.9=? $)GT% ,Imh#xxxM&?\I̔1'pcMnϳ3%Ķ9e0 f'0MNJ,k[!ε5,˾}L28g]&rN# ci(; Fäz) "6" `1fعf?XV\ 4=W6J@~w^;W,tC4p g>9c-sTf;AicZl?7<«S`faW,Gf~RyfdGxOlkh> ~5qa,QatLt2؞v~ Y?kx% >"AUQ'ȝ-u(ʚAnw m߱7Q1n p}ysVbx O>x Z}m_u=\+)B'ItY!vt}γbD g~D:luYWq㎡KxeḾ`#RxFMBP'fO$™7i<яzVʣ~Ãp ^TS)nf Hǫ˙:LsLD|ZlWˏۧt|=>xdϗU5ɝUAF?Q?}sb\/ϊŚ Uɤdx.&YEZ Gs|atLG {Y^# ! V˦K֠ ` i04EY㵷ψ~E<2 NR'r@$-]6l#Ogx;vG(mGl.]E=\í3$%% &ĕǥw9c !Vx).?C%UԢy1)ҵ(I!0<]>~;:}?/{3urp칐9ɥ꼕JZR(ڪ&*ֲ I* [%%y>r^ɡt[j'DE7x^HhZĻ *K9{GW_~ ~/l;i.]=j0n9qf4f]u,&T+>r)>Kic,.T5tW-9%,K/4y>:M}}>7WJ*['BIh->rʂRXlI6]$.v?÷uOF'3hgΚB?2L[Cahqcmc> uӃ`1*]Ze|˜eZРQ ,'W9+#q4y^2PO[2um26’ wF$C#hw5OTK]gf?N|gĥ1MrЮLC+{YF~w}V_Ϗ6' =OO$dz<6vNȘf#A-28*pNRTSdo;:/ɦʧqk+k wa(SN[ f|ðIMyiȑ>TX EMNj"9<;titn2R:e 6UA #v6qԤ2 ѐoaM<7 צBuLXPfCA9(gp\%IN<(}'Sq(K5HX)ZKD{dw60~SOvL!rtq$bN0tS<'N=V,$cI[q13r#$]1=5OVJZJ#̸t}x.<ؔgyf85i1<(ji)[Se%<Ii~8Stn#8Ab$9ؼi~ٕ㎑#blքѡ{FF HrH=#CWr6đ$$ZN4"a,$v0ꍮf乙ԓcDwRU$.;$gtu!jNU)#Qg}g$ i݃J蠜G)Y P3fR55yOrRw.,5vraSʶ-g y&kWe3OpĤQIȗC$@U*&=M.7nS~I~;8$̻$;j'Zi:K*c"\!S.g.~J>шK]ӈOV1,WǙVw}?]OEq;=|KϘbƪYu'lً*Z̘p8<ܳrvxŝ;J›GRX, *Өh*4<2x/˘bKTQoYfHܒx/ yp4՝>.)œKtYXo ښj3%ZHHH!REqxFQTԪC1l[!"8|L$ $(٦y^;SHBpr9d˅><)8QRLN8xԓMpBԢt|WbS>Hi?tߺfK}/TWx 2FZc>A* Syd$2%$ |7\o%ھ]]k&ۿ%ƔפWnKWJ|[#}F# Es}[~Є ԛSH2e'܈iC*+{/%QjM.ҽ/>Wf<]53j&.j)^=\Z\|5G,;?0V*X!)50wXEzjN!R \,E %$s#'4låPq"aYH?jS z:M"?O[Y8_GG7~*oU]*bvtS.d1\xU5dź_{/#9/OiL&`zwL_؎i7isc}ͻ͎Q~,IzGr)u8$=ȸG_=f G©2mDJJIQʢGN9?%،JǕcS;%l9r3F[rѤ@Ň! DB)X 2w ".LD@Ah;fAPsX bi6ˆ E0ɚ% װjֆĩ8@+I!^DD}bb }W0d"++"[ "waTZAafH3ȉ򈺕DLBc vi}!}"'"76hܼAe"$v(2n>R"7>ր_M#D.wX39)HhĦb:f =ldRNKMaǞCZ<_c%%Ts׉r3CO}GfpWD2TĊrԕvz_b2又B0nS=.N*?Q:ZyMĵ3ōJ#(£͟Q3W^\Qʘ]z%StPQ|y]O|(O8ōeu F8 M g=\s⍞-F\[؜l峮k q3'pgiJ%LɥbpbDf&RUo$ۙ!WJ3udJJ @cxN9CMtֱ?M>~3/RFze䐉bbA̎GLġ埊^`1f:4PcRePJIݞ?I&> ;0 rII$a4H>VbS6U <ikr)$R%C##?k/gsKf~<~4%TH)4JƀIHp&>|>p,6,908;g^jX( Q͐9<5BgOM5.QIc{'KA}M3[& X.gP ]eD.Z5Q4h[D*b%69!TP 6PJ}"9"6!n(BYFj,w!H]A-3*e2ۓ91$?z|>TeP$(iy3E eDs[9d7(Y#rtzU~7WVŹh*HJNOxӯΒ\Kdt 咒P*jYn(烜ٳ Y͇%+PR*dsdyozy8rcUlzM'B;Ǽ{x\jN.ٌ-sWuj*.<2jTJ>Le)Aq缪iQ|,/zXv#VRL+jP!2VMF{+?\EYdRs55M4_ @d׉sA3@ l&<M)pZSW/K8l sY+ʙKK&k bHsIRS[fk)[3|P~^ 2l\D,S7I UW),> I1f|/-ur޼+}[n3 >-1hVX*CGGO/ˢ K,*RnX%)Iry|VK~LdKW;_G0.IWC%`S8"s'uA5:I%iXZURC@*z|/O??s> c~]//Kr2Oj@sW V Q9~bwyWZm/vQ߲޹h9q+_]/|~|K;"8bpF^/$j.ǣԲ?/Ej7 juf5Q3]2!sD RN#v}xr~gVV3sߴzt}|U7J4ED N6FV" &"" ![\C(A\"2$" IqD @$c`#xQMĈL,vHN u *&gr acA{ƨ3@"r,F^"ߠ4Vh$ gshĎpP EP]uG{Z$hA64rn %8yOku !6|鳯u<2VJҐOӼuĦPdLTe;3v({דt֞|T|xl[0աb #>OcJod^"ǔ %ptj,cxVg(91JB!&{÷l4O&-a0w3_<-:Z5 {lż3U,l^h<+E'-# q7gj'z)Ds>*[UP#ͣ<^!b2jG&b R? ,U(hD+BeKl2ql}4`U89K85mg1:!S72$^Sؖb&p< >%y=3O<ʵ3៪ЪZĄ멚_A4EK7^3j}.MW^ޝ\T q̣겆mw䌳]Y8rJ X=KJ̟2e:ʦ2f 8p'ժ۽yugƪ Z/7ѯ+5sf+o2aYf'9U17KRR1$v4K 9ڽV*UfMHuj Lwx_&jfUO}rtԵtJnOM㧬αau|y2o\3L~9#pʕ4Dk $Z},r Y=>sEo]>lWb]mDɾmI*5EDOơ=őnxjR8Pz|TuJZNk?deE2$I% t[bQL,Csk%f4,NВ[P؈)ع"E$u"0C&@_!ē 6@\ bdWx-7T#n 0;Db d(I?xРhZ+rCn= ~;DH[IB@}`"Q$LɒlDNLi0Hu;h*n[ 6_kNXB@{VdY"Egh"!h;A=GqFu[ Fbnua4Ax&"u @̐F[RRDe֟[:2b] c{lccBdEB3DT!Af 3‰1 ^*o MP$1 4 "9 H]9iI<_|3+5M%-*Jr[܈7W~@8ۗ3l1r&^YU2NX%D~O(a\>G/ WNe?IUO44')uX{Ho>QgڏY+نJ6j,sI~γbS\8M~alğ;5.(mrH/s2e RmGmI!l?KT23ihϴWAL%E)S{GQ( Z8ۣ+ѹ5A~[MVTļ)UTsQX,1ɪr}ڿZ~,rUm IMtjIc|ZvϹ o8 8[3.b0̭ # ROhN& >OO'W~#urc>r_|+3 ͙)Q.wZA; <;"\kgqrJ[:a4iPO%,NXBneE{zœ|jDwĿ3p7a-2V* "zҵH)j wYtw6qjGxsyv1MWO WkO3|কjG<rĕ&{:~s>6qihR*S-g\O)'c uuoGNlO$HMf5*uME,8G/ɖbZ=2*t&˫DAt:ɘOc@aԎU%8_GgOboS/ʂ˫RX ZU! 5FY2R`ikw'z]V/kR]O^ 0!jm<{)S>rRBh%t= Ay׃_/8k<6ʠL֐ ՑE%25IyK ɗ4I/ˢo\0 |7r^w؄ǟUc9i2~#Y6LsjP\J@T4(4:O45+3x}dz''Ηoc˗fEr+՟.<|?_xs9SyKS3Y+DL .a$B?${t2Yl%z.PsfJ' q; xyU3YLG:~):$iHUB- J^Lt%Key<2W'?4}˄%~2X+\+zzRJ|c1\ٓ?:+P)OwSps}_/>)Kc{ÏXYx"D#>S.ϔ'KUt(*TfeI-H()xLJ$I}S=oVT|'´ӈx4Ҩ)й4鞩-~Ju!Pw1zLQ\o|6Ed~o.Ǭ*'-,uz^,Gi0 $Ov`N\Fe ZG4(F0UuDل%*R#Wg6>L ͏ 5/Pp#8e*eV2sk.O{G+=>. W/\4rT~~'qÏxʹ>mU1.@T&$(b'&.߼KɝA9mKr8g//eF^0싓8yg# m"fFl5>b }8MdK/Żox[o%H Q%{ǿHX ID,ٛc*&ih Jn #HО`цLʈn_@l9D ߔ* "؁"$9ñȎ`P/ !=ltbfM^2B;<;!4FUhdJ`v`&{E@8~ !ktR+XD&\Vj˘$$p$Efx XAv"Fa`cB`` u#(oפ BM7"JKD*ɋA9mh]_rAdKЕI"H'(/GQmb $h(D ݶ$!B5BʿWZOϤ.5D۱hH4!r D.X}$lh@F&HP.Av;) \:dTRJKDtϠ/#fe^ KTY Y)>+~;_},CJK*3ƲG/T?gqa Zig+XUֶmk4QSƪ~'" r~gi3ط]4Dʹ ”M|?#O=D $K vnq)ylo>p^h*au$t!>nhu+첬Qut^=uGI aY#6:WGaߎxBp>oeYPxma+O<dT̘ͬDs%7ohn>Ѹ=D!^/;)VmV 6fKOuȺpI6) M0K7g{䕡$S_yg V"PSYJw]37ӦLx) c̿?zO [?;=߄pSL&mE2i(Ȝ7br2PBA#VO\یCr}?  k_k1)2dL)$ΟM.zk)DAk$}~= #>v4'|=wyOI6!W˨^dN-4%73 y`o㬋5e2\^||Ŝ2z>,.heզJRK2RR@S>[8Rvgr|ǟMny s.q_?Ix9KGVzYa(@*" ͷ&.ƳŅSKӹJ6#0_%LdVJs{8寴U>G/MqD&eUa|U(B%\![$7{K]xX4S˖$r{9#9&`MWpOenj&u l:͘8C+^]vrJTpO$4L l+-ʓYWIKM12Փ#$mEI.5C4q:bXMPH2ȓTgӀ;Od Ï/:FgU*I8ĹKI=E4R˅ɘK?7MfsmPJ) sɞirӫ#ʦ3;'@d̓Pϔ}Ckt( +͋OS~=]o➣&Z{_.m#޾<`,^GU<9e)ZF9$ϙSeujr Q9y1z_E|:?Z̹8/FXUTxuWSf钪W4Ȓ"l,pYxTk8\/9v_o|KɜX g0y4 \ L K*f&Xi\)&Rf&,MwǕ|?OO.\KItk/\CCoxԼ1VQdTH¦˨K5(IJ6$zZ}DsSk\cKn^Tm~ pLOq58E7d)*Lʽ3(c|9egmXr)c[yN$֣1 :d eKBy~|zpݟk:d&ĚN?a (SP o1TVTU2XT R~?3:G>EϚsfam;y<*yƛɹcXJ]5 ",ݒ6cıb[= 7ru{%ɟឆN3⋋w9YgS1T 2LvuruYd4zXn@F`Ovݓظ4 Tm2wIn+s=RNч ӒgR_y:4tV}2$YI!٢k$ thq 'la#;F2Eü] 2&ZA؉x(̓hra4"hKc* ‘-K91"$sD"K${<%KC͠ 4h dޞ$g(#TC2 `Ćw}4=VDi$>є ;.{3DnQ/0 ;6Г 1(5X["&$ě@TiV;Ed̒`aa~psPܺBgH]H)"X> 8]DE b7xE @[q]HB۴q벟LS$AS%7G${W+?JΥ?1N}x*Y1}Ocõ+["] 3f,,_EJ-=/kÇq\^QEHI)Is~qcPܴ:79>|bٓ)+ı\H M.P>p'dW?>U!H@"QRK?7`Ρ/㻳| Q>+d5U )B?zu|1O s8Ixn\*TJB@curJnrnϢX>QifN(xQԹsfnXvkE>r{' q ϦiL" -H ZrC?+1`Ȝ QPfh^%KU4]_ǥyfxMp*b@@Rv;iƳj/q^ڋt|¯DS$SyU~ AMR• ׾1\WNg%$_<ʕS%K2m6E< Ab#G$='h)cN_:vRURT\'ZŅ֏?Sz;t8e(mϳ r.]&3Si8Jp\:f^dG D#PH4jҭШrFy{tw#f]}'$!nFp"}#"Z7d)H /1!Tt!scqOǛ+lSkޝ߅/X6;L45ti%KIQC$Ӏ4eqYUSe97OߝPg\b^_BPjV DTYaH8ub1^dz||)>fP~.˒Q_~'go ӸS2 2%LUOR !uQ$\GW-ܞcrK伷C%p*М2LԑiZ?4͉%:R-LV']Od._ \^̓RkTB:|o32RO ;!N~7_zZl;.|z>_^/3W9,ʫ9KlX ճ1)%>ͧz3[^z~ׂk5|9u_heԢDб&R%(sNPTurUKR|#9UxplV/O)R2HA-f\^/<8^%*<7?WXM\\(Ht#5-ViϹ  6x'< LJ L>K2mD”!'wn^N.9|Ťm3Y.m$xbwU4:f3HK7Pqq%&~Qo-Er'XŃK~T5?Uw\-7)֏(Qzs&l/:b{O(ϟIpyWL82G?zT_gI!yo,f3E@y*'uϵieZ^{}c~g-SSqSg2t;3ueNH/FdΒQ!Gչa{5ptԭwF3%w>DN >?b#NIL'NS$qf]Î"YY%A b"=@H4vxi(|6@%WE&FzXBkaFtqf;iJ^1$rAAӉVIK)J㫛'[jԟOf8HZ]-k-Z{34GG~x1eBxLi.c &`4L.XOhh+>^it71S<?è(K)'M>YG#NHΓĴej28՜20q*iS ROHy8\Ul9%EU-F$fSK!N?<̹ ;Iq-c18JYe*`$̣oI(^ܾ*932.apyT%ΐH#bMn,:ni~M;N9d{(bYHı z 3H6`J#o7ٹeƫn],b2gK圸u5]QGXd͗0ic(< L iIYq9ps|ۃK񺹳$JV>bt)d @l@P^ϳxjdY$a8+0eaj)Ţ=rWmIXq%vw0{, pű?1p;4U6Z›nV@KAN,dq8_/{{&%/ }5U.+K̔|90FT.t1 L.Y*JAJւqe̞XMlSU~p`>Huwuϒ_ߘf#qx\/+6TFjSO5 &"ZFN\NI#)7gy738 #)Ne2,JV:L%L_ije,iQG7Q.xc5uѪM+nn!`=M2g BzPL PII SpXMdɾHvǃ2^Y׮.ϒ=yMNo=MU.3e-+P.ǒ32G8TrT*.ٽo.;]LL˟|$Z զ\N4) Z͘~Q˧Wn_mvz[a54ئ¤aTx`5g4(KOwQ:1iBx7ٻ{82 ߧ9_W:#Fe3cؒrp:%4%,%I/q.iCSnņҟ[[uvT!/x1af)_8LIq r_2隕%HPTZ7> ˦=n~'G,51㏺:K1~^L߉)ir\֬/$z,=# R4= *(i7ZN~WII$/wrCi'ϫmIu٭Qf^h :R\r{!@Ah5Z}F/i gjtٰɱ>x;DUK6K2]e֣LEjT]^FS%+ V%B l_hjqV%M-;-`^iu_7/]~/4"HNB0kWrw-v="bN%e@)4YSZWFIKb-x,̀[5PmbبD"Y\Dm [+"Fs\x&fҦ6~Q2ܟx1!snOo > KxI"dJ!Bw?X̄й߳<+c ($@/hȀ׽-цf!b|OAvdBNX'fţK;gF"Pnd@XxKw 4i!enT`7å.Y%H8rBjR$$ ;G4xԺH<~¦I2? )!,ms&ҕMuVwL>.HDHCoH9ܲU~)0LaH,)$0lx#x/C )TH \> t>||qǡp|NJG%EEf$Q?RxVJYݘqwft>2 OS ~8*L !+J366pG̣(þyyw6 82>b 9;HF;8cGa9vt4Һ$-d]2ʹ̖ٛh(H˙ s\dx ^Zڜ窅r9&:e(&Z#LoOW =,)Ǻ˹[xj S 8 T~JkZ%**%cOcB1d?joqpo}k,ü3.qإGQMv/⏎fRtdϚW!XD$W31@(Z8N玧$ys}/y`;-v-hY l҉둇(i%e.f 5iOq8[Q}..uI.$u{/?%1[P8+=AgJTLh_I{{r?f(Jyɾ-?=S9PÍ/ەo׹S":5&VwԘjr8$ҳ8{!KFK6]\|i@փ(+Qp'rKoG7!..ʿQ&+/pW1IqM:PP@Ҳ`omzGJ)֏>Z)ej_:ONQg3M8VThZ6ܻm>N^Q_v=}|<|Cg.NRK(KB! ]:- #(;99Kį~Ts#eU-|p:)f)E2PJBTNǧPJRkmӧv(>%/x[h[8xTQ32JGTSN8)% +_u/^= ǖq hܼPbARe+J5=Zq}ߒ8޳$r\Z-v9'1p+Ù9]55xASAxaUA^M/d\!;*XeMeuˑz. 6ovW~"ku-KwT{mDrݝ\; :d3Wi34eDϴ>@_Qi0LOLvZ18qF-J'AFeSU(1@xl;31qUZrS-ncms9p㒉N-JfPw8?~Ϡ JxsehȨ1BM\ )EhRX2JŁ)*N lzW6kg)Ͽ${#< `L7/QgLA8xJH2ԔYOIԒm<1Epou_n^ 4eӍr|t{{+L>Ee6S8ɩ:>xJT:e4%%^i5}|9?/b8%\:'P,(Hz2ycsd%>T.~j4є\G2I;j^!uԒ+@*&iN1rr]9M-տGDUHNÿgbigϕrҦ ~i?#uzgM^u]z zpo)m~O&t4MSKAK0*ꂂ҅h;(Z|.ok]CO,^)v-f j_QY-S%S1ʔ}J:jtBSп I?v6W7C5Mہ?]b=0MUTțKKT؅Gb?0 ֏W0eyI#pİ;9WIJ9(tĔ4:dxӨ?9`6c:|B U3*զHAp vx\P7NL5/Jx];(S:T)>s$YuKlc |9}p_~T;_N/.=SFrgTH*ļH% L)&;4mIKU.缟.Q8c%\im|~M;ǫ$d|_"s+  R76hkdi!W/E_ᘞ7U=׻[|c^c,rF#*H^2dZ\)Hpg qkf%ſM/*Utxڄzݼu秲mbƸa~asN U]Sb- 1rԚRN)K 2|\sI__Ũ6ҊkekSηgOҜ ţ޾~ar/1- ]0_eUHNx1ﲄwTksO"+`$cӍq܉ sx冝Ŏ1?& T2J.{_.2Bf0 -W~F?$o'yz y$ #|N}<=g*R2t4JʹlBI=4k2aY1N-K,֟TɽW? N'WWOǤ#/9~`F1bTS+&v3'JQ-*'J9nXH+ߟDz)ʯzRQT5< uhE;L/e(*$~T.rdFj$տÊ/Gs>3jQF@@0>Fk3Bh4٢ 㟴B7#;^*QP@?HRr]%>n+#:ȎK0Db!;C Dcb~BA`źw [Z-Dw%/#IV1Mb* (JەDFZ'%$@x#c- p[xK"I4FmHeJ-eZ3HJDGfcS{Z>2ȕfE2U"AJRv}p+U_Lrfy`LbNrSGF4HO&J$-ڂRZ9<*`2uLD ݻGxWjg7~id{8 gL˔}/QiDV)D\OQ):Rex T9FtO+I2eLa`ŮqM5zxȿG$eܓU 6rw㳏4k&t3oؕFgU[SYIA72aJJДK݀1Ëةuro5UTeJi6 vpʲo_&ҵxx}̻`j'3P=i*N 3gǑGxr+zN[E2W&`D@Bl+{M~q__} Tگ'V?Oausk ]l%NJeZfKL*$&9a \S>k*3/O5[u~i)xü?LKTf%L=*3x3ia<3e r{ǘ=iQ坵f. F^6<҆Li <ڊe͗O0Δj!Kyg~@GB~.R|ۯGeOMnzS)Q˝3B3f3J,M6a^喦J>gڙKrtJ%[~֓YS K:e!%%Jv~M,Xi%7EztZʩ;'Ͷy_ 8ES:,: `uߏ)%,^aZQQf Y4<0R}tD~VLYN<(1#ORS8 R 73Ǘگu;rWçA,>NiדZ|UY0OLUydMQXGhIqOurJ엩Ṱph!ᆴ^ܽјfZ($hWq fm.EAr\YpZˉj~78=Rykꢻq⋅YcÇU38vjdzMzd&R&Yʦkk̖@"c\SorQ<ظˆ)lOǚK+4ʙT'ҌBNdb}I:RRCkg<Q=(ck.Y. ~_ve%'(%vQeÈb5g ͹1SԳL3j5pnXʟ uպ>om|jeer\ս|C񗔸++r/"t')pK#ˢDīI2zD \;+G65 SI.o]qQ7_Dq_.w2TK ƑJS3d eI O" 98a8=o_[:,~ۻ4z+|\VI ^aVVO)=) orc)*_%ʞx9a~owvUenqKľfD/1Jʥ՚Or֖KJJXfoxgq9a}f-Iɸ4RgcU)@Vy.f nv\N[wa<`{w +0".|>]&)b &pYSKvדt_K_"\IkKۙ;%O1&a^7I9jĨ'Q̞̐kK.w1 r$=#r>WSQ ĩ SHPRH/}/xsάF+txL1ztoDv:NIi2&x#LDDԃuN[/ΒrUfZL1,j6BLRh>M5-@-*C c4rs:*,h[I}K7q1Bِ@oi"uU&H] 6@ YD$zaHh2-Dw#;Q Be$ܣ@yw@bHD$%o I@7bG/F 1`/:"äL@7uBD 󁢲RKV(ࠢ&( Dn[~Qnb"w x kDX&"BV#bH(LD0Ȓܢ#Ŷ;v1zBnFC` =*ػ[h󃙢p:%"؈n8H6:5^9^!%ǴD)rh͠iݕD}͡DyK3C3F܏27s/ We^ PKum㡫ȓwtH1J?.=6o(ni#ևd:xoӚqOT٥J7 . =ϐ>4MLj~~=W+ 5!COf>%3w%̕X}dHޭ$W=ө-VYE2rVJ֧.cފISp%'NBk0s*iUi2$)ii;RXht I^.V|>QH^e[:k~=gOL$X*PT4pI=ϳˇM]{If~[y}Af]uK-_, Xv>SRu-V{|m/{?/3a] @#R ksi`nvthb>,׻FvTVILRe ֋Xz~*mrm~K%I2k1+_?׷o7lInV )$A̗5G:kU8ZPm^gy4HtIԻZCl dG" ӏ!uTxMZ2'M:S*ǯQg>gW/y ȥ1+Th\ʴLZJ<,o{eˋ,%꛿VW1x!`_5'8y7b,RZuVͩ-s\'D[#zTw{7{#1ur_-މ)%wIe\`$=?ߙn&f#d٘|;4I<'|.h*I*OTUk:FLq{.^ri1li{*=C􌱐|j~e%4XSɕ.RPFb] $!w-xp2υ.6ٽ-fEZwn|w2nWv CH5eWТo4+\()AGV>)K'.U~\/zyK8dyUTb(P骗A%fl/LjJm4B\ۯ=8i㊌V[/.Z<6G꾖Y|B\+'+ܥIX=Sl v&Q.J\YS*'Tr OVL4Yj07isWNˈ_\Hv1%f ].TJq*`'VQ13Q02MH_ m5+\yt]a$ڦ'O_GgCPvɯ^x<.d^-`rLX[̑s3ݪm+;e׳?&uV6OG}Wž.y³. )0hEJW%*l*r@衋7{~.7YGVMg\F[ƟUV'S[QO$T} ,kpkft'ct_ pB;eTXɟZ$(s(Hᔟ3A'H*-+HP:A#tLe-LE 3 }' ]$@Cxh!D 3txQK4C52+bDkYg XO$\hv]"."@ȅ" 8DEsQ$,9\De4 X" 7I_x!B,"hhIHsh]"@Bc٠"K @kƈkVh[ǤLU1c @B,K٢X#a."#_i+t@/hT4Qvau"!mɣ/p+"i;Xkr+؁!֌4 6bo"&`c,5çX^cB B3èl XL 7G_3"b!*3'G+=x{oɾ ,O (ѾΨLL?>qgCz8|#$w Vt^ 0I<8LĝRV;:]~GQɅp*A.JW1EsX(ٸI>|8+r4/ԅДTğ̛Q)JxLAೋ$.j*ZP><&WsgI_0:bf<}JQpo">O˖Rړ,rN=Ԕ%~ x%[ c'|s4˕iS )\{t> un䂻g,r~uq Lyf\7~ч⹜1(ˈ7Ҥ.Jih1_ߤs`tkSJ9+#VgjSa5ճZDLR{<юtpcĤgp8Zz2h 詔POK\ȞW{t*{ ED(7Y$p`i0;0bD#5rTW4?N RTRC_(⎲{/trL|2SWcTL*Q@2lVIS52X+>~'qG3z,2f.x&+LRt7>8(y4:m,/r*w亜FaӸQJjE#M2gQt[/plce&i?jim}GC4!9du3/|vkb$O /'?sF`y^8ݺ%oU-/ kIGj>8W;3O"PNpYiA TBie8%(gIIhOSYS7 jsir%a) m#@,tZlx۷ 7M]&Z|{Io\}~GGeqYئ$Ls*$XIJq9C[3rMo}NƖIStۧ;;ESpð:|r[LJj*QmAgJRIt*:GRp[kgM,y=)mg~[˵U_0\J3q8UJe(%i 8ǖG_d`^ҝ>s.|qY+TZw;ǩKT2j\Wc3fMZ{Ǡ+dI.wp..Bmh@Q ,;PpJ}Ng/fUEB*%tICT*":e&Xgǣ#f|+Q̑ET8_ҍj%jB&1-1gIvI4#K7G9骩榦%J:I d)$b 11GigFYG3: GS|4t.AqOMu S(+۪<_K1dLdq+'E8CO5T:~Y}OjܻO)*h+iu=LJ)_*؈0ǒ xڒ}Syyd7 =̝'s٤)Jot*!d {h(jhHcv3H/2 #-7xQ v>d=! 1,a[$@/<$" g;đ}a"Ep" Y[8g!&sbB@Y vxHm.&FH#kh,;-DDn8b!f=b"Iq-L70 R4 :o eAŠ@Dv0ahѢ!ɽXɛܔ;Z*4;;͑722qP4d͠fihlic.(dۿ(Rws  4B7$!!"hP,{W#IIqXDj6mdQԪD-kpfhcn?Y9Qť\)cpwGEl f`Ti2BP̂w-O>A£)yO(gxN_1\3(0H!e'u ܹjyN5 dn gNO5\4]ix|>oƔ g1xo)IEL!ChK"mFj9>x*9!BUts/PԠ nhZY,2[G*=5ԣiDi*1Z$iw齤\ve$X_.We2*XJIn#cӺ˧j}i>Gx&_J6Ds ,[#Ȝ\Mr<_UK20E\:Ik2v1X3'HF,SkG qyHb%dƥVۍ Kh}6qe_瑓MO*[z`38%:,d̬DzB$%kR% @w`A^ -oeZow˞]#gRϭjPfU-=<%K!>bg..ǜu3i"|-my>\}|}\RJkΪeu^#G˯&RLPd](PHdK|w.9|?UuWǑjqsۤk=^NjW(-{ZM^V+g_cRn-O$Nؖ#>R*p:9iiNU)BrR0(P@rfIIEQ˧8*qmOW:b#Z9ئ1Pa?[<,cu4T3w4A20*I JϦE_}uǛSn_c,ʮA&=jT(TU)='|Mr]>gb =d:TԘOp;Ѯi)Bn`:gcl֥N%J/)ʹ7\*"M7HqSR0z2¡=?>FqjEXwr<{˩k^%O.DjJ9mI*QܞLJW6}._.($c1c̱գӛ<;oI*1ofU~l D wI.e𽎞%&PP%e ̣i(?I: ZjLŨL3ӴNG8-J1:dRX:dJGH :GWa_k}kdW'/{ %G|@:9Ǥ2F ۤRDA#H Ŭ\D@_k@ }`(bdDj<ߜ-bY+o Y "rdD8=`XD 7p!+maa?H6WDZs&-hHw{sHl!eZ5fa .zDo" u1~Z&BKqqMWra Xy<@@oxu"+-DD DX9x͉hl;Ѐ=FY;AF 3]H+R#Hց! U]t2# F~qI0h.ĝD2GSOH&$"=~p2)DFdhBs*.B@f.Y֐hiȎgWXˍGUo)cww[ffZwWW6|(F#%qFi~+{(uXߌr.7?SǦ͟GXS:RZT6=x8>&{UMHA$JYS?VQ1zp?^'xŜȧ+ 6D*ON˴y~8q)]~g[ˣ%KS3Qp}$}#ŖB^˚v<=dK'&rgǧLBXT0LKüFJ><Ň27ˣbSOMOpɩeЩvHQ1` {_Kvy ]q 4 pцЙrazf*T 孉]͆ý?ŵ,^G6=l7(؇:`뙇M580pLaUIcY|FTKS)cx)oު OE. ɐ%%2f\K\O|W\O)9[^<)x&rymۊ+r<4ԉaɏ7L]QY3>PZH)W1iG,g..2Q@57 <`9lD)k1bNTF;<}{7U_=M5X·<+3L<#1#IQNddHm6Hpr殾59afxDr=J:n.W%KuZŖJ6Vduqr[.XwU0ꌕLI.jd˯'a!+(IyӋ_X؞ONmiGgZ!zk_.K®\ɪcXn/ ц֦LhL-uQQxn,Yi*wL:$9*k|p:jUs~%K.L8uJΟhNJE6]KCARwg'|чrW4%IV$IJ̤0 FH<.o8UNTƢtJ:xcx`|N6GPmm#GFbdÿ#WnQR+1PlʨT ؤH,AtGq0kc/sarlI4tf2TrG3#c@~YP'Ѣ  D_2ePw<4Fǜ(lE fXCD &"sh؍ m͌H((@Ɨ#BhoD7*+DDK@SF^c,=@!s(܈Hb#u^7=aD@ݹB1 r/`;#DZ ` ! w" npr!JO6@2{FB\.ݡDwx^-? RzӥIRұФ1×gVs,vS))\ʄWZ2\{,P\IYˎ*{7GWg)ȗ.` Et&ӕtr9hí\ ݞk>.%mmr=4I]>)? nl&&rc( ߺsFPʽxF*,4u4iԩs$IDJI:bo$'8ԩ!9CVS+13sK$H>kW>C8(>CP_#̸Ýfe*Y*eʞ K:(3; arr_Ϛ<)'þ+q͕3dVbtҦ.\ɪR%v|\ OQ+tK)DY\b#TsXlVkZFğtbɴ5xj=kOT:C~Y3G~#MÿS 2]D;n`x✯sN?=C"rf$J#Q1ܑcֶ#a[-6WM]UA,(Q,%E65MA ;sGXpE_GϬˮ&7'Ĕ]>skf+pC1RN#2t*bdT-i6i D-(倛0 T-K¹MfI^_̡ ŅyTjpA2T:MBIV36_GnV煋aq%{_3-Lǩ&luq.zPU*qYKiN5QK8&j\cOַOסCQ"S_N)ZS^<_89}9o]x~r3dqrF,l;ժa1/`r(#&Vsm4.zUJ'i/%vŦWVM:aTũTn=Pg.fB;HiwߤmmtܸkH17bFՃJ:nCi6` _c l0uq6W,8̑Kc ȠsH,m4dɖCH(w ODȵв2P` x$Eo""b^ȔOA<!"J7fhDZ"bmdLA` ,9FhOi"}DG`adqbB@i}z& Ep 5*-6BZKub!o".% c8=qF7f SOm$D" " y6)Ss\78Q x'"4$Ȓ=B™3 l D cCWD!nvkhSAvgI]8Ȣ7 EFΫ?`J0YD T_hU6ͺmSBaShF;<&Ub^fش*<M_S~].#? ©SQCLU?  Jf@K dr^^}C&'j~Uw]O{I_񞲶mg2mr &d 3BJwkrIewko䥋zhTHR,: 8Ï"s^+UJ*s^]v )mGzgtmFg~4p+i5M'9KZ2-I Nq2ZMn~A(4{U.lš+J-ZTKAH{eŤ\n!;uEk)~FqvkeΗeIRRKsI~.;O3+0Jt%l*AcN ͥ&nŭ6犔S eNRW*s(W0-*!Z?|YS%$l>^~+ezl嵹-RI]34z~j*RV.\E<rm^%A' O;L*.q_)JZItM>ZJAUҭH>QK8)s[y|Y1gOcۓ=nnTLD//V|ЉR$JHRN_Œ Kʚ^!ᓄm[_-ϛ^2~1sGx;O^KSV3_K_2R&`Ia?)ZJK1Q.jemζ=(aJT~WsW_X9lӐxM21UGc*M.1GG2* W-RDĀF"=}&9ugoM7-^㔱gVjČajU;ŦbTSʫ$VZ\GYK{g og<2O&_~e<\GǡgFQJ< !*WF6e]Z:BpZ*AUbצVJ(QNMvoaBhqp|{LlοQxR 2РԀC;Ĺ+`.:*aQ8W5h, ,Ox&Nv"2d[Z"Z>~DD@}ȝѫ g$Dz@ "tDNvБl7}H$_&3ԅ&DLp2!HW  ].#6DxhH zd!^'Dhu?W5 ę"QsNB~! %DmUEhM nv7(YIgf"* t q*3B͠F8Dȝ@Dx[=Z? ЂÔ pD $hgb4H%`@}/CaOɺ,P: nm;#HXfjX&jGY>d+<\78(pLVCxe}Mя45"K:դC0 z\qgV\=nG0)ɩee[Yc4a*QO[KSQI?XJT:Uo{lk7UωHSqi5q?XO)kTA_;\pO j'q"UV &EE}8*i!+hL&moGgɞ0:)~<'T&9bDUfIDezn_pm~+^䂹.kxIBo|cx-!.)+S:PTP$oQOH{:*}:sC$_\EѦ?+zo_,l͑f,ї*3 TII&`BhJitJvXcɋɦ٦zl8dVIvO#XGr}:3 ,-1:y*TRI#2bLjJsCEaSR<,rM9[;WϚ~%ÑKhg^m3o-3nCك(.IJ)B̹*uIBi2紒K~SGJzuzy65WK.KǑ-?OZ[G0JղS.N2 &Ti̖7ZZ\R^\Oy)6Gx,׏BZdLdm-("=(3MkUaHxГb2!U-ߴ$\wc,^4BSw Z"/s]ˆ\܃n ɶbmx } "+DE h=hLF<_%bГ߬;&q!nOGKP %l9DW= !PdgH B@ [JnY п1n\$,6"B:2@h@  DB,7H bcs3Oq+{4&2՚q :AL'U; l|3HŰyY?&NS*Lْc_.(*i<(JyY IG}=7>Pcu~9|I 9.~V.W&UI*qʅJ$6ԴDgϒ^<ߧU.ϛ93g{Z:|uY\^gVo'bs5N;?.LO՜6Z('%b&aXQܦ=}>K{g˺sj5>//{fǟt1HqU@\*tbfK%RTA)Q<_VK \;yo{gM-ʶgrw*QNkghO=yJȝ.LX2:: %? gWů_j4Id% =;9~o e)9r^Y$Brk֝`[N\ZdIe*@Md\~Kc?}Oi>5prp8v='?։bf%=֟X~M43ZBj'_|=M2y1uM3i12ɗ馢HBPIrZ:\x[۽>{z6vD|uG8ߑ)Y;X 8JZuM6^VIwF)~~TuGє^8A'Ry)OtqC5XUf]O@i1 *O@:.=;^ o^Y'y卶|JbSƯ6lɳ(k;OzKcΒs<-~EfVN[c`OLBR'OԒ Kr\uN3*]yOB.JmVkn`˪2Z*"\3פH[qJǛIo;>\Ȭ.ZQBjt݋},Ktxٰ3TJ ;K{r?X3`t`#k@얊&X?3q۔hdG@ $d1/+ҫFAo"bd< ryrNn!'D@[hU@ͼ([0h{@;AD!%Z&@ ;]'wb$VDDh(^fQxh@a"M ":\[L[Hq򈈒}d$z/ w@hH&BlcDXXmcv $s/ }[$G^Lʔ oc%ɏGGc"8~[EDGv2 ^rܶ) (l7}G :WbסUK%!S&ܛLxxJ%D^f0h!!)R*4r&JVPK:CAy]f?~÷V?CӋǣQ]?ξ^f f\fjU>r]G> y$7r}O'6[wE^`ycq\PFt(fdLjq1pK?,b.=˫eͧ:T qFV& #{ą._i븿|2R>jIAhV ڎrm/05 Mu~OG,ay8V:kaY7PvxmI<3vNߢ"[s|'=)Oة:Ďspr=HD,Iou'iv0j/v{Ӆ>Pç`ʗ6Xq&UoDJYTHJ 5p8{W ^4fI{/NJ^ SO[*Wd~3 IRE唨$9q5R=~HSxURh*ᯋҢ)* 9r@07*HJEЉ<`*\Q,?}{\w8Wז*FЫxUt EBXYW=O%-O~C-4zO-70#0u"}V-Je""e1dTK/c,Mԣ%Oկ5Be]OQs/Uxq%p7dF/üLTK~T# 䚛^O<9?5Vhx@euLW[Y:]<>%fM2MQ $$(2{nkw2jz|w/ 3z"qI%, U(iRR*!Â=$2sfy>L{KsX BlijT>ǩRC6n'he㰎2K"`}hvCߓC@?tDN9m" /""h=TFAhuCdD7h "rtrHr2͠!Hsw3D[v~b47 w4$h(gyxܢ`qn"Б!"@m4Bo4W SmrD؝YZֈHk<$]mߤB,#O( UB(@ĀoD.4D.a2vؓwOhb@3"-L"D8 ؒ=O,.m#N ƶ#%7a LB=>! ]0"lD7x$h݌)в%xXPk kHQ$4o NkFltzlh6>iJf &P a>QEQ7y0%IETԑo4->G]u}gKT38aXW]~tI&㱎n M33i"~ˤ)*6&zwn#Igۉx }&=V.*Р1 IB&˖)HR TA1q<9U۳;:]LeYkTy˝iSEPLH$G>r)QYzY%.\7H挸v7Ifdi:Kr##g++%\&bգW.&{f&84* Bo{ܴrM$F}‡qMZs k"ZҴS'%I&e6zٿ_$uv׌x݃a4&`YC/PW)i&Lk-rݷfN- 8(Vb駑P' U^:UzMUZ ?9Mf\y]&ZK.PHbH &[GO\<w8Zs[?frMfV*TF$JO-ZZS.g Sf֕IUJ|RUğ5~|NÑ烨Izz5_U%nV;d3Ŕ*KDux'[~43Rƭ^, BJ R.TRDԁy<:H8ܥ¹]pC-LBjǽq~%m=Gs%/ir`nq\ӕ`btx4ٵ8$mm]?Is8qN^[??.0+9ax^5U.jfRe $ @-Cԕ(AcWPt5>MZ7MÂAm OjY>Ǽ:RRSOLg)VLñN-ʕ.jJBH<=m_E-'gxXf1w&kةeHT: e sM>k9؈wGM=# kb#0J+Po-9/d'h vdYB&YBI~Q 'nP'sא gؙPb=M +s 1g1a 6֧G@jOv}?HugM%hB" zs4'[;BK "͹%D *wfBl|j9?G47ȯ2rR-`9SxI7%/ħ,!3*&b-:P {1QcYrq˹zFv):v%x|Vu%*$CZ gSo :5<:͔5=iW@MTRd(Xyy4u)w[45wi,~U4uN f <63];-%%T@$3xiu]Wz}lJ^yVGx44;&Pq5G*_ G#oq]<ƻ2#)`3j=:$(d;-^(TVxX|Gz$R;a4U4hR$2n|G68u9%iv>qw0[檗Y-L!u)P%Lب S c$~Qi\|MSWEhWcIũ 6k l%SNU<;JHG7ipMnj~OVaUi:R' HqRLqJ ̨RFr5K^H3Ce›94VooCp5?x3e&]L !!JR%($73J|Ľ_5ϏWg==dXe2 +mkYP 3W1EJXA)΍ TC,ȦrGJ?8x d]:"D&k\*>^i$*)j'9y/ [o~j[_πɀp Um4ǃS- "L“ǡEI%JxeW:t}%Y':,p|:I/TPJ;$TёPp| 58ow%4'xSᛃ"s5I+0g:tӫ K]=P%L"bT[QZ{˺_ ~Gg-<dzz/#q6x8fTSh0Q.JSd $JR)hf\-%\>k=gǒ.[[3*pاcI./p=I7}L+kr7;"H ܀Q0LhH` k ND]bfNEnxp !HDC@R v=0>3d$Xl !dNJԂxLqDԅJsM="lw^Ǹ G)ڧlLJ^&v7VqYі؄~q!4Ye%^!v؇@Y "4HY&Jrj{3  2#b+l6)w(n[㍧[u<͹ԟc&H$?0\?[ LIs:ӥB<%34er2K91̘ )$A$1F݊s+S#G ƫs+NV"'Ta#G\͜\P~ct&??+cut5RTCy7 KN/vt#ĺ[&33:89[]1JT-fGvX48Vc[g_G'))r仃h:8: XWyMl{#wq&X] ±Iܪz|R-u3H}=N=Bӗ=ו%c/2֥M.Bϭ!)RҴ)Hy2M|)~8eJ}G1zr:Mv6`D*J*TPR z@a<' ]{2||viW tR׭u0OI涿XTb\:iQZC ;am%&ҧ;ۡw1G.z\|(J9k")ORT;ʞZTc{~|:|2J[m_?w1aYo^B7*}wOwqt@=}>i-f/~;vty7HH3)ZC\*)T9?ąG:9nt$q_Ux<>v!>#JjvEL;顭շ$ʘy =VKoy|L˥è}Wv'sp喱QKRb{f溣ˤɏy#f2q;:d4m 2m aox"F_XW dKD bhnmo2 ,L͟xo"%DD,@H s (* Vx2.@F^ rѤ@o@ БH  'hQ č b#\'ёDiY(y8=Dnh hY0=Nm~p@H1~Dŷh!/`ɇ3DFhH}FhZ H aHIPY" KBӁH,DȍxvD% KX1"4(4ͦ2R ~Uu{OA&Eҧ2YJIXtדk>_vQHߓCs"!/.dů"ր4@b2 C]"sQdb+"i.`bQkQn&һkM6i*qgxZ] KsA`nc7vuKshcq T=Mvh咪g>7{q`JQJ7 uw#,cHeHswGmqgpƞJ$Hp(=ÕGcDAW'R#0L~ lԥZJɕ2dĸ) G#߇zOf2<5*V!2eSO4f떴(/ g]_ZvxtUGnq][2gXsbN,i٪ rs&PBRY%e\D&JgJRF˛)ʐJ|,<<ڪYKٮk;cĥo,߇D0l݉ s]Lh0 E :V)ΨXIPf]%sw_nGoIISݤץ_^2Fp;XY|Bx]ua8^16d"BQPIYIvQ:@Wr+4h9lor .m<钦Ti)=Axa%RG,r.`/Z\\񻇴sWu*]>›^Orgrj\ٞw|:x9!H̳;ΕD,Y"rs:4'NRtu 9St5⹯Gxs=xjy{m&L{i[ҪZF;Tx`),6`[PݙfQh@adN p[x!$G&D DL^ DD" ; D#~mب {90Qف1$@EX@(sD7IbHI$ȂmDEb Z wTVD a$HhYYn74;3Bs &߼%'Ó)$ St /.zFC +a;B&]!V~PV:Q"`!aZ$H,-"_X%"72KF6MdON"!"}[ȝ?HGu&s0k H/6[]=q8tg'~)RQʟCVd\?LTJ}N3}3%)$?hi ?. )ο2gS]N9)Ty.Z @P((r^8[ԲBtt?ox0hضЙ n6T@s#E]BH%JInHGp-I9W9ҩqqJ̘Y +ɰ?{u~/W_N}VeڥuΗZzvHHO(<çb#H;wi#Mąmd {Zx3H[e4Y BXbyncTrEM#$KbJ5dDr 0᜜w))H+r)3 Bi, i39%[klv! 8e5G,<{|_71ih%*iD 䥒 -a/y$.<>q~_ xdVUjr ڠ?Ƽ;Mq{9z~#8NJy^qL)1\X= ƱWikM3BT@nQEt} gq "1pG 3VS3XWWarg?%R^ [C$^_0)(úpNW `n'EUICTBBPH!)pA Lv RٜyZӗ;>u7YC*t*T&x3'LZ%KJ=3?yxq\sK/I&"9Ts&oC<+ Vyղ&yR~)2ʓPU.t+ύtߓO`'^]:|9s#: Ljnș2M_캹P B♶* qIu*Dz @I<~D2ifN;[Fc9!I?qi2GHJjЅJPgL'BTrΤ~^? pQvjuugיǯ4%e=yO& dWbezFVűg3MAE阍Z Z($1¤t]Q;m[|6x6.f2d)DԐZ& !؎c[:{6O s9C2ϗOfA:bth \NRI4 ^XK$Z-?ŕGo_^|lo7G,8rc_׽=81D렪yU,?KTz9Gc%SI&/d!D|v#)u8&'E 39ppŻdaM.f%Ϥ2DjԕE%>:.<+9%qts{Ƨ2Htw@H&1%RVI lIcxkR?~Gwk"]}W'N+oUb'̵IW>]& tVQ{Jmhǯϧu7J_GrI4mm_}WO 8g:`*c9s$.Um2!O" iA% ЩrIX)KQfb{թφ}Q4w0X9A\81ж -= Z!2 D$=,Ck<!a;L,?.bB r;hwK ~p2x*b@ȁ}ᲲR 8hS Kk(,GsDTX{4:5 fQx\WGgihh,om YG""D׊h4OѦȁ-q f C`$[lDO&ȝGh'HFh@(NJAw1CD[+ۜ6qxQ 7,*˂G(̹hhJOu#["ϙM0J\ҡ6|,cgVVgL=@5*KqYKX%GqtZ4İf%$v[#.IU7?K*JLZ8eb9bH?Aa5<;?2WpR1[&zTdz(}:o yUʭ+]nx7?KLSd^ep@tKROGYŜNhW7YrG-{7}T#1i/Og/.tK8f\Θ{)I!H4 }}g#B$g٠[r\&~6 2LL_vI79Ocj|m'W63Ҝ1oF 0dugcs3g]j|<+2g-8"r$*yɜ҅/L!JA,ٲ|Q\QqK`/|G27[[UaYK5+ZT;X CKbx n2z#xV\yw=3j}KLr֤| 찒RB v 2Y/ Fd7Y2ca5J sJB`q$~QSpN>`)ʮ˖eL<ᣕMur=w3B+k%R)KPB GNO9`q3|Qg_TrW&^󧉳ǐ..ow]Nuy-?g$qlpG !xPDUHScXDD)ZT.AI9ړ_Gkqw7yfnUsܧe<ddM54 *eHr%RZsGrr]9JwHJ yLz)tGBGE{8̻*߼ %N,&HjT In01(t*H\:tv7Eu03!01p)4F1$TXlYJN.}<-_RѷkѭΏOI }z|W&k ,RO'jKʛI5#O1ҭ*I$K.!{K/388{y|ꏙĀ_}ln>jIt:*`B\78^đo3Wp4uxvM1UG>+ cpK\K UD'ҝr;sgvR})oĻՕ\>aDS%nyWgdMG!Lb"mGH7 㑄Mn{™$c{Bȷ#c!)@a$,mx' *Έ{-m x".pHLDIˤDLU4P\6"Z#2mdzRTiVNēd ?3mZI).~S~~|tsfSɪULQ?S'J앃f saĩN \]< H1*`\^JҜG*|e(]*(X^8sS\ɉs;n+8'43h*t~2jDy\Srv|yxo<|3o*c7gUe+3hLˤ$ӹHxO:eȑ%sLPHJC:u\GgSj(ᕒ< pJW8 ʽpnNڔGusJk$9v][Ykn5oWvG87\BzK p*QaP lw'x4>rY'[r]#伿ꏳo}C5Fq*$)c x2vx8rt@E- !chvIp\h!N#2W;9'Kc?[V1_V/~epuTxE_,Lç JJe~RK8?1 a*]ymO1O(KV %Bj]>S[#2M&*8ܬŒ\%6Ѵl4-Jui:~F%=I|7WrFͼFpm\-!E-Uj%M(;_F#ȱd\/8U[Zʔ+QrxF'W$mqbROk&8;'|륬lXMO# ~b:)5;X2p6>RV9vu|%4x(::Pv:rC.E_A9cTtl/ĶZv5>dhV%m)rD*={0f\ReelTTOo2b˩d6%¹\ٝ? rUTLXwJe~P6vGM^,SXqqr-2YB٣u0UX~* ,CiٺĨ2zZ-̛vf.3fm _x'_14ըӉk6v#ˉ.f)5MX&q:KC1D ܑ?;rBʴjͦNU.Q%@lnvʾ<\\O~o.>u=KIĊKIKӫ || |L|[.#GW\sQFC,q+?9rMzlI>=|̕\O m+ m4DAMɄ(\?$ș#%r/̉j4^P#{< .p>pT`""d @^-#$&#H""bѠ 6#C`7<$Ȏ}`h b"fù%GTV-I"h"ZX"hºgB,,gsb!Dhov&X򀁛B:DB ,P"4@867aEб& !DDb!JZI&)n^u.T4tت߆bI7Hʥ@I5ia^mw]t<މO?_>X],J&m8"J啥vQ ˙`-tu?')#˸9D6B%$R$Ot#6aܢ@\qbF9枛w eDyL dbp;h $]Gű3*^xnK'вI!\ËjgdWqyTԲ>d$G_S!3M)ʢ~9 9>!)'⼎\D#̕D ښ f$3@6$r3(R?3&< N(Zȫs"ͫ[&b #a1r ^i%m+QP똲\ 8H~ N(GLEP@7G/0 uks yy2fT9VO`0dh5j;@s7ٟcj׳T{.-32\W0TRU.Ԣe_&n) Rg8)W ŎPΣ{3)O _t#4:m4s$O*lR֒$1P{ZxTҧ$9lqr*SrſXٖ@~܏ʹ¯)̭4W)$t)ROQp}<.>.G$'Lr#-P |xf0$ϳG G762u-*+MpiO>vKw6̫Ґ9U9qצQ=Gni9,TyGR j`:I͓1.؆ i.2\ }/rxCYRh&o1 =Jmi?vgA:&2Jp^QŨߟGnu}NH\o^⺥ʒ)nDG'\ԫPRPJ\ԀR@>?i~>/z𗒲 _6d /8_=ʦ3geيLLӥr=^1&KZ,XƖcs;_?SUO1N5+BU0Q)E%-&obMIRMWzci$*w_{wGlOa~ s_OMO!j)X(4TߏXT^ݻsPX}"RT'm!u2zZ|W9wkXX4uw?SSIoīL&A20 J)&Z,ǹ$]ߧ*DyB7vp3K{qf?6i%xEnqC:3[҂m.T[fedN7cV0ܐ#\FhҀn@"&63hmh9iQQ?O%ܷؒ1ǖuG&8\9bDE8|Ow7\ rn೩*H:*26WH3!M8qi Vɤ+W3I*2ɑ(#0˙-f7 Hr8?[Fmq*t s2Vcwx=rJJks? IG\==[`".ʲ);nbh,PD1oNQIQJ #.&gRAh3{CF(J0i'HQgg(3nQI*l6cLy&bIJBtze֟R9=^N\S\URE^x쵩uqnˬNԢ %N+>>-Tv}>,ˋ?>e(.BJncYҗsRW#ؐG"gTID:RͶ&Uo5> Yo5FlK v(,Qsm/?l < $"hM+sG@%0076 xL bDx[sh]lѠa7/JO /4Dl;Clw=+2+faHP3<l~*Dj߷ED}2B4VkbGӷ D#!"T"6roL&h_"UƄKa[E{FdDtxqLb3ԃݢ"(/m Fhۀ D.v=ID!ix H22%~٩dE,0bJ$u;9m(|< kGl2xv:Z>_%܌'K/30|ĥcGK~_J)=Y<1s?GkKSC0yG״*GAPWޗ~y'$pZh32х[E_~WSnuY&Y+W 75':O <Ǒi]]}q`r#ԤJ/=H'1Ur:sOPY7_uà ^ p Q?E|:/f~]güPt<~3fY*:Γ#U -y8Yʸld)\ԮgQc›'kz%wQ9a>Fٕ̔u=xb"}p׍Q\&n;F%jFH`N![l0.C‘6@kPh6yEA"BDD ;5@L8ɢRM*4b\f P5.lzf$-i>I%*JJ tsӧGoOJBj<;,>x_?dvm2tzj J-erNOyx%vtۗ/gV'Ng>WG:]=nXjpKZM\J3]zt!ZK9ydgPKc zF” 'P~Ń94vs<&pѾF]&d(f$6 7@eW"Ch o3dDbl-. 6w?+2nQBĂEnp&LAn"+*5nv=  `w=b&J/h[!4 "L Ǹ D"㡆డ$9.@ F<;X]3BBn;@d-̆hHx"['HQ7"U+"2a6"U!%t!-@@T@jnNF]#o1?HyL$JzZ$NR~}`Q5fB\&XwdQ~qç 0Y ͙-&oZ Z.|kcq5ɓ+1 $`MrI Q+Zc̚wy/U*[7_g>OW,pA<煌WeF.d~*tRM4LBN!i(L*85rao[4SZw75_ ߚ|x1Lj 8)I[:]F.L+_)U9#<rf͋7[{|Y Ypݭۗ-nr#~ %;u>3R.KDZ]UçfU2FD˨XBWׯ..9JW%L৊υM{U4|.Ag7K \k.|NɤUpK~G6xd7VRUM&dn!CWa2ZfA[Z?f]po!R[71neVoc24/XrԹYrHEH#fLGaZH!@:rӪ9 V{8<+Q#*4Pɫп0 [j6Bqgb^W}?Ҭ|;Q*M.]:1L  #y˱y%g%Cx3]NMc T7& z]ēXFX(dfQt96+'$ nL)n?. D\gU"/3ZGɺZ5U3D= )-g?H=,ɉ*\ɓRq%.gU5u2k1\_)0q&Q&R&M#YÓ5mg>,ΎPç8r06b S%3|1JHV(JkWEŮۯ;#xpc{}N'Tx\8]ZIY#)PJvRHe*yܒuy_K']8yn?S짘xϨNaRgZtR.dRI*vRܢvԽ.Kno6~.%=&y K(̜^+Oe=W,-%'qh|A84|3SG^cZϛ@&\LIx}*KUVPԵ2rjF=UtvrF0-{p7ܻ.dd{l͙C[cD 0{T}]`WxЙ7xf;b0Kf"HEeۯ & FDЗ MxRmh#$okvȈMQo4L Ra 2$'շO󀉈70s'< -sK b4#J 6J ?ɠ_ 2FMZ5tYϴT"a$dwwd3xP dN )"B׈(D}OƗ!-,GC̀"gaBA$ȝD4F#* C8,^fM"aJ;ģbGuLjJ(ʔVÙʟse==..(T",b IzYg`i *$hI߼jewOuyxdW0y+/U!<*\\*j]ҴK7ci" ;}V|]_W8%7䮏񙈫sr,| I0Y8Lv԰O{K+Lg ƞ+f30 ӉW!:dV+9e/踡>ZߗGz^}9ޫ۩ͬO%ox9/|bF60˨M$ɴ/TХ% -) &`&J/x~Ѭ0_5^[0qZׯn#P_&dlk,b2h3$Ȣ1)5r$eF+Z}l1Ty];=סdzx\3#7Œ~4JEI$x07 Ǡ92lْ}3 CF0)iE $ʙMd!H) R) %PȿZyG$Kz~~.xwx%pn b]<5.͙($uʘI=VT~%Sf$N)gH k񨫵UN_3NOdݫT#7 uy+s'Us+ʙ L!eىx t>ݹ=Աri?5껞!OxO3xy Ჸ'9C9ҤSsP&Ҫ\%G͙)rԔR& +͝E_ֺ]~}㊗Kg/]_/bDi-T͖\֛6> DZ~S 4}-_O7&ML$9j%eGxM[C_+OLÐ9[36}:~H:pzI?}n($ӯ⪨*G٘s}2dYi) #;{Ƭ3^Q?ƀ?0v"2EDGxH`6h#D X/pBFh6^Aȝ]ah9fY >ȴ 1Kau#%14 j?"H,LMDXda#h &$2G!qNcHPy?XD isQ2v۟H%EAԈDŃX ]DUcDSv4hc$@ $В!w!$}.{CBF׼$Ok5dɽW&+7\' 1!c.dqX.J}! Eb n D,D@Srʩ(fdnm#^ Lbu`b|͈K'22b:: wX'Å7IzGtVYǙk3vbk*mv%Q2a.W1j*QbQte+vΞªϓ1R. qJ\ykc|me7>QU\72XJzڥbUBBhWY{Lk%MDtT1~KWYs¯65ɭӦǿT2ʤݷz,xp RvJ:*bR" eUFU%5 $Vl>Z;>re$fٮ~=j1ncKU48mM|b*W7f%L2y!t:U,eI@ZTQ(dT[7Q<-;J~C3n͝[=T3YMTAHS9[,$NbL:yglysvNc&,pf]OɾO6=Vbij+親ME5L*l H6 cSb)y53%98ۡJېWh_!* FO=Ÿ\*\-&d%SRn2姺WUæWϒߢ[hjeÉrz<{(R?n3ԙ2pl%u{$ԭ+3 S>]TĔYK;|Lrͮ%=SϾqA"Ʃ I;+ *~#=S 4i#dyϞR;9S,'Î16[Lb2eD?1PR/ -iNOZA/Ve(r,o?g>K_3]9r{Z.k$QQWC*pPmƍ-&Ei-mqj1{%V}1:̜N-% >UifLt.Gx%rƜyp<.\F>>+1߶ip ͔ yDFRΗ9jJZ4%AQQ6$8j.}U/ ZlY8Jp?żg0_q[M&&!j u-ZЄz Kdv_N#? ^ׇ_,Jɹ&F0ΐ*ysM/RF僀>Ly+gϬ]*Q%D9.IE$<''lXk^gm1Q&ZbyjI~$D}Hn $ B 72L נ?ST(RFY`Z4 cL5Ԗ[}8_3'uEL)eXLJJ >$r;yƨIq835\y07Y>Ujv|9o(>?{5sjJ\serJǩtc+ɵ3uy]I(JM*P@=1t2dsH(yC,6 zw34.7(2nܡLAm3<TDA PgU1{]K ~F eE7{KT<ɫ$Ԯn=]&*ՔT%ϨQ.l:yI>.qy? 0Q+ uUhqYiS:eMc,RGIM>\ry;K_\|Y׶U.k^_#sDqĤ0"hOU(Yy#hS*VEƢZghB'<.XHnVLu.ITsx2wM7|$JA~<1W+QKkwcܝ(GO|x̊DJa0>qN% j\[;;I}5B]*rS$e6#1w-akIθfQNSE=rfJPARqI4 ¹ ΋G1:jU2`؟Ur0V +0-Hi -utI?8êW*ɟ>F/.]}ZkRBPUzGzJK92K(PW 'y1dߋ^h 9}Ne7v9N.bȰnѣ&E"DA@;BB}Bx8/Wr2mv4i5d4d:XГ6S?Vu$E壊G*gY2%B-xo}e?wy71 8^-K3d!lv;-(t-^C/ދMzZ~LN/vJ9Mrabr<"\䲂6T&d!JФB;z=Nm V|lΧ#Or~ge*T*iL"Cdiq{vئ8Y7\xPuؖCB̕x@MА% zˆʽJ6/ "@ l 54I6fx܌DZ̽Ü"P !ܻ@ NHP :_~,t hAm7wbw}Y3FZ$e_k PieR:#A dryw 1 -=DO!\D4@U~B&$0Zs1"}Y}c# {BOѢ2I!ś 4\ȍ6ĉa V>в F q"ڽCBY3; A$$1N'Nh\mNF8(JQƯ;PX9"YHTXyMZZ})CÂl>XU%H"|2U˱,ugIQLɩJA@nšor*c%CNIS"ܮb+yFE3$P*B$%?)R.XQxK"G2Us|Wk1ު[!U6E_*'MLI&-,_΅{yW>*>it<@Xns]_&v)YQ>iQGq(Unիg!:U/'ZyfR*"TkRrEncC㊿Y\i:^\FtMSҦ;> ruN7:΢;p6dCXіE-n\r~oL!P%Sb%Tȣ%I>bQ0((#_,>xuZ1ϟ"Lʌ~Uq&+L4鞰Lu@A %ə/ŷo=ۯ{~TI7U2j#ZVaBj$L^`KSOe/ߟ=M$ϳ[u>xR3brni+)lș`=B8/ñ7o[zwPż|F$)>|SpgV))dJ^ FOkӟ{M==iN%=SdTe\\+;|iA W P\Ku_3-F')7RBD8OS)a˒?D6>d|Ru2 +0Fd];Gk07.gφGOnl_02y$J+SOH=: G m*'4JNo;fB3}4.zw%WK x@ Y gxPbk"2[ˆʈFAo$@kBD^PŒ8's"&hR5ȋQ$XD3 h(lY ba :LåU8pQ1sJO( \l#HӱF0a*fy.y؀/RDĒ8QXOmUԌ^К!`ms"&'QQVWT!Sq)S%TiJ:RzǙ͋wt2dmmv*pٔ*^Ref)7q9g_ʏ~0DiJm"1aV 3%覕K*uTֲjTr%~o<<ÛQ\˩iᥖYo\O<㯌d0cك2RV+I6N![S&BB|~`O)8.'y=gǂV8E mG$Zm3L:v +'RTb3*j)eIQHbI `\5bcW'˷Ǚ贑ȞL]}O^i9UDuaq"z11 )`} {sϦS <0e/o}Iv|;:ej/7YBSM/ å'M%3֞:d߽:o3S<_-.|D_ _IdUuQT++w2^K%%+S|i<>G[Ck_DZ4fZ!eRo<\߄,eMIJU€=z=z?GƲ{]4ӷ_JjJ[CGRhέ5diR\$-Ip~KjEfl&LwJ~cOW/لlmR1$:_koXWND@C$>R7xuLFy 򪐾iSuu):;Zw%G=/~*d‰N;ѳ~gɊIsKyf |9[&jp? 5xuBvJcdZ}{ƒJ>G T<<~ 13wp^9#5$Wdk!* MxC3uxH1,+20eUM*rA@L- T 0݇7!1IygÕCM)W5Lc%PMF9^xF9?ʽwgJXcȕyT_||%\rfUhWJk+-MB]:%A>-<^,I~ok僊?vRog >+ү2p|q L,AܳFN3oNhҌgV_8mN_L"jKMK`R{{{L|H.0x|ڴWP_2A_7{zJP_'g te,5cuzʦB={G_xt*WKK*Oɾ>>.(g#V\ÓMI0)RD,i@%<9|KRꤻ$} x?X.+v|g:5JŤ͘3BoIņ/[93ruӿQ*JE\4s'BZ=JʥN/:N_hݙh~6=EԈs DED-ץUBe$BogW?3NdjtOʓ"LQdQcOeM.~rN|yl9XuD OJORFGܓKt^G±)ȨW5MP_hx~9_lX.Gog/~!?eIZnؿio#ڿǡոcz%Gڶ|EjB8lŖǘhP#lKQ `Y' v<&C;hD nl/2oDq1$$%$ 6 EBqO̐#$L㨅 30"z <bGaפg!h* P6g&PF(4×'veF̝hcsNlwfU.$k*P&SQ'2b?57͕WVk*\O=ae f|׋MQqj`RE>UUTd-̲y2R4oGVfߒO]Pa+RJR@rݣӓUL6Š#2P.\j<P93|k-gC=a|-.࿁ɗ;$) A/θQ)M$:7,5'^)Xu*8N+wT|x68oLg1KkqW2qIrPJP2*ZR#\M̏ % T=+ϤBX]>N񋅸B"a:‘2X>i*K50>W)8C#+N`xB #҄d.r|ںTZlIVszH}*I|K>(O>diL&Q1qfhH2g_'S}~i}۶?Ws_`U%S>KU eäLZTRPKPϕ\>gXN/2D3gɔ) $t n.*2yV Ü ılZ~1 T.c;>M{xeȸUN2 U,TLA;uȭl;O |G ^98U@ZxɤuPyaRȨW9gdf+ Ĥ%RX)PlPw<}>9.GwG˂jxw~x)HHE*TIj%a ;I5;ja=!NQ%c>d-Dٗ~{]%؋=Y4Jmh)KD@ְhǣDF;DCrXQg! F@2# D(%tFp(h  oxy%7H+h2G*-.hXFJLe !a 94A[`F[h $L**[jjEFP AQxk4揷po9dJyٞ˘5|kf`H XC?oUF^~ŃƋ゗n pd%gRք}{7or̗8A">2ǝI˜f7p^&#DI";AH \QN$u];Fob l{^$Bm'ߔ,hr/А;3d> æв+}2&D$FB@.`!vW􌑥 $tY](QX=Q0Q:e[B(,GQ$2b70hSpA;e+8rҪ>`Qud'6r䒥QIJʙT')"oP'Wu HhZ׾3ms^<*ψzak*_hQ5NtxqG2s~IE[J&ׂa'JRX?%iM4yZuqc8V*h֫M. m>Ҕkω? \[FOEBSQKO* Z]O2e$yziwK$צ,:FmkLy3i%$:,I85=_eHn> (`i'gjgY8r~hǩ~~'b(5n5ρ%,MY59>KĕȔ83El̘h+멕!D HH -SJ*ۍ*\FuЦR]Gt˙:ty]Z%雍{WJd'kj!괸se%jKLo=w2y(J'rzǣQN\[YXAA- 8WxDANPnBm|/+<[0p\y0L+3MBW=VM4_ηqwS|#Yȴ^KdwOŎfdO.\9qi4 3zVʎhT}3RP~bBVuv1r aBY*b쭌O+;fQϝG30{?NMY 8F*kZʦȖR%qe)=!-R΋OVP:d*Z@7CVVlo47j${F2;}K6d`\D_(FHxр6^2rr6&L=:Bmm ;Zֈon ??h׌,>e3$ "aT$M ~pd0!x[E}\10-}A̓h1BD,v-$ܢ'B_>r!![̭ACdO Ȉag`:h(qF!4#edƖ#屒 f/L !`Zv0k :FHrbh!?+",b`D& wTBU@O؉!;!{tWVv!.o9YCb$Q,ofFR#.F:FBy{Ȅc$@7xHq͢hDXDmJbLu~'U!'iɉ{!7Q8D{;PY~>rm8%ʐ2SuhHQ:vhJ|S:)O/\駅φf #?as+@NR4/P u%ILD9)R 6˨RE:|o%}?揢8^< pEb}5?"B2tꚢ͙"Z(X%6$\ xK:_qMeOÿ)$Mq,) 2DErӡ/qb;iQNK~m'6?,o?yEm%,sմJ&`j j)6phdU|v; Kgo__Xv.}N9YJ&j|RT.8SAgQ>Ov<|>+(O?<| :B2&V *cL%.LzR&y B`%,j+n'K[>4]3~'%RHW:b+l{0v˸j&\ʅ{ǡ8e_# ^G(w~̇ 'Te\cFI"XZ`Ӫq.a:Z LJB0_8t旡aYa9- osC?دE/]3.`x~ )522)Hd"lFw*s}<ϵY\ 땴ӗ\GGt|{[urS#*6i8# { Kì(J7DGSNQG!2bB859 OS%g6͖8cM/O8Ah VoDBaۓD:^9vX)bI*nq0ܝF)Bdxx@b^DoAP;sxl,тo!LaVRyILT]mhuj<lOWsk챤ݾ<xq 7p_.D*K]ud龙$YI(%Dc,!w䜽ro lo91 h8Զ6i%FBQ4%sCa|G`ouv}zꜽMRnXm4fJՔ r5^jpd!giؽmӌ4i- -JLΔ'\4g3|+H.ܹ?yU8u| \W/0S i+ i'H;|3^*Qbӱe[xv:kf&bt '',ɞ|5˷Ʒ}C$<^ᅰ^gOW%Mx7UMTyEhmAT*eVU5 .` 46~3͢ce^Osx(5(e3$&i;iҔ|uIﯤ_v=o5~5`? 4kj(ʜ#_gq{=(uGD|6=M9O(X:jGr^7FL2"D\8t XxQ !"58"}#xʸܵh1*)A9+J'@?(bYqKs9cs3̘(u9RIR8e'&% :Din/A"f4@c; ,OAf"`D7&|D,l! ۘ@,X@+BEDH n{DVnF %B #$Xp"K`(H@d܉E 6VT@Z+5cdnphAxl9,b[0fM0ni=yYDw1}@Nsx6x+sB }oB‘"E&Bf n[+&DV ?Qn:*'g"I:F􋘦 X<.b%db"Ml s0ߩ3 54 bB .Lg5|HhP- ,`2Ѐb h{AFn[НTC#Hgۜr-;+hBDݿH"H\β)Ln>]ӣGBT؎MlˬUSSiԾFbAivS1p8e\Nޓ.8贾L6vy5Rt]9531 (w $$v;8qk,ԣz5׾x+?;+RZݐzJz"\,+FS!{9bn_O<}]šO /-aXf`=>d(wdRKKtOOO%?^ݷzXUۍ]V?VRLRT\袣NR)IHJˋǥ|Y 'v /IsݾQy hBg@K{@7;D DD,aBirl Ї,28DNr!r@ahŢdF{ADi+6b*ƍ_"#:DH$BR'8 eϤ(.w6#q`Р ]x WnDV{A.nքDox͙l7XEȂt"^Õb}$XAC͡*`'nYvD Di ܢB"*+BBŷ~ wMD@}``mv4DTۜ$N@ @nv"h]Cb*$  n4N-k 62 HDE= h2'd-߬BK"fA(ʎ3XѢBX4hWx}3, 6"2$ ubnJM8K6:+h1vtKsȇ}D%dTeyggwFuSt:vրU-hU:V!IZY_9O(tgY%"q^mr=[%TpSUTj(YTlv:M #[ǝ O>˲Elց"ב7U1:j**lUdը)D$408*KdL'93M<%iمɌңPaʥ\Ņ'Pa=2Y{◈fjcS8n S]Vޙ3SnK3rU􊿍qQ">pbY"}u e,VH\jBj(!G$C8#q'*p+s\RZR}Q6x/a1\S5WKRyLAX,Q&< VYP.40fS[oc*6 &(dz^̙K?̝,%;4ʷ4Co6|'r1䬋;3btZIFf? (`5&=',< 5:W=#[ W^CK٨1GoB DG{Y`c ͭ" c|/60pxD6ȅ01v~QxfQlD8R@@'hto[n7!*txH$,:$Dƙ ^ %ChTD6H ؐh2&cx@=7dh"x ehѦ{RÔD 6 L%xE :/ xϙbwɅ=bAw[S!6/D]g xX4lБl oc6@v,tC7C@@︄J+di/AHk< $hK!{!ԋSm bdkNhH12m$:u6;‘2v'oVs(&bML'ĘنEMx"`4xHܥ6Hʖj%*H{tD) %4rԭ l 8w?48K#ijfQ*Wu:1Q|WW' ԭTaz4 Rmu)ѭ)ģ\RӷksC&g,Jv_~g˝fQ)P۱nמ=X?S J&jpUDq{.xGsY8b+6NpK.ujj7Rr922]jQ Lbx^X{9q'%? Y~߆<դ}%Ͼw>l^$ZtLfh^~8n;߽W3ycirs>(|e|ac1)2N \Bhj1ZʉZfi2%p Q7KfPic2F:NPI|G$dzY8s.|F$z?e%):V%ùkÑ5 ^2ApF>գÒi:J:q&IkBEօ$ZDDK=@n_"_ƍH ^ lz!hK8DOZq D-hHIE wWhMP7(!xh?"IxPXʹCe#a %/ ˽x@ '&[!ۤHn{ȁ VDCBwBAx2eÏT[,n-BIIx >hMm;[D‰ ŅAfZ-owEEü.o4J,b*Hs++}'@gfHwyD"Xq xF̳D)bH1@mX=>Nä\`$LlB#,DTFAm݄MiTgԿ0- B-P(ȇ + $"FB@K$ Z{LDH4~JTɕ Pu pIv.q[i,w(S)Di"H ovxį-*cGw;K#biPG }Rz[)Y @͹ԑTeQ| >y `vn匝QK]11R]>`֙ER~ҥ~B1B@ jp}NR6UB2RB͈=t4SOsߛ|27xX4@}- ktt?hbbh(&I6 $!!6bdW$GC`$LH,!A`XwO^ BKQY!@@w Oq `GM-Ȃ@[=$ hy%2IsȀi̬x[c"QpLL h9}+%eDD"N0;@ r"4DD &hh} 8t'dQn:M 14TEj0+D~ !;h@ǴF ݯ.Q &! XhH Xx2Ф؛Zh74-$d^!!aD%B'3m$@3[4jhh@D$1h^$xЕ "hQ HI") hHYy^[TL-/רj|7TzZ_(pU1U;ֲInAR<;m6Ѧd]Xh,:Rk_\!^ 9#I 3 =Z5H,խq У"jHQJ8TrcGRJzᭁω9/׈>\[^SgTa{@X5(OU]$U*u"Rƙ(KPWr%Q^%|W.}O-~I{h__C鷂ϋqsanGUY3̙"{ se&[)ayGGS.>{?3kQ*\O#ݟ_q\Չ.6S&bU( S}~8svrfģ&KeʏC)*iiM]..,sAQmHCuO˦}ۋUoO$Ǚ~q7x.yS,!@%AI">CN Qv9BN2<9s!LMkGT3bh@D\4U =/B@ZAD#fPHEbБ5@{+gaI"+(AIDCTM۩"v-$P$@C B .l/0!6hh [QKY #P' 7Fñl Lzb-` 0(ɜX"$% u#@h!Hy;#!b D,[a  }_" A4e ܹFc!#h94@ȱPАI X);t@~KZf> ")af1iDBQ{EkBDΗDA,@M} b;D\ BC{ ubFB&$D D=D-#c}"5,A`om .bDF8qh(M؉'vKHW!mtF s Kg4mHĸq3G2,״IWF`tTDWgo D.<=I31KDz2@m8e_'~lc!ii\&6pGSt|\N= W^kdžqo p5yMb# 9/`6J򎷃F?|z?x%/?/ G0n6h(ـH"-/4@Ė.$ +"=^ɲ!mQ ;D"?"5DD1IDoxxRXuE"{i?(R SBX wxn@HIKT%͡H~*ȬEy&` И0n٢Xb"$}`ûQ5**4:m1f2dODDd%V("$m" @9$Cۙ5b 4EehDLKXUdŸ@EqMxlX}b"ca,Y"p~B"?Q gBkx"B/K pXx7U 7D hIfi.L0ĘEDI!["/hI53҄R Nj+\?6p8Lڔg+Gl8ciNGjaqq*El3\h 2GQ<2I2`#֠VBĈ|<G{V F]@gۚn>ŚZG&:gQH@֥iPSc?XX:Tƒ\ĖTvvwg3 D?(S1 }ؤG"ȹ~2ۚ?.MJ"tT JҢȆjRi:HԪd Gzr/$t7̗!ȏ ^2?.P""\L96x $V]]ė&yQt@dZgL$DDȃvnm""CX D4@37\m!  /_Z{Iy Ճ[ r]=*2 #<p}?0V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:$  V nփ.b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x8085809f5f8f172f:0x8879e549f7a67b5a R Ab  I5"T9{ x2]r]=j >%;Ej {t>%Bj %D (Ť0:EV_qi1j9EvqNEXoZrH:291MnXv8eRVDMF4mQoJ@ (5%I>=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913[ ? =?@Mj >%;Ej {t>%Bj %Dj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL   /_[{Iy i4bsSb" 1Fb H,*,  /_Z{Iy  ܡ. ]-*,  /_Z{Iy  ?a.{tm*R  /_Z{Iy  (|(@@p2$  restriction_positive1 *,  /_Z{Iy  "o\һ3?@*,  /_Z{Iy  /_b0/D**,  /_Z{Iy  ;0}2`*R  jlN^  /_Z{Iy2$  restriction_positive1 *,  U.hD  /_Z{Iy*R  u1@",!  /_Z{Iy2$  restriction_positive1 2MBaB`p@G1"  /_[{Iy Ճ[ r]=*V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:$ nփ. V b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x8085809f5f8f172f:0x8879e549f7a67b5b R Ab  I5"T9{ x2]r]=j >%;Ej {t>%Bj %D (Ť0:EV_qi1j9EvqNEXoZrH:291MnXv8eRVDMF4mQoJ@ (5%I>=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913[ ? =?@Mj >%;Ej {t>%Bj %Dj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL K  /_Z{Iy i4bsSb" j#Z#?*MBaB`p@@x8!|  /_b0/D* Ճ[ D =*2 #<p}?0V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: փ; Ab  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x8085809f5f8f172f:0x2a442fb89130af62 R Ab  I5"T9{ x2]D =j B>%șEj  >%tBj %LD (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvArBkb6XMKk4J@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913[ ? =?@Mj B>%șEj  >%tBj %LDj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL   /_c0/D* i4bsSb" j@ Ib[':*R  ܡ. ]-  /_b0/D*2$  restriction_positive1 *R  "o\һ3?@  /_b0/D*2$  restriction_positive1 *,  A)}o|  /_b0/D**,  # aEn=  /_b0/D**R  (|B Z  /_b0/D*2$  restriction_positive1 *,  /_Z{Iy  /_b0/D**R  /_b0/D*  uD(*I2$  restriction_positive1 *R  /_b0/D*  =#Z h(!y!2$  restriction_positive1 *R  /_b0/D*  j>2$  restriction_positive1 2MzAB`p@\ ^n  /_c0/D* Ճ[ D =*V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: A փ;b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x8085809f5f8f172f:0x2a442fb89130af63 R Ab  I5"T9{ x2]D =j B>%șEj  >%tBj %LD (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvArBkb6XMKk4 (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913[ ? =?@Mj B>%șEj  >%tBj %LDj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL K  /_b0/D* i4bsSb" 1Fb%Lt*MzAB`p@}K  # aEn= Ճь S7<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Sь Ճ5b  I5"T_ b  WN/9!PɁ2 x-j =%ۥyCj 33>%@j %? (013F1F18F289 101F1 F18 F28913M?y =?@Mj =%ۥyCj 33>%@j %?j 3"?%j LR?%j?*PRIORITY_LOCAL   # aEn= W_7혯ej" 1Fbn.!*R  # aEn=  ܡ. ]-2$  restriction_positive1 *,  # aEn=  ?a.{tm*,  # aEn=  (|(@@p*,  # aEn=  "o\һ3?@*,  # aEn=  /_b0/D**R  # aEn=  ;0}2`2$  restriction_positive1 *R  OZ⡀'TcttU  # aEn=2$  restriction_positive1 2`p0 t  # aEn= Ճь S7<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Ճ5 Sьb  I5"T_ b  WN/9!PɁ2 x-j =%ۥyCj 33>%@j %? (013F1F18F289 101F1 F18 F28913M?y =?@Mj =%ۥyCj 33>%@j %?j 3"?%j LR?%j?*PRIORITY_LOCAL F  # aEn= W_7혯ej" 7MࡀCt *`p0/ 0  ?a.{tm Ճ5 ,ǜ<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: m׃ Rb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x],ǜ< (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL   ?a.{tm W_7혯ej" !_]xn*R  ܡ. ]-  ?a.{tm2$  restriction_positive1 *R  "o\һ3?@  ?a.{tm2$  restriction_positive1 *R  A)}o|  ?a.{tm2$  restriction_positive1 *,  # aEn=  ?a.{tm*R  (|B Z  ?a.{tm2$  restriction_positive1 *,  /_Z{Iy  ?a.{tm*R  ?a.{tm  t⡀{뿡p2$  restriction_positive1 *R  ?a.{tm  K[2h7 7+2$  restriction_positive1 2`p0y";  ?a.{tm Ճ5 ,ǜ<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: R m׃b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x],ǜ< (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL F  ?a.{tm W_7혯ej" 1Fb8[KF*`p0M ^:  !_( +"H R R #<2 Rb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNI294kTdQadvo#(X```````px13F1F22 101F1 F2213L> =?@M  €  !_]xnhi$h  uD(*I G  Ԕ G =*V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  Ab  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1ff7592b3:0xabe5492a28b544f4 R Ab  I5"T9{ x2] G =j B>%șEj  >%tBj %=D (Ť0lj:EV_qi1j9EvqNEXoZrH:291MnXvsZsqpprmHZuJ@ȉ (5%I>=m[?E%I>Mm[?X```````hpx???ȉ13F1F18F289 101F1 F18 F28913[ ? =?@Mj B>%șEj  >%tBj %=Dj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL K  D(*I i4bsSb" j@ Ib[':*MzAB`p@0n  uD(*I G  Ԕ G =*V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: A b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1ff7592b3:0xabe5492a28b544f5 R Ab  I5"T9{ x2] G =j B>%șEj  >%tBj %=D (Ť0lj:EV_qi1j9EvqNEXoZrH:291MnXvsZsqpprmHZuJ@ȉ (5%I>=m[?E%I>Mm[?X```````hpx???ȉ13F1F18F289 101F1 F18 F28913[ ? =?@Mj B>%șEj  >%tBj %=Dj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL   D(*I i4bsSb" Zz*R  jlN^  uD(*I2$  restriction_positive1 *,  U.hD  uD(*I*,  u1@",!  uD(*I*R  /_b0/D*  uD(*I2$  restriction_positive1 *R  uD(*I  ;lIZHpKJ2$  restriction_positive1 *,  uD(*I  u1@",!*R  uD(*I  E-#?2$  restriction_positive1 2MzAB`p@M ^H  ΓSӯ~C ]O ]O #<2 ]Ob  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIu3EBcdSaFAf#(X```````px13F1F22 101F1 F2213L> =?@M  ŝ€  Γϲ ƶ mI?N(  L#Z#? G[ Ԕ;2 b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0xf63f23985aa2a223 R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:291MnXvM5teds87_8C:FjX7nNIfCERDPhRaoPJ@13F1F19 101F1 F1913#?n =?@Mj ?%j !M?%j R?%j >%j N>%j %  韔€d  L/ra  u1@",!  L4  /_[{Iy L~ c mI?WT  LH l& G[ Ԕ;2 Ԕb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0xde266c20f048c6d8 R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:291MnXvjSolCiPnHTs:FjX7nNIRAI3EdzE8DGJ@13F1F19 101F1 F1913 "?n =?@Mj r"?%j W)Q?%j Q?%j %j  ޝ>%j %  €d  =#Z h(!y!  i>  L=_  t⡀{뿡p L~ crR T1  Fލhsŧ ] K O<*2 #<p}?I/ Laguna Streeten* Laguna Street2 Laguna St * 7 ]x h\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  K ]Ob  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]%}0Ej  >%Aj %A (0ܮ:EV_qi1j9EvqNEXoZrHܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj ]>%}0Ej  >%Aj %Aj a%?%j U?%j?*PRIORITY_LOCAL   Fލhsŧ 7 ]x h" Γϲ ƶ*R  Fލhsŧ  ;2I*魑2$  restriction_positive1 *R  gm牡X߬4.  Fލhsŧ2$  restriction_positive1 *R  #++,  Fލhsŧ2$  restriction_positive1 2p08 >u!$>s  Fލhsŧ ] K O<*2 #<p}?I/ Laguna Streeten* Laguna Street2 Laguna St * 7 ]x h\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: ]O  Kb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]%}0Ej  >%Aj %A (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj ]>%}0Ej  >%Aj %Aj a%?%j U?%j?*PRIORITY_LOCAL   Fލhsŧ 7 ]x h" {{P̻4j *R  $,顀ݏ  Fލhsŧ2$  restriction_positive1 *R  ;2I*魑  Fލhsŧ2$  restriction_positive1 *R  B(g^ő  Fލhsŧ2$  restriction_positive1 *R  Fލhsŧ  jlN^2$  restriction_positive1 *R  Fލhsŧ  gm牡X߬4.2$  restriction_positive1 2p0 ln  Γϲ ƶ ]O ]O;2 ]Ob  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:FjX7nNIVVgh6qnJZWB13F1F19 101F1 F19133?n =?@Mj X;?%j  L?%j ff?%j ]>%j  $>%j %  ŝ€d  $,顀ݏ  Fލhsŧ  B(g^ő  ;2I*魑 ΓSӯ~C IhJC  {{P̻4j   K  K;2  Kb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:FjX7nNIQipFbo8GW3aJ@13F1F19 101F1 F1913K"?n =?@Mj X#?%j R?%j Q?%j –>%j ϰ>%j %  ʘ€d  𡀅mN^  gm牡X߬4.  #++,  Fލhsŧ {{PޮN.Mb mI?9  Lşۓ G[ Ԕ;2 G[b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0x1993dbcc9fc5d0fa R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:291MnXvwuycES1dr-S:FjX7nNIznzY1CHzvo-J@13F1F19 101F1 F1913 "?n =?@Mj r"?%j W)Q?%j Q?%j )>%j +>%j %  柔€d  L5  U.hD  𡀅lN^  OZ⡀&TcttU L~ c|q{ҿ  L4  G[ Ԕt;*B& Oak Streeten* Oak Street2Oak St * ?lqCwx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: G[ b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0xc8cfef0ae7ddfc34 R Ab  I5"T9{ x2]t;j >%;Ej {t>%Bj %D (Ť0Ȁ:EV_qi1j9EvqNEXoZrH:291MnXvBg9dDXRJtDlJ@Ȁ (5>=`?E%I>Mm[?X```````hpx???Ȁ13F1F18F289 101F1 F18 F28913%? =?@Mj >%;Ej {t>%Bj %Dj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL P  j5  ?lqCw" j#Z#?2MBaB`p@\p{V  L5  G[ Ԕt;*B& Oak Streeten* Oak Street2Oak St * ?lqCwx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  G[b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0xc8cfef0ae7ddfc35 R Ab  I5"T9{ x2]t;j >%;Ej {t>%Bj %D (Ť0Ȁ:EV_qi1j9EvqNEXoZrH:291MnXvBg9dDXRJtDlJ@Ȁ (5>=`?E%I>Mm[?X```````hpx???Ȁ13F1F18F289 101F1 F18 F28913%? =?@Mj >%;Ej {t>%Bj %Dj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL K  j4  ?lqCw" jşۓ*MBaB`p@L T2kO4^  oabR- Q QY;2 Qb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]Y; (0:EV_qi1j9EvqNEXoZrH:FjX7nNIE6fktTxtaeRJ@13F1F19 101F1 F1913J?n =?@Mj ӱ?%j M?%j ?%j vs=%j d=%j %  €P  KRG0U  b~b3  i> oa&M9 WQK  7Mࡀrmo Sь Sь #<2 Sьb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIfTWDY4v07rA2(X```````px13F1F22 101F1 F2213L> =?@M  Զ€  7MࡀCt t\H  L.ra G[ Ԕo҅;*B& Oak Streeten* Oak Street2Oak St * ?lqCwx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  Ab  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0xe9b861de14c3722e R Ab  I5"T9{ x2]o҅;j >%;REj d >%`Bj %DB (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvlEHKEQT4GSOJ@ (5%I>=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913%? =?@Mj >%;REj d >%`Bj %DBj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL P  j/ra ?lqCw" j@ Ib[':2MBaB`p@TC/k  L/ra G[ Ԕo҅;*B& Oak Streeten* Oak Street2Oak St * ?lqCwx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: A b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0xe9b861de14c3722f R Ab  I5"T9{ x2]o҅;j >%;REj d >%`Bj %DB (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvlEHKEQT4GSOJ@ (5%I>=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913%? =?@Mj >%;REj d >%`Bj %DBj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL K  j.ra ?lqCw" j#Z#?*MBaB`p@j;z  i> G[ QԔG<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Ԕ Qb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]G%@j %@ (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913M?y =?@Mj -=%VCj 33>%@j %@j 3"?%j LR?%j?*PRIORITY_LOCAL   j> W_7혯ej" oabR-*R  j>  F0U2$  restriction_positive1 *R  j>  c~b32$  restriction_positive1 *R  jlN^  j>2$  restriction_positive1 *,  U.hD  j>*R  t⡀{뿡p  j>2$  restriction_positive1 *,  u1@",!  j>*R  /_b0/D*  j>2$  restriction_positive1 2`p0Dc5W  i> G[ QԔG<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Q Ԕb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]G%@j %@ (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913M?y =?@Mj -=%VCj 33>%@j %@j 3"?%j LR?%j?*PRIORITY_LOCAL F  j> W_7혯ej" jH l&*`p0xp>1  pJ p P <*2 #<p}?0L2 Hickory Streeten*Hickory Street2 Hickory St * YKO F$)\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: P  pb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x]< (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913# ?O =?@Mj ?%j E?%j>*PRIORITY_TERMINAL   pJ YKO F$)"  t3 *R  ;lIZHpKJ  pJ2$  restriction_positive1 2`p "c  pJ p P <*2 #<p}?0L2 Hickory Streeten*Hickory Street2 Hickory St * YKO F$)\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: p P b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x]< (0ܮ:EV_qi1j9EvqNEXoZrHܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913# ?O =?@Mj ?%j E?%j>*PRIORITY_TERMINAL   pJ YKO F$)" G @0$M!*R  pJ  U.hD2$  restriction_positive1 2`p \p`<_  L=_  G[ Ԕ&;*B& Oak Streeten* Oak Street2Oak St * ?lqCwx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Ԕ Ab  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0x205fa0a0833dbee8 R Ab  I5"T9{ x2]&;j IZ>%xfEj ,>%HBj %B (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvQJD1AvNWs8UJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913%? =?@Mj IZ>%xfEj ,>%HBj %Bj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL K  j=_  ?lqCw" j@ Ib[':*MBaB`p@|q,  L=_  G[ Ԕ&;*B& Oak Streeten* Oak Street2Oak St * ?lqCwx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: A Ԕb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0x205fa0a0833dbee9 R Ab  I5"T9{ x2]&;j IZ>%xfEj ,>%HBj %B (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvQJD1AvNWs8UJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913%? =?@Mj IZ>%xfEj ,>%HBj %Bj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL P  j=_  ?lqCw" jH l&2MBaB`p@$ _/o  B(g^ő B؃  ]OE8:=*2 #<p}?C) Lily Streeten* Lily Street2Lily St * _桀D.s*Eh\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: G؃  ]Ob  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a19cb142d7:0xdd91c5835e679228 R μAx2]E8:=j %j %j %@ (Ť0:291MnXvRFnQLD8rI-P2(X```````px13F1F18F289 101F1 F18 F28913b ?| =?@Mj %j %j %@j ?%j \B?%j>*PRIORITY_TERMINAL   B)g^ő _桀D.s*Eh" Γϲ ƶ*R  B(g^ő  Fލhsŧ2$  restriction_positive1 *R  B(g^ő  ;2I*魑2$  restriction_positive1 *R  _>d*Lbm  B(g^ő2$  restriction_positive1 *R  !p\  B(g^ő2$  restriction_positive1 *R  Q.|{rڄ  B(g^ő2$  restriction_positive1 2p tF?  B)g^ő B؃  ]OE8:=*2 #<p}?C) Lily Streeten* Lily Street2Lily St * _桀D.s*Eh\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: ]O G؃ b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a19cb142d7:0xdd91c5835e679229 R μAx2]E8:=j %j %j %@ (Ť0:291MnXvRFnQLD8rI-P2(X```````px13F1F18F289 101F1 F18 F28913b ?| =?@Mj %j %j %@j ?%j \B?%j>*PRIORITY_TERMINAL D  B(g^ő _桀D.s*Eh" )z$2E*p ߻%  𡀅lN^  K ԔVD=*2 #<p}?0@& Oak Streeten* Oak Street2Oak St * ?lqCw\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:$  K F G[b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1f0f8ce95:0xc21c5e148ce54e6c R Ab  I5"T9{ x2]VD=j >%;Ej {t>%Bj %D (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvMub0VWvfnuOJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913%? =?@Mj >%;Ej {t>%Bj %Dj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL   jmN^ ?lqCw" jşۓ*R  gm牡X߬4.  jlN^2$  restriction_positive1 *R  Fލhsŧ  jlN^2$  restriction_positive1 *R  #++,  jlN^2$  restriction_positive1 *R  jlN^  uD(*I2$  restriction_positive1 *R  jlN^  =#Z h(!y!2$  restriction_positive1 *R  jlN^  OZ⡀'TcttU2$  restriction_positive1 *R  jlN^  j>2$  restriction_positive1 *R  jlN^  /_Z{Iy2$  restriction_positive1 2MBaB`p@42ҍ  𡀅mN^  K ԔVD=*2 #<p}?0@& Oak Streeten* Oak Street2Oak St * ?lqCw\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:$ G[ F  Kb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1f0f8ce95:0xc21c5e148ce54e6d R Ab  I5"T9{ x2]VD=j >%;Ej {t>%Bj %D (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvMub0VWvfnuOJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913%? =?@Mj >%;Ej {t>%Bj %Dj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL K  jlN^ ?lqCw" {{P̻4j *MBaB`p@BVK  t⡀z뿡p [ R<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Ԕ Rb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1e274ada3:0x70a0f3a1bfeba37a R Ab  I5"T9{ x]< (Ť0:EV_qi1j9EvqNEXoZrH:291MnXviEMBBsf_aNFJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL F  j{뿡p W_7혯ej" !_]xn*`p0\:^3  t⡀{뿡p [ R<*2 #<p}?0L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: R Ԕb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1e274ada3:0x70a0f3a1bfeba37b R Ab  I5"T9{ x]< (Ť0:EV_qi1j9EvqNEXoZrH:291MnXviEMBBsf_aNFJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL   jz뿡p W_7혯ej" jH l&*R  t⡀{뿡p  =#Z h(!y!2$  restriction_positive1 *R  t⡀{뿡p  j>2$  restriction_positive1 *R  ?a.{tm  t⡀{뿡p2$  restriction_positive1 2`p0gB<  $,顀ݏ ]O Sь2=*2 #<p}?C) Lily Streeten* Lily Street2Lily St * _桀D.s*Eh\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: ]O Sьb  I5"T_ b  WN/9!PɁ2 x-j %j %j %@@ (013F1F18F289 101F1 F18 F28913b ?| =?@Mj %j %j %@@j ?%j \B?%j>*PRIORITY_TERMINAL F  $,顀ݏ _桀D.s*Eh" 7MࡀCt *`p *PRIORITY_TERMINAL   $,顀ݏ _桀D.s*Eh" Γϲ ƶ*R  $,顀ݏ  Fލhsŧ2$  restriction_positive1 *R  $,顀ݏ  ;2I*魑2$  restriction_positive1 *R  OZ⡀'TcttU  $,顀ݏ2$  restriction_positive1 2`p P>  u0@",! G  Ԕa=*V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1ff7592b3:0xfd211aac2c224030 R Ab  I5"T9{ x2]a=j b>%1Ej H>%Aj %tB (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvmN9o892tEvCJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913[ ? =?@Mj b>%1Ej H>%Aj %tBj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL K  1@",! i4bsSb" If#*MBaB`p@w4h  u1@",! G  Ԕa=*V: Octavia Boulevarden*Octavia Boulevard2 Octavia Blvd * i4bsSbx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1ff7592b3:0xfd211aac2c224031 R Ab  I5"T9{ x2]a=j b>%1Ej H>%Aj %tB (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvmN9o892tEvCJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913[ ? =?@Mj b>%1Ej H>%Aj %tBj "O?%j p=J?%j!R?*PRIORITY_MINOR_ARTERIAL   0@",! i4bsSb" j#Z#?*,  u1@",!  uD(*I*,  u1@",!  =#Z h(!y!*,  u1@",!  j>*R  u1@",!  /_Z{Iy2$  restriction_positive1 *,  uD(*I  u1@",!*R  "_;C  u1@",!2$  restriction_positive1 *R  c~b3  u1@",!2$  restriction_positive1 2MBaB`p@y"~  U.hD G P Ԕ}1<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: G[ P b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x]}1< (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL F  jhD W_7혯ej" G @0$M!*`p00lϑ  U.hD G P Ԕ}1<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: P  G[b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x]}1< (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL   jhD W_7혯ej" jşۓ*R  ;lIZHpKJ  U.hD2$  restriction_positive1 *R  pJ  U.hD2$  restriction_positive1 *,  U.hD  uD(*I*,  U.hD  =#Z h(!y!*R  U.hD  OZ⡀'TcttU2$  restriction_positive1 *,  U.hD  j>*,  U.hD  /_Z{Iy2`p0L T2knq  7MࡀCt  Sь SьY;2 Sьb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]Y; (0:EV_qi1j9EvqNEXoZrH:FjX7nNICcla-q8YGJMJ@13F1F19 101F1 F1913?n =?@Mj  ?%j  M?%j p= ?%j X=%j d=%j %  Զ€P  OZ⡀'TcttU  $,顀ݏ  # aEn= 7MࡀrmoM ^g  {{PޮN.Mb  K  K #<2  Kb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIxzKW1TVvuT_#(X```````px13F1F22 101F1 F2213L> =?@M  ʘ€  {{P̻4j  mI?U  L@ Ib[': G[ Ԕ;2 Ab  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0x3a275b62e2490a40 R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0͒:EV_qi1j9EvqNEXoZrH:291MnXvdtNoFzVmXDk:FjX7nNIJQD1thbQ_DdJ@͒͒13F1F19 101F1 F1913#?n =?@Mj ?%j !M?%j R?%j >%j >%j %  €d  L=_  uD(*I  L.ra  /_b0/D* L~ c Dߞ  oa&M9 Q Q #<2 Qb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0ē:FjX7nNIzqQy_dVsD_Aē2(X```````pxē13F1F22 101F1 F2213L> =?@M  €  oabR-慘 >i0Wڛ  G @0$M! P  P Y;2 P b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]Y; (0:EV_qi1j9EvqNEXoZrH:FjX7nNIT9N5inhkJ-YJ@13F1F19 101F1 F1913?0?A =?@Mj ӱ?%j M?%j p= ?%  €P  ;lIZHpKJ  pJ  U.hD G^D[/."c  #+*,  (   KJ=*2 #<p}?@& Oak Streeten* Oak Street2Oak St * ?lqCw\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  K ( b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]J=j >%;Ej {t>%Bj % D (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913%? =?@Mj >%;Ej {t>%Bj % Dj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL I  @+,  ?lqCw" @~w'M8*MBaBp@YUi  #++,  (   KJ=*2 #<p}?@& Oak Streeten* Oak Street2Oak St * ?lqCw\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: (   Kb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]J=j >%;Ej {t>%Bj % D (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913%? =?@Mj >%;Ej {t>%Bj % Dj ]"?%j P?%j!R?*PRIORITY_MINOR_ARTERIAL   @*,  ?lqCw" {{P̻4j *R  #++,  jlN^2$  restriction_positive1 *R  #++,  gm牡X߬4.2$  restriction_positive1 *R  #++,  Fލhsŧ2$  restriction_positive1 *R  Q.|zrڄ  #++, 2$  restriction_positive1 *R  @֝"I  #++, 2$  restriction_positive1 *R  ?ࣀ  #++, 2$  restriction_positive1 2MBaBp@4 :wp   L~ c G[ Ԕ #<2 b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1fd4ca391:0x87899d63dcee097e R μAj 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:291MnXvMGDC1bQDLZq:FjX7nNIdm8Qub2rDvy (5 #==u?E%I>Mm[?X```````hpx???13F1F22 101F1 F2213L> =?@M  Dz꟔€P  L#Z#?  L@ Ib[':  LH l&  LşۓZl9  gm牡X߬4. SG N K<*2 #<p}?I/ Laguna Streeten* Laguna Street2 Laguna St * 7 ]x h\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: NSG  Kb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]%oDj ,{g>%Aj %PA (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj >%oDj ,{g>%Aj %PAj a%?%j U?%j?*PRIORITY_LOCAL   gm牡X߬4. 7 ]x h" {{P̻4j *R  gm牡X߬4.  jlN^2$  restriction_positive1 *R  gm牡X߬4.  Fލhsŧ2$  restriction_positive1 *R  %, p  gm牡X߬4.2$  restriction_positive1 *R  Ӕ, 3_m  gm牡X߬4.2$  restriction_positive1 2p0T 0a  gm牡X߬4. SG N K<*2 #<p}?I/ Laguna Streeten* Laguna Street2 Laguna St * 7 ]x h\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  K NSGb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]%oDj ,{g>%Aj %PA (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj >%oDj ,{g>%Aj %PAj a%?%j U?%j?*PRIORITY_LOCAL   gm牡X߬4. 7 ]x h" 8a@\*R  Fލhsŧ  gm牡X߬4.2$  restriction_positive1 *R  #++,  gm牡X߬4.2$  restriction_positive1 *R  gm牡X߬4.  , p2$  restriction_positive1 2p0H'Tkl  OZ⡀&TcttU S[ ԔK<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Sь G[b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1e2135a4f:0x557474f963541126 R Ab  I5"T9{ x2]K%@j %? (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvC5NVVKLikLeJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?y =?@Mj =%ۥyCj 33>%@j %?j 3"?%j LR?%j?*PRIORITY_LOCAL F  j'TcttU W_7혯ej" jşۓ*`p0T0]'  OZ⡀'TcttU S[ ԔK<*2 #<p}?0L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: G[ Sьb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a1e2135a4f:0x557474f963541127 R Ab  I5"T9{ x2]K%@j %? (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvC5NVVKLikLeJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?y =?@Mj =%ۥyCj 33>%@j %?j 3"?%j LR?%j?*PRIORITY_LOCAL   j&TcttU W_7혯ej" 7MࡀCt *R  jlN^  OZ⡀'TcttU2$  restriction_positive1 *R  U.hD  OZ⡀'TcttU2$  restriction_positive1 *R  OZ⡀'TcttU  $,顀ݏ2$  restriction_positive1 *R  OZ⡀'TcttU  # aEn=2$  restriction_positive1 2`p0 h  G^D[/. P  P  #<2 P b  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIncYEJFeyjnp2(X```````px13F1F22 101F1 F2213L> =?@M  €  G @0$M!@e^  ͪ@dȩ U 2Sr<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: 2  Sb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a208a1aacd:0xf38ca9c864919b40 R Ab  I5"T9{ x2]r=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?y =?@Mj %mBj  h=%@j %@j 3"?%j LR?%j?*PRIORITY_LOCAL F  ͪAdȩ W_7혯ej" =ƅ*`p0G~  ͪAdȩ U 2Sr<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  S 2b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a208a1aacd:0xf38ca9c864919b41 R Ab  I5"T9{ x2]r=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?y =?@Mj %mBj  h=%@j %@j 3"?%j LR?%j?*PRIORITY_LOCAL   ͪ@dȩ W_7혯ej" By ޿(C;o*R  ͪAdȩ  ) ~h:1X2$  restriction_positive1 *R  ͪAdȩ  KROO~SƲ2$  restriction_positive1 *R  "_;C  ͪAdȩ2$  restriction_positive1 *R  c~b3  ͪAdȩ2$  restriction_positive1 2`p0M7  [  U  St8\;*E) Fell Streeten* Fell Street2Fell St * qH߉]Hx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:   Sb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0xf9dd095bef93e9a6 R μAx2]t8\;j  >%e"Ej H>%Aj %B (Ť0:291MnXv6C9_gFYJ0EW#(X```````px13F1F18F289 101F1 F18 F28913Y]%? =?@Mj  >%e"Ej H>%Aj %Bj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL K  [  qH߉]H" =ƅ*MBaB`p@,Lru  [  U  St8\;*E) Fell Streeten* Fell Street2Fell St * qH߉]Hx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  S b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0xf9dd095bef93e9a7 R μAx2]t8\;j  >%e"Ej H>%Aj %B (Ť0:291MnXv6C9_gFYJ0EW#(X```````px13F1F18F289 101F1 F18 F28913Y]%? =?@Mj  >%e"Ej H>%Aj %Bj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL M  [  qH߉]H" Zz2MBaB`p@G[50  U2 (? &1r~>5=*2 #<p}?I/ Linden Streeten* Linden Street2 Linden St * }`i}[ȅ\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: &1r~ (?b  I5"T_ b  WN/9!PɁ2 x]>5= (013F1F18F289 101F1 F18 F28913 ?O =?@Mj =?%j \B?%j>*PRIORITY_TERMINAL   U2 }`i}[ȅ" 5=*2 #<p}?I/ Linden Streeten* Linden Street2 Linden St * }`i}[ȅ\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: (? &1r~b  I5"T_ b  WN/9!PɁ2 x]>5= (013F1F18F289 101F1 F18 F28913 ?O =?@Mj =?%j \B?%j>*PRIORITY_TERMINAL F  U2 }`i}[ȅ" q/ Nk6-J*`p ,Lr#j  lx^X U  S;*E) Fell Streeten* Fell Street2Fell St * qH߉]Hx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  Ub  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0x589a9583ff5e786c R μAx2];j B>%șEj  >%tBj %CD (Ť0:291MnXvqFGkK52FT73#(X```````px13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %CDj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL M  mx^X qH߉]H" 7&t52MBaB`p@MX:  mx^X U  S;*E) Fell Streeten* Fell Street2Fell St * qH߉]Hx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: U b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0x589a9583ff5e786d R μAx2];j B>%șEj  >%tBj %CD (Ť0:291MnXvqFGkK52FT73#(X```````px13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %CDj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL K  lx^X qH߉]H" If#*MBaB`p@ m -  Zz U  SY;2 b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0xbe061d7aff5ae792 R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]Y; (0:EV_qi1j9EvqNEXoZrH:291MnXvULZqY8enPsD:FjX7nNI4XKqFNSzK4mJ@13F1F19 101F1 F1913#?n =?@Mj ?%j )M?%j R?%j U֣>%j R>%j %  ͨ€P  [   QzN  uD(*I r2.V)7.@׷  ;lIZHpKJ P   S W<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: P  Ub  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2016cf53b:0x4a884b70485a4984 R KAb  I5"T9{ x] W< (Ť0:n0JCpw_Tiyqeg5FkeU:n0JCpw_bhqkG3iV9a0:EV_qi1j9EvqNEXoZrH:QMWzLfQzZr-KbgajKV:291MnXv2jRYQHa_ytSJ@ (5%I?=m[AE%I?Mm[AX```````hpx@?*??13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL F  IZHpKJ W_7혯ej" 7&t5*`p0{[j  ;lIZHpKJ P   S W<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: U P b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2016cf53b:0x4a884b70485a4985 R KAb  I5"T9{ x] W< (Ť0:n0JCpw_Tiyqeg5FkeU:n0JCpw_bhqkG3iV9a0:EV_qi1j9EvqNEXoZrH:QMWzLfQzZr-KbgajKV:291MnXv2jRYQHa_ytSJ@ (5%I?=m[AE%I?Mm[AX```````hpx@?*??13F1F18F289 101F1 F18 F28913M?L =?@Mj 3"?%j LR?%j?*PRIORITY_LOCAL   IZHpKJ W_7혯ej" G @0$M!*R  ;lIZHpKJ  U.hD2$  restriction_positive1 *R  ;lIZHpKJ  pJ2$  restriction_positive1 *R  uD(*I  ;lIZHpKJ2$  restriction_positive1 *R  "_;C  ;lIZHpKJ2$  restriction_positive1 *R  c~b3  ;lIZHpKJ2$  restriction_positive1 *,  |s  ;lIZHpKJ2`p0Zls  96C~ξ0 I? (Cy<<*2 #<p}?I/ Laguna Streeten* Laguna Street2 Laguna St * 7 ]x h\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: IC (?b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]y<%14QDj  >%PAj %4B (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj <>%14QDj  >%PAj %4Bj a%?%j U?%j?*PRIORITY_LOCAL   97C~ξ0 7 ]x h" %14QDj  >%PAj %4B (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj <>%14QDj  >%PAj %4Bj a%?%j U?%j?*PRIORITY_LOCAL   96C~ξ0 7 ]x h" {:?&P *R  Hԍp#  97C~ξ02$  restriction_positive1 *R  U2  97C~ξ02$  restriction_positive1 *R  97C~ξ0  %, p2$  restriction_positive1 *R  97C~ξ0  BKd2$  restriction_positive1 2p0 m˪  If# U  SY;2 b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0x11e92366a3f6fe49 R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]Y; (0:EV_qi1j9EvqNEXoZrH:291MnXvkBY8XB6VfLD:FjX7nNID1PUtDnm8_YJ@13F1F19 101F1 F1913#?n =?@Mj ?%j )M?%j R?%j rf>%j R>%j %  괠€P   QzN  mx^X  u0@",! r2.V)N#3  E-#? IC  S.=*2 #<p}?C) Fell Streeten* Fell Street2Fell St * qH߉]H\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: U ICb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a21a02f719:0x3f8c231f2dda4598 R Ab  I5"T9{ x2].=j B>%șEj  >%tBj %@CD (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvfCDQ4fGVPGcJ@ (5%I>=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %@CDj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL   E-#? qH߉]H" {:?&P *R  E-#?  96C~ξ02$  restriction_positive1 *R  E-#?  %, p2$  restriction_positive1 *R  E-#?  BKd2$  restriction_positive1 *R  uD(*I  E-#?2$  restriction_positive1 *R  "_;C  E-#?2$  restriction_positive1 *R  c~b3  E-#?2$  restriction_positive1 *R  |s  E-#?2$  restriction_positive1 2MzAB`p@zށtk  E-#? IC  S.=*2 #<p}?C) Fell Streeten* Fell Street2Fell St * qH߉]H\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: IC Ub  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a21a02f719:0x3f8c231f2dda4599 R Ab  I5"T9{ x2].=j B>%șEj  >%tBj %@CD (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvfCDQ4fGVPGc (5%I>=m[?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %@CDj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL K  E-#? qH߉]H" 7&t5*MzAB`p@M ^#   =?@M  俤€  %oDj ,{g>%Aj %PA (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj >%oDj ,{g>%Aj %PAj a%?%j U?%j?*PRIORITY_LOCAL   , p 7 ]x h" {:?&P *R  Ӕ, 3_m  , p2$  restriction_positive1 *R  gm牡X߬4.  , p2$  restriction_positive1 *R  , p  96C~ξ02$  restriction_positive1 *R  , p  BKd2$  restriction_positive1 2p0T 0Í^  %, p NC ISG̚<*2 #<p}?I/ Laguna Streeten* Laguna Street2 Laguna St * 7 ]x h\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: IC NSGb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]̚%oDj ,{g>%Aj %PA (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913w ?y =?@Mj >%oDj ,{g>%Aj %PAj a%?%j U?%j?*PRIORITY_LOCAL   , p 7 ]x h" 8a@\*R  %, p  gm牡X߬4.2$  restriction_positive1 *R  97C~ξ0  %, p2$  restriction_positive1 *R  E-#?  %, p2$  restriction_positive1 2p0ǜ  Ӕ, 3_m  NSGY9=*2 #<p}?L2 Hickory Streeten*Hickory Street2 Hickory St * YKO F$)\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:0 NSG <3 !H0 b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x]Y9= (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913# ?O =?@Mj ?%j E?%j>*PRIORITY_TERMINAL D   3_m YKO F$)" yڣ 'h*p Hvp46  Ӕ, 3_m  NSGY9=*2 #<p}?L2 Hickory Streeten*Hickory Street2 Hickory St * YKO F$)\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:0  !H0 <3 NSGb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x]Y9= (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913# ?O =?@Mj ?%j E?%j>*PRIORITY_TERMINAL    3_m YKO F$)" 8a@\*R  bţ=$ #ȕ  Ӕ, 3_m2$  restriction_positive1 *R  qQףם"I  Ӕ, 3_m2$  restriction_positive1 *R  \裀R].Ȇm  Ӕ, 3_m2$  restriction_positive1 *R  Ӕ, 3_m  , p2$  restriction_positive1 *R  Ӕ, 3_m  gm牡X߬4.2$  restriction_positive1 2p L T2kPjh?  &8a@\ NSG NSGY;2 NSGb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]Y; (0:EV_qi1j9EvqNEXoZrH:FjX7nNIoi8b77s1PD2J@13F1F19 101F1 F1913*?n =?@Mj ͘ ?%j (P?%j p= ?%j >%j ,{g>%j %  €P  %, p  Ӕ, 3_m  gm牡X߬4. & HD l{m  %j  >%j %  俤€d  U2  Hԍp#  ണKy}S  96C~ξ0 =n@Em>Mn@X```````hpx@@???13F1F18F289 101F1 F18 F28913M?y =?@Mj %j %j %?j 3"?%j LR?%j?*PRIORITY_LOCAL   |s W_7혯ej" 7&t5*R  o) b  |s2$  restriction_positive1 *R  |s  E-#?2$  restriction_positive1 *,  |s  ;lIZHpKJ2`p0  |s Ur~ &1S y<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: U &1r~b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2061d7c1b:0x94be1105d273dcd7 R KAb  I5"T9{ x2] y=n@Em>Mn@X```````hpx@@???13F1F18F289 101F1 F18 F28913M?y =?@Mj %j %j %?j 3"?%j LR?%j?*PRIORITY_LOCAL F  |s W_7혯ej" q/ Nk6-J*`p0iVɂ  9{ t3  p p;2 pb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:FjX7nNIc0YbGMIIW2H13F1F19 101F1 F1913# ?A =?@Mj ?%j E?%j >%  롔€  pJ mI?Nc  =ƅ U  S;2  Sb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0xdbf985c63dff998a R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:291MnXvfXwBYUPCjmL:FjX7nNIAzZVYclddXFJ@13F1F19 101F1 F1913."?n =?@Mj e"?%j Q?%j Q?%j 2'>%j on>%j %  ׸€d  "_;C  ͪ@dȩ  [  c~b3 r2.V) mI?5  7&t5 U  S;2 Ub  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0x35741e26b937a91c R Ab  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:291MnXvjLbI3yrIfLs:FjX7nNIjihxXfmcAKSJ@13F1F19 101F1 F1913."?n =?@Mj e"?%j Q?%j Q?%j g>%j ]>%j %  ġ€d  lx^X  |s  E-#?  ;lIZHpKJ r2.V)Yw?  gM3BKd ^ IC4=*2 #<p}?C) Fell Streeten* Fell Street2Fell St * qH߉]H\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: IC ^b  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]4=j B>%șEj  >%tBj %@=D (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %@=Dj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL   CKd qH߉]H" gEOƣ([S M*R  BKd  bţ=$ #ȕ2$  restriction_positive1 *R  BKd  _`{RSo2$  restriction_positive1 *R  BKd  7v0룀lQ !2$  restriction_positive1 *R  97C~ξ0  BKd2$  restriction_positive1 *R  , p  BKd2$  restriction_positive1 *R  E-#?  BKd2$  restriction_positive1 2MzABp@\5=0  gM3CKd ^ IC4=*2 #<p}?C) Fell Streeten* Fell Street2Fell St * qH߉]H\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: ^ ICb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ x2]4=j B>%șEj  >%tBj %@=D (0ܮ:EV_qi1j9EvqNEXoZrHJ@ܮ#(X```````pxܮ13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %@=Dj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL I  BKd qH߉]H" {:?&P *MzABp@H'Tv  b~b3 Q  d<*L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  S Qb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2011710fd:0x953362f27eace462 R Ab  I5"T9{ x2]d%@j %@ (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvqeIerXqDQrtJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?y =?@Mj -=%VCj 33>%@j %@j 3"?%j LR?%j?*PRIORITY_LOCAL F  c~b3 W_7혯ej" oabR-*`p0\ 8t]  c~b3 Q  d<*2 #<p}?L2 Octavia Streeten*Octavia Street2 Octavia St * W_7혯ej\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: Q  Sb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2011710fd:0x953362f27eace463 R Ab  I5"T9{ x2]d%@j %@ (Ť0:EV_qi1j9EvqNEXoZrH:291MnXvqeIerXqDQrtJ@ (5>=`?E%I>Mm[?X```````hpx???13F1F18F289 101F1 F18 F28913M?y =?@Mj -=%VCj 33>%@j %@j 3"?%j LR?%j?*PRIORITY_LOCAL   b~b3 W_7혯ej" =ƅ*R  j>  c~b32$  restriction_positive1 *R  c~b3  ;lIZHpKJ2$  restriction_positive1 *R  c~b3  u1@",!2$  restriction_positive1 *R  c~b3  ͪAdȩ2$  restriction_positive1 *R  c~b3  E-#?2$  restriction_positive1 2`p04 :wК  r2.V) U  S #<2 +Ԇb  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0x9829562e32f17282 R μAj 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:291MnXv_ZIWAIFrgaO:FjX7nNI6uLzN8GJ5Go (5 #==u?E%I>Mm[?X```````hpx????13F1F22 101F1 F2213L> =?@M  Ł̴€P  If#  =ƅ  7&t5  Zz(rH뒔2  c&԰f H H2 Hz 㵵 b  WN/9!PɁ2 b  s@< O x (0:uxIgTeg2VgDTu0RpM42(X```````px13F5 101F513 1 GW_FEATURE_TYPEGeowiki j (   GW_ISSUE_HISTORYGeowiki J  *rli.wi2Dear Google, Thank you for providing much of the cardboard for the urban farm, Hayes Valley Farm! We've put it to good use. You can see how in this YouTube video I made: http://www.youtube.com/watch?v=I49JFgzSQH8 I'm happy to report that this video received over a thousand views in its first week, but we would love it if people around the world shared in the joy of urban farming. Could you use your connections to get this video featured on YouTube? If not, can you give me advice on how to share this video with the world? Thanks! Mark McQuillen @%HRDear Google, Thank you for providing much of the cardboard for the urban farm, Hayes Valley Farm! We've put it to good use. You can see how in this YouTube video I made: http://www.youtube.com/watch?v=I49JFgzSQH8 I'm happy to report that this video received over a thousand views in its first week, but we would love it if people around the world shared in the joy of urban farming. Could you use your connections to get this video featured on YouTube? If not, can you give me advice on how to share this video with the world? Thanks! Mark McQuillen  c&f,%  j (0  GW_ISSUE_METADATAGeowiki J^ ƌU D *en-US27  c&f,%  % %x: j ( 8# feature_geometry_pointGeowiki j ( M ^R X  & HD NSG NSG #<2 NSGb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIauq3cWPYwir#(X```````px13F1F22 101F1 F2213L> =?@M  €  &8a@\ 4  {:55, IC IC #<2 ICb  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIMLlD23csmyj2(X```````px13F1F22 101F1 F2213L> =?@M  ף€  {:?&P Ih]O  {:?&P  IC IC;2 ICb  I5"T_ b  WN/9!PɁ2 b  I5"T9{ j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx]; (0:EV_qi1j9EvqNEXoZrH:FjX7nNI-cB0cTkSCPRJ@13F1F19 101F1 F1913."?n =?@Mj 7$?%j R?%j Q?%j (>%j na>%j %  ף€d  E-#?  97C~ξ0  gM3CKd  %, p {:55,MZ/O   QzN U  Sy;*E) Fell Streeten* Fell Street2Fell St * qH߉]Hx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0xc64e7a5198208880 R μAx2]y;j B>%șEj  >%tBj %@RD (Ť0:291MnXvUVYWmKz8k0c#(X```````px13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %@RDj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL K   QzN qH߉]H" Zz*MzAB`p@,Lr1   QzN U  Sy;*E) Fell Streeten* Fell Street2Fell St * qH߉]Hx\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;:  b  I5"T_ bc  WN/9!PɁ2; geowiki_feature_id%0x808580a2069300c5:0xc64e7a5198208881 R μAx2]y;j B>%șEj  >%tBj %@RD (Ť0:291MnXvUVYWmKz8k0c#(X```````px13F1F18F289 101F1 F18 F28913Y]%? =?@Mj B>%șEj  >%tBj %@RDj  #?%j O?%j!R?*PRIORITY_MINOR_ARTERIAL M   QzN qH߉]H" If#2MzAB`p@DO  ണJy}S  (? v9=*2 #<p}?I/ Linden Streeten* Linden Street2 Linden St * }`i}[ȅ\5 San Franciscoen* San Francisco2 San Francisco %* sUvgPJz ε ]5 San Franciscoen* San Francisco2 San Francisco * "%tz ε ]5 San Franciscoen* San Francisco2 San Francisco * sURK ?z ε T, Californiaen* California2 California * ˗iΕ TWgz ε ) US*US2US !* 62䄵TBC;: (? b  I5"T_ b  WN/9!PɁ2 x] v9= (013F1F18F289 101F1 F18 F28913 ?O =?@Mj =?%j \B?%j>*PRIORITY_TERMINAL   ണKy}S }`i}[ȅ" I׻te5ꖐ*R  96C~ξ0  ണJy}S2$  restriction_positive1 *R  Hԍp#  ണJy}S2$  restriction_positive1 *R  U2  ണJy}S2$  restriction_positive1 *R  ണJy}S  g7*PRIORITY_TERMINAL D  ണJy}S }`i}[ȅ" >%j |m>%j %  €d  #+*,  qQף֝"I  ?ࣀ  Q.|zrڄ  :ףq2QۋM ^׈N  :ףq2Qۋ (  (  #<2 ( b  I5"T_ b  WN/9!PɁ2 j 62䄵TBC;!"USj `0Zğj sURK ?j sUvgPJ%j "%tj sR/"\9j ˗iΕ TWgx] #< (0:FjX7nNIddTANb5xG1Y#(X```````px13F1F22 101F1 F2213L> =?@M  €  :ף~w'M8snappy-1.2.2/testdata/html000066400000000000000000003100001477101537200155270ustar00rootroot00000000000000 content: @ 1099872000000000: 'HTTP/1.1 200 OK\r\nX-Google-Crawl-Date: Mon, 08 Nov 2004 17:22:09 GMT\r\nContent-Type: text/html\r\nConnection: close\r\nX-Powered-By: PHP/4.3.8\r\nServer: Apache/1.3.31 (Unix) mod_gzip/1.3.19.1a PHP/4.3.8\r\nDate: Mon, 08 Nov 2004 17:19:07 GMT\r\n\r\n \r\n\r\n\r\n\r\n\r\n\nMicro Achat : Ordinateurs, PDA - Toute l\'informatique avec 01Informatique, L\'Ordinateur Individuel, Micro Hebdo, D\351cision Informatique et 01R\351seaux\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

Derni\350re mise \340 jour de cette page : lundi 8 novembre 2004  |  16:45
\r\n \r\n\r\n\r\n\r\n\t\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t

\r\n\r\n\r\n\r\n


\r\n\r\n\r\n\r\n
\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\"\"
Imagerie 
\"\"\n\t\t\t\t\t\t\t\tLG L1720B\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
332.89 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tAcer Veriton 7600G\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
705 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tShuttle SN95G5\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
375 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tAsus A7N8X-E Deluxe\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
91.99 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tThermalright SP-94\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
49 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
\"\"
1 \">\"PC Look
2 \">\"Atelier Informatique
3 \">\"Zanax Multim\351dia
4 \">\"MISTEROOPS
5 \">\"168 Golden Avenue
6 \">\"microchoix
7 \">\"e-Soph
8 \">\"PC Price Club
9 \">\"PC 77
10 \">\"Web In Informatique
\n\t\t\t\t
\n\t\t\t\t
\r\n \r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\r\n\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\r\n \r\n \r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

CD et DVD bient\364t insensibles aux rayures
OpenOffice gagne son service
La messagerie en cinq minutes selon Ipswitch
> toutes les news


\r\n\t\t
\r\n \r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Recevez chaque jour l\'actualit\351 des produits et des promos
\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Entreprise
\r\n\t\t\t\tQuand le billet papier s\'envole vers la d\351mat\351rialisation


Trucs et astuces
\r\n\t\t\t\tD\351pannez Windows XP


Conso
\r\n\t\t\t\tVos photos sur papier imprimante ou labo ?


Produits & Tests
\r\n\t\t\t\t5 programmes d\222encodage vid\351o gratuits


\r\n\t\t
\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n
\r\n
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\t\t\t\r\n\r\n\r\n\r\n\t\t\t\t\r\n
\r\n
\r\nPortable
\r\nUn nouvel ultra portable r\351alis\351 par Nec
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nLe Versa S940 a un format r\351duit, mais ses performances sont \340 la hauteur.
\r\n\340 partir de 1663 \200\r\n
\r\n
\r\nPortable
\r\nAsus pr\351sente trois petits nouveaux dans la gamme A3N
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nCes trois portables Centrino int\350grent, entre autres, une webcam et un contr\364leur Wi-Fi.
\r\n\340 partir de 1346 \200\r\n
\r\n
\r\n\t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t
\r\n\t\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
BON PLAN
\r\n
\r\n
\r\nLes derni\350res technologies INTEL dans un nouveau design pour ce shuttle haut de gamme, pour un prix abordable.
\r\n

\r\n
\r\n\340 partir de
\r\n
415 \200
\r\n
\r\n
\r\n
publicit\351
\r\n
\r\n\t\r\n\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

\r\n\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\tDesktops
\r\n\t\t\t\tPortables
\r\n\t\t\t\tMini-PC
\r\n\t\t\t\tPda / Tablets-PC
\r\n\t\t\t\tApple
\r\n\t\t\t\tGPS
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\tPortable Toshiba consacre deux gammes de machines au multim\351dia
\r\n\tEquipement haut de gamme et Windows Media Center sont au menu de ces portables \340 vocation multim\351dia.

\r\n\tOrdinateur Arriv\351e d\'un Power Mac G5 d\'entr\351e de gamme
\r\n\tLa firme \340 la pomme propose une station de travail \351volutive et relativement abordable.

\r\n\tPC Alienware propose deux machines au look \351trange
\r\n\tAurora et Area 51 sont deux gammes d\'ordinateurs enti\350rement configurables.

\r\n\tPortable Trois nouveaux iBook G4 chez Apple
\r\n\tChez Apple, les portables gagnent en vitesse et communiquent sans fil en standard.

\r\n\t\t\t\t> toutes les news\r\n\t\t\t
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n

\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tAsus A3N15-C Pro
\r\n Voici un portable autonome et puissant gr\342ce \340 la technologie Intel Centrino.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1170 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tSoltek EQ3702A Miroir
\r\n Ce mini PC est une solution int\351ressante pour les utilisateurs poss\351dant d\351j\340 un \351cran.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t559 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tIBM ThinkPad R51
\r\n Voici un portable complet et pourtant relativement l\351ger.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1299 \200
\r\n
\r\n\t\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t> toutes les promos\r\n\t\t
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n\t\r\n\r\n
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\n
\r\n
\r\nLes graveurs de DVD
\r\nQuel graveur choisir ? Quel type de format ? Quelle vitesse ? Double couche ou simple couche ? Voici tout ce qu\'il faut savoir pour faire le bon choix.
\r\n\t\t\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n \t\r\n
\r\n\t\t
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t\t\t\t

\r\n\t\t\t\tChoisir une r\351gion
\r\n\r\n
Un d\351partement
\r\n\r\n
\r\n
Un arrondissement
\r\n\r\n
\r\n
\r\n\t\t\t\tRecherche directe
\r\n\t\t\t\trechercher une ville
et/ou une boutique
\r\n\t\t\t\t

\r\n\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t
Recherche avanc\351e
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
Bureautique
\r\n\t\t\t\tTraducteur, organiseur...

\r\n\t\t\t\t

Multim\351dia
\r\n\t\t\t\tPhoto, audio, vid\351o...

\r\n\t\t\t\t

Utilitaires
\r\n\t\t\t\tAntivirus, pilotes, gravure...

\r\n\t\t\t\t

Personnaliser son PC
\r\n\t\t\t\tEcrans de veille, th\350mes...

\r\n\t\t\t\t

D\351veloppement
\r\n\t\t\t\tCr\351ation de logiciels, BDD...

\r\n\t\t\t\t

Jeux
\r\n\t\t\t\tAction, simulation...

\r\n\t\t\t\t

Internet
\r\n\t\t\t\tUtilitaires, email, FTP...

\r\n\t\t\t\t

Loisirs
\r\n\t\t\t\tHumour, culture...

\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\t\t

\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\nMicro Achat : Ordinateurs, PDA - Toute l\'informatique avec 01Informatique, L\'Ordinateur Individuel, Micro Hebdo, D\351cision Informatique et 01R\351seaux\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

Derni\350re mise \340 jour de cette page : lundi 8 novembre 2004  |  16:45
\r\n \r\n\r\n\r\n\r\n\t\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t

\r\n\r\n\r\n\r\n


\r\n\r\n\r\n\r\n
\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\"\"
Imagerie 
\"\"\n\t\t\t\t\t\t\t\tLG L1720B\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
332.89 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tAcer Veriton 7600G\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
705 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tShuttle SN95G5\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
375 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tAsus A7N8X-E Deluxe\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
91.99 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tThermalright SP-94\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
49 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
\"\"
1 \">\"PC Look
2 \">\"Atelier Informatique
3 \">\"Zanax Multim\351dia
4 \">\"MISTEROOPS
5 \">\"168 Golden Avenue
6 \">\"microchoix
7 \">\"e-Soph
8 \">\"PC Price Club
9 \">\"PC 77
10 \">\"Web In Informatique
\n\t\t\t\t
\n\t\t\t\t
\r\n \r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\r\n\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\r\n \r\n \r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

CD et DVD bient\364t insensibles aux rayures
OpenOffice gagne son service
La messagerie en cinq minutes selon Ipswitch
> toutes les news


\r\n\t\t
\r\n \r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Recevez chaque jour l\'actualit\351 des produits et des promos
\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Entreprise
\r\n\t\t\t\tQuand le billet papier s\'envole vers la d\351mat\351rialisation


Trucs et astuces
\r\n\t\t\t\tD\351pannez Windows XP


Conso
\r\n\t\t\t\tVos photos sur papier imprimante ou labo ?


Produits & Tests
\r\n\t\t\t\t5 programmes d\222encodage vid\351o gratuits


\r\n\t\t
\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n
\r\n
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\t\t\t\r\n\r\n\r\n\r\n\t\t\t\t\r\n
\r\n
\r\nPortable
\r\nUn nouvel ultra portable r\351alis\351 par Nec
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nLe Versa S940 a un format r\351duit, mais ses performances sont \340 la hauteur.
\r\n\340 partir de 1663 \200\r\n
\r\n
\r\nPortable
\r\nAsus pr\351sente trois petits nouveaux dans la gamme A3N
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nCes trois portables Centrino int\350grent, entre autres, une webcam et un contr\364leur Wi-Fi.
\r\n\340 partir de 1346 \200\r\n
\r\n
\r\n\t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t
\r\n\t\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
BON PLAN
\r\n
\r\n
\r\nLes derni\350res technologies INTEL dans un nouveau design pour ce shuttle haut de gamme, pour un prix abordable.
\r\n

\r\n
\r\n\340 partir de
\r\n
415 \200
\r\n
\r\n
\r\n
publicit\351
\r\n
\r\n\t\r\n\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

\r\n\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\tDesktops
\r\n\t\t\t\tPortables
\r\n\t\t\t\tMini-PC
\r\n\t\t\t\tPda / Tablets-PC
\r\n\t\t\t\tApple
\r\n\t\t\t\tGPS
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\tPortable Toshiba consacre deux gammes de machines au multim\351dia
\r\n\tEquipement haut de gamme et Windows Media Center sont au menu de ces portables \340 vocation multim\351dia.

\r\n\tOrdinateur Arriv\351e d\'un Power Mac G5 d\'entr\351e de gamme
\r\n\tLa firme \340 la pomme propose une station de travail \351volutive et relativement abordable.

\r\n\tPC Alienware propose deux machines au look \351trange
\r\n\tAurora et Area 51 sont deux gammes d\'ordinateurs enti\350rement configurables.

\r\n\tPortable Trois nouveaux iBook G4 chez Apple
\r\n\tChez Apple, les portables gagnent en vitesse et communiquent sans fil en standard.

\r\n\t\t\t\t> toutes les news\r\n\t\t\t
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n

\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tAsus A3N15-C Pro
\r\n Voici un portable autonome et puissant gr\342ce \340 la technologie Intel Centrino.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1170 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tSoltek EQ3702A Miroir
\r\n Ce mini PC est une solution int\351ressante pour les utilisateurs poss\351dant d\351j\340 un \351cran.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t559 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tIBM ThinkPad R51
\r\n Voici un portable complet et pourtant relativement l\351ger.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1299 \200
\r\n
\r\n\t\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t> toutes les promos\r\n\t\t
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n\t\r\n\r\n
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\n
\r\n
\r\nLes graveurs de DVD
\r\nQuel graveur choisir ? Quel type de format ? Quelle vitesse ? Double couche ou simple couche ? Voici tout ce qu\'il faut savoir pour faire le bon choix.
\r\n\t\t\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n \t\r\n
\r\n\t\t
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t\t\t\t

\r\n\t\t\t\tChoisir une r\351gion
\r\n\r\n
Un d\351partement
\r\n\r\n
\r\n
Un arrondissement
\r\n\r\n
\r\n
\r\n\t\t\t\tRecherche directe
\r\n\t\t\t\trechercher une ville
et/ou une boutique
\r\n\t\t\t\t

\r\n\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t
Recherche avanc\351e
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
Bureautique
\r\n\t\t\t\tTraducteur, organiseur...

\r\n\t\t\t\t

Multim\351dia
\r\n\t\t\t\tPhoto, audio, vid\351o...

\r\n\t\t\t\t

Utilitaires
\r\n\t\t\t\tAntivirus, pilotes, gravure...

\r\n\t\t\t\t

Personnaliser son PC
\r\n\t\t\t\tEcrans de veille, th\350mes...

\r\n\t\t\t\t

D\351veloppement
\r\n\t\t\t\tCr\351ation de logiciels, BDD...

\r\n\t\t\t\t

Jeux
\r\n\t\t\t\tAction, simulation...

\r\n\t\t\t\t

Internet
\r\n\t\t\t\tUtilitaires, email, FTP...

\r\n\t\t\t\t

Loisirs
\r\n\t\t\t\tHumour, culture...

\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\t\t

\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\nMicro Achat : Ordinateurs, PDA - Toute l\'informatique avec 01Informatique, L\'Ordinateur Individuel, Micro Hebdo, D\351cision Informatique et 01R\351seaux\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

Derni\350re mise \340 jour de cette page : lundi 8 novembre 2004  |  16:45
\r\n \r\n\r\n\r\n\r\n\t\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t

\r\n\r\n\r\n\r\n


\r\n\r\n\r\n\r\n
\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\"\"
Imagerie 
\"\"\n\t\t\t\t\t\t\t\tLG L1720B\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
332.89 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tAcer Veriton 7600G\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
705 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tShuttle SN95G5\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
375 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tAsus A7N8X-E Deluxe\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
91.99 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tThermalright SP-94\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
49 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
\"\"
1 \">\"PC Look
2 \">\"Atelier Informatique
3 \">\"Zanax Multim\351dia
4 \">\"MISTEROOPS
5 \">\"168 Golden Avenue
6 \">\"microchoix
7 \">\"e-Soph
8 \">\"PC Price Club
9 \">\"PC 77
10 \">\"Web In Informatique
\n\t\t\t\t
\n\t\t\t\t
\r\n \r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\r\n\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\r\n \r\n \r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

CD et DVD bient\364t insensibles aux rayures
OpenOffice gagne son service
La messagerie en cinq minutes selon Ipswitch
> toutes les news


\r\n\t\t
\r\n \r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Recevez chaque jour l\'actualit\351 des produits et des promos
\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Entreprise
\r\n\t\t\t\tQuand le billet papier s\'envole vers la d\351mat\351rialisation


Trucs et astuces
\r\n\t\t\t\tD\351pannez Windows XP


Conso
\r\n\t\t\t\tVos photos sur papier imprimante ou labo ?


Produits & Tests
\r\n\t\t\t\t5 programmes d\222encodage vid\351o gratuits


\r\n\t\t
\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n
\r\n
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\t\t\t\r\n\r\n\r\n\r\n\t\t\t\t\r\n
\r\n
\r\nPortable
\r\nUn nouvel ultra portable r\351alis\351 par Nec
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nLe Versa S940 a un format r\351duit, mais ses performances sont \340 la hauteur.
\r\n\340 partir de 1663 \200\r\n
\r\n
\r\nPortable
\r\nAsus pr\351sente trois petits nouveaux dans la gamme A3N
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nCes trois portables Centrino int\350grent, entre autres, une webcam et un contr\364leur Wi-Fi.
\r\n\340 partir de 1346 \200\r\n
\r\n
\r\n\t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t
\r\n\t\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
BON PLAN
\r\n
\r\n
\r\nLes derni\350res technologies INTEL dans un nouveau design pour ce shuttle haut de gamme, pour un prix abordable.
\r\n

\r\n
\r\n\340 partir de
\r\n
415 \200
\r\n
\r\n
\r\n
publicit\351
\r\n
\r\n\t\r\n\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

\r\n\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\tDesktops
\r\n\t\t\t\tPortables
\r\n\t\t\t\tMini-PC
\r\n\t\t\t\tPda / Tablets-PC
\r\n\t\t\t\tApple
\r\n\t\t\t\tGPS
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\tPortable Toshiba consacre deux gammes de machines au multim\351dia
\r\n\tEquipement haut de gamme et Windows Media Center sont au menu de ces portables \340 vocation multim\351dia.

\r\n\tOrdinateur Arriv\351e d\'un Power Mac G5 d\'entr\351e de gamme
\r\n\tLa firme \340 la pomme propose une station de travail \351volutive et relativement abordable.

\r\n\tPC Alienware propose deux machines au look \351trange
\r\n\tAurora et Area 51 sont deux gammes d\'ordinateurs enti\350rement configurables.

\r\n\tPortable Trois nouveaux iBook G4 chez Apple
\r\n\tChez Apple, les portables gagnent en vitesse et communiquent sans fil en standard.

\r\n\t\t\t\t> toutes les news\r\n\t\t\t
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n

\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tAsus A3N15-C Pro
\r\n Voici un portable autonome et puissant gr\342ce \340 la technologie Intel Centrino.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1170 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tSoltek EQ3702A Miroir
\r\n Ce mini PC est une solution int\351ressante pour les utilisateurs poss\351dant d\351j\340 un \351cran.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t559 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tIBM ThinkPad R51
\r\n Voici un portable complet et pourtant relativement l\351ger.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1299 \200
\r\n
\r\n\t\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t> toutes les promos\r\n\t\t
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n\t\r\n\r\n
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\n
\r\n
\r\nLes graveurs de DVD
\r\nQuel graveur choisir ? Quel type de format ? Quelle vitesse ? Double couche ou simple couche ? Voici tout ce qu\'il faut savoir pour faire le bon choix.
\r\n\t\t\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n \t\r\n
\r\n\t\t
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t\t\t\t

\r\n\t\t\t\tChoisir une r\351gion
\r\n\r\n
Un d\351partement
\r\n\r\n
\r\n
Un arrondissement
\r\n\r\n
\r\n
\r\n\t\t\t\tRecherche directe
\r\n\t\t\t\trechercher une ville
et/ou une boutique
\r\n\t\t\t\t

\r\n\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t
Recherche avanc\351e
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
Bureautique
\r\n\t\t\t\tTraducteur, organiseur...

\r\n\t\t\t\t

Multim\351dia
\r\n\t\t\t\tPhoto, audio, vid\351o...

\r\n\t\t\t\t

Utilitaires
\r\n\t\t\t\tAntivirus, pilotes, gravure...

\r\n\t\t\t\t

Personnaliser son PC
\r\n\t\t\t\tEcrans de veille, th\350mes...

\r\n\t\t\t\t

D\351veloppement
\r\n\t\t\t\tCr\351ation de logiciels, BDD...

\r\n\t\t\t\t

Jeux
\r\n\t\t\t\tAction, simulation...

\r\n\t\t\t\t

Internet
\r\n\t\t\t\tUtilitaires, email, FTP...

\r\n\t\t\t\t

Loisirs
\r\n\t\t\t\tHumour, culture...

\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\t\t

\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\nMicro Achat : Ordinateurs, PDA - Toute l\'informatique avec 01Informatique, L\'Ordinateur Individuel, Micro Hebdo, D\351cision Informatique et 01R\351seaux\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

Derni\350re mise \340 jour de cette page : lundi 8 novembre 2004  |  16:45
\r\n \r\n\r\n\r\n\r\n\t\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t

\r\n\r\n\r\n\r\n


\r\n\r\n\r\n\r\n
\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\"\"
Imagerie 
\"\"\n\t\t\t\t\t\t\t\tLG L1720B\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
332.89 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tAcer Veriton 7600G\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
705 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tShuttle SN95G5\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
375 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tAsus A7N8X-E Deluxe\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
91.99 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tThermalright SP-94\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
49 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
\"\"
1 \">\"PC Look
2 \">\"Atelier Informatique
3 \">\"Zanax Multim\351dia
4 \">\"MISTEROOPS
5 \">\"168 Golden Avenue
6 \">\"microchoix
7 \">\"e-Soph
8 \">\"PC Price Club
9 \">\"PC 77
10 \">\"Web In Informatique
\n\t\t\t\t
\n\t\t\t\t
\r\n \r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\r\n\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\r\n \r\n \r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

CD et DVD bient\364t insensibles aux rayures
OpenOffice gagne son service
La messagerie en cinq minutes selon Ipswitch
> toutes les news


\r\n\t\t
\r\n \r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Recevez chaque jour l\'actualit\351 des produits et des promos
\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Entreprise
\r\n\t\t\t\tQuand le billet papier s\'envole vers la d\351mat\351rialisation


Trucs et astuces
\r\n\t\t\t\tD\351pannez Windows XP


Conso
\r\n\t\t\t\tVos photos sur papier imprimante ou labo ?


Produits & Tests
\r\n\t\t\t\t5 programmes d\222encodage vid\351o gratuits


\r\n\t\t
\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n
\r\n
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\t\t\t\r\n\r\n\r\n\r\n\t\t\t\t\r\n
\r\n
\r\nPortable
\r\nUn nouvel ultra portable r\351alis\351 par Nec
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nLe Versa S940 a un format r\351duit, mais ses performances sont \340 la hauteur.
\r\n\340 partir de 1663 \200\r\n
\r\n
\r\nPortable
\r\nAsus pr\351sente trois petits nouveaux dans la gamme A3N
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nCes trois portables Centrino int\350grent, entre autres, une webcam et un contr\364leur Wi-Fi.
\r\n\340 partir de 1346 \200\r\n
\r\n
\r\n\t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t
\r\n\t\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
BON PLAN
\r\n
\r\n
\r\nLes derni\350res technologies INTEL dans un nouveau design pour ce shuttle haut de gamme, pour un prix abordable.
\r\n

\r\n
\r\n\340 partir de
\r\n
415 \200
\r\n
\r\n
\r\n
publicit\351
\r\n
\r\n\t\r\n\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

\r\n\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\tDesktops
\r\n\t\t\t\tPortables
\r\n\t\t\t\tMini-PC
\r\n\t\t\t\tPda / Tablets-PC
\r\n\t\t\t\tApple
\r\n\t\t\t\tGPS
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\tPortable Toshiba consacre deux gammes de machines au multim\351dia
\r\n\tEquipement haut de gamme et Windows Media Center sont au menu de ces portables \340 vocation multim\351dia.

\r\n\tOrdinateur Arriv\351e d\'un Power Mac G5 d\'entr\351e de gamme
\r\n\tLa firme \340 la pomme propose une station de travail \351volutive et relativement abordable.

\r\n\tPC Alienware propose deux machines au look \351trange
\r\n\tAurora et Area 51 sont deux gammes d\'ordinateurs enti\350rement configurables.

\r\n\tPortable Trois nouveaux iBook G4 chez Apple
\r\n\tChez Apple, les portables gagnent en vitesse et communiquent sans fil en standard.

\r\n\t\t\t\t> toutes les news\r\n\t\t\t
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n

\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tAsus A3N15-C Pro
\r\n Voici un portable autonome et puissant gr\342ce \340 la technologie Intel Centrino.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1170 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tSoltek EQ3702A Miroir
\r\n Ce mini PC est une solution int\351ressante pour les utilisateurs poss\351dant d\351j\340 un \351cran.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t559 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tIBM ThinkPad R51
\r\n Voici un portable complet et pourtant relativement l\351ger.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1299 \200
\r\n
\r\n\t\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t> toutes les promos\r\n\t\t
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n\t\r\n\r\n
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\n
\r\n
\r\nLes graveurs de DVD
\r\nQuel graveur choisir ? Quel type de format ? Quelle vitesse ? Double couche ou simple couche ? Voici tout ce qu\'il faut savoir pour faire le bon choix.
\r\n\t\t\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n \t\r\n
\r\n\t\t
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t\t\t\t

\r\n\t\t\t\tChoisir une r\351gion
\r\n\r\n
Un d\351partement
\r\n\r\n
\r\n
Un arrondissement
\r\n\r\n
\r\n
\r\n\t\t\t\tRecherche directe
\r\n\t\t\t\trechercher une ville
et/ou une boutique
\r\n\t\t\t\t

\r\n\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t
Recherche avanc\351e
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
Bureautique
\r\n\t\t\t\tTraducteur, organiseur...

\r\n\t\t\t\t

Multim\351dia
\r\n\t\t\t\tPhoto, audio, vid\351o...

\r\n\t\t\t\t

Utilitaires
\r\n\t\t\t\tAntivirus, pilotes, gravure...

\r\n\t\t\t\t

Personnaliser son PC
\r\n\t\t\t\tEcrans de veille, th\350mes...

\r\n\t\t\t\t

D\351veloppement
\r\n\t\t\t\tCr\351ation de logiciels, BDD...

\r\n\t\t\t\t

Jeux
\r\n\t\t\t\tAction, simulation...

\r\n\t\t\t\t

Internet
\r\n\t\t\t\tUtilitaires, email, FTP...

\r\n\t\t\t\t

Loisirs
\r\n\t\t\t\tHumour, culture...

\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\t\t

\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\nMicro Achat : Ordinateurs, PDA - Toute l\'informatique avec 01Informatique, L\'Ordinateur Individuel, Micro Hebdo, D\351cision Informatique et 01R\351seaux\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

Derni\350re mise \340 jour de cette page : lundi 8 novembre 2004  |  16:45
\r\n \r\n\r\n\r\n\r\n\t\r\n\r\n\t\t\r\n\r\n\t\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n\t\t\r\n\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t

\r\n\r\n\r\n\r\n


\r\n\r\n\r\n\r\n
\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t
\"\"
Imagerie 
\"\"\n\t\t\t\t\t\t\t\tLG L1720B\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
332.89 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tAcer Veriton 7600G\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
705 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Ordinateurs 
\"\"\n\t\t\t\t\t\t\t\tShuttle SN95G5\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
375 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tAsus A7N8X-E Deluxe\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
91.99 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
Composants 
\"\"\n\t\t\t\t\t\t\t\tThermalright SP-94\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\340 partir de\n\t\t\t\t\t\t\t\t\t
49 €
\n\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t
\n\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t\t\n\t\t\t\t
\"\"
1 \">\"PC Look
2 \">\"Atelier Informatique
3 \">\"Zanax Multim\351dia
4 \">\"MISTEROOPS
5 \">\"168 Golden Avenue
6 \">\"microchoix
7 \">\"e-Soph
8 \">\"PC Price Club
9 \">\"PC 77
10 \">\"Web In Informatique
\n\t\t\t\t
\n\t\t\t\t
\r\n \r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t
\n\n\n\n\n\n\n\n\n\n\n\n\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\n
\r\n\r\n\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n

\r\n\t\t\t

\r\n\t\t\t

\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\r\n \r\n \r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

CD et DVD bient\364t insensibles aux rayures
OpenOffice gagne son service
La messagerie en cinq minutes selon Ipswitch
> toutes les news


\r\n\t\t
\r\n \r\n\r\n\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Recevez chaque jour l\'actualit\351 des produits et des promos
\r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n\r\n\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t \r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

Entreprise
\r\n\t\t\t\tQuand le billet papier s\'envole vers la d\351mat\351rialisation


Trucs et astuces
\r\n\t\t\t\tD\351pannez Windows XP


Conso
\r\n\t\t\t\tVos photos sur papier imprimante ou labo ?


Produits & Tests
\r\n\t\t\t\t5 programmes d\222encodage vid\351o gratuits


\r\n\t\t
\r\n\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n
\r\n
\r\n\t\t\r\n\t\t

\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\r\n\r\n\r\n\t\t\t\r\n\r\n\r\n\r\n\t\t\t\t\r\n
\r\n
\r\nPortable
\r\nUn nouvel ultra portable r\351alis\351 par Nec
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nLe Versa S940 a un format r\351duit, mais ses performances sont \340 la hauteur.
\r\n\340 partir de 1663 \200\r\n
\r\n
\r\nPortable
\r\nAsus pr\351sente trois petits nouveaux dans la gamme A3N
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\nCes trois portables Centrino int\350grent, entre autres, une webcam et un contr\364leur Wi-Fi.
\r\n\340 partir de 1346 \200\r\n
\r\n
\r\n\t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t\r\n \t\r\n\t\r\n\t
\r\n\t\r\n\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
BON PLAN
\r\n
\r\n
\r\nLes derni\350res technologies INTEL dans un nouveau design pour ce shuttle haut de gamme, pour un prix abordable.
\r\n

\r\n
\r\n\340 partir de
\r\n
415 \200
\r\n
\r\n
\r\n
publicit\351
\r\n
\r\n\t\r\n\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t

\r\n\t\t\t\t\t\t\t\t\t\t\t\t
\r\n\t\t\t\tDesktops
\r\n\t\t\t\tPortables
\r\n\t\t\t\tMini-PC
\r\n\t\t\t\tPda / Tablets-PC
\r\n\t\t\t\tApple
\r\n\t\t\t\tGPS
\r\n\t\t\t\t
\r\n\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t


\r\n\t\t\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n

\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\r\n\t\r\n\t\r\n\t\t\t\t\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\tPortable Toshiba consacre deux gammes de machines au multim\351dia
\r\n\tEquipement haut de gamme et Windows Media Center sont au menu de ces portables \340 vocation multim\351dia.

\r\n\tOrdinateur Arriv\351e d\'un Power Mac G5 d\'entr\351e de gamme
\r\n\tLa firme \340 la pomme propose une station de travail \351volutive et relativement abordable.

\r\n\tPC Alienware propose deux machines au look \351trange
\r\n\tAurora et Area 51 sont deux gammes d\'ordinateurs enti\350rement configurables.

\r\n\tPortable Trois nouveaux iBook G4 chez Apple
\r\n\tChez Apple, les portables gagnent en vitesse et communiquent sans fil en standard.

\r\n\t\t\t\t> toutes les news\r\n\t\t\t
\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n\r\n

\r\n\r\n\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tAsus A3N15-C Pro
\r\n Voici un portable autonome et puissant gr\342ce \340 la technologie Intel Centrino.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1170 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tSoltek EQ3702A Miroir
\r\n Ce mini PC est une solution int\351ressante pour les utilisateurs poss\351dant d\351j\340 un \351cran.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t559 \200
\r\n
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \tIBM ThinkPad R51
\r\n Voici un portable complet et pourtant relativement l\351ger.
\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t\r\n\t
\r\n\t1299 \200
\r\n
\r\n\t\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n
\r\n\t\t\t\t> toutes les promos\r\n\t\t
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n

\r\n
\r\n\t\t\r\n\t\t\r\n\t\t\t\r\n\t\t\r\n\t\t\r\n\t\t
\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t
\r\n\t\t\t\r\n\t\t\t\t\r\n\r\n\r\n\r\n \r\n\r\n\r\n \r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n\t\r\n\r\n
\r\n\r\n\t\t\t\t\t \t \t\t\t\t\t\t\t\t\t\t\t\t\t\r\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t \t \t\r\n
\r\n
\r\nLes graveurs de DVD
\r\nQuel graveur choisir ? Quel type de format ? Quelle vitesse ? Double couche ou simple couche ? Voici tout ce qu\'il faut savoir pour faire le bon choix.
\r\n\t\t\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t
\r\n
\r\n\r\n\r\n\t\r\n\t\t\r\n\r\n\r\n \t\r\n
\r\n\t\t
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
\r\n\t\t\t\t

\r\n\t\t\t\tChoisir une r\351gion
\r\n\r\n
Un d\351partement
\r\n\r\n
\r\n
Un arrondissement
\r\n\r\n
\r\n
\r\n\t\t\t\tRecherche directe
\r\n\t\t\t\trechercher une ville
et/ou une boutique
\r\n\t\t\t\t

\r\n\t\t\t\t \r\n\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t\t\t\r\n\t\t\t\t\t\r\n\t\t\t\t
Recherche avanc\351e
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n\t\r\n\t\t\r\n\t\r\n
\r\n\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t\t\r\n\t\t\t\t\r\n\t\t\t\r\n\t\t
Bureautique
\r\n\t\t\t\tTraducteur, organiseur...

\r\n\t\t\t\t

Multim\351dia
\r\n\t\t\t\tPhoto, audio, vid\351o...

\r\n\t\t\t\t

Utilitaires
\r\n\t\t\t\tAntivirus, pilotes, gravure...

\r\n\t\t\t\t

Personnaliser son PC
\r\n\t\t\t\tEcrans de veille, th\350mes...

\r\n\t\t\t\t

D\351veloppement
\r\n\t\t\t\tCr\351ation de logiciels, BDD...

\r\n\t\t\t\t

Jeux
\r\n\t\t\t\tAction, simulation...

\r\n\t\t\t\t

Internet
\r\n\t\t\t\tUtilitaires, email, FTP...

\r\n\t\t\t\t

Loisirs
\r\n\t\t\t\tHumour, culture...

\r\n\t\t\t\t
\r\n\t\t
\r\n
\r\n
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\r\n\t\t
\r\n\t\t
\r\n\t\t\r\n\t\t\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\r\n\t\t\t\t\r\n\t\t\t
\r\n\t\t\t
\r\n\r\n\t\t

\r\n\t\t\t\r\n\r\n\r\n\r\n\r\n\r\n
\r\n
\r\n
\r\n\r\n\r\n\r\n C=10 M=100 Y=50 K=0 CMYK PROCESS 10.000002 100.000000 50.000000 0.000000 C=0 M=95 Y=20 K=0 CMYK PROCESS 0.000000 94.999999 19.999999 0.000000 C=25 M=25 Y=40 K=0 CMYK PROCESS 25.000000 25.000000 39.999998 0.000000 C=40 M=45 Y=50 K=5 CMYK PROCESS 39.999998 44.999999 50.000000 5.000001 C=50 M=50 Y=60 K=25 CMYK PROCESS 50.000000 50.000000 60.000002 25.000000 C=55 M=60 Y=65 K=40 CMYK PROCESS 55.000001 60.000002 64.999998 39.999998 C=25 M=40 Y=65 K=0 CMYK PROCESS 25.000000 39.999998 64.999998 0.000000 C=30 M=50 Y=75 K=10 CMYK PROCESS 30.000001 50.000000 75.000000 10.000002 C=35 M=60 Y=80 K=25 CMYK PROCESS 35.000002 60.000002 80.000001 25.000000 C=40 M=65 Y=90 K=35 CMYK PROCESS 39.999998 64.999998 90.000004 35.000002 C=40 M=70 Y=100 K=50 CMYK PROCESS 39.999998 69.999999 100.000000 50.000000 C=50 M=70 Y=80 K=70 CMYK PROCESS 50.000000 69.999999 80.000001 69.999999 Grays 1 C=0 M=0 Y=0 K=100 CMYK PROCESS 0.000000 0.000000 0.000000 100.000000 C=0 M=0 Y=0 K=90 CMYK PROCESS 0.000000 0.000000 0.000000 89.999402 C=0 M=0 Y=0 K=80 CMYK PROCESS 0.000000 0.000000 0.000000 79.998797 C=0 M=0 Y=0 K=70 CMYK PROCESS 0.000000 0.000000 0.000000 69.999701 C=0 M=0 Y=0 K=60 CMYK PROCESS 0.000000 0.000000 0.000000 59.999102 C=0 M=0 Y=0 K=50 CMYK PROCESS 0.000000 0.000000 0.000000 50.000000 C=0 M=0 Y=0 K=40 CMYK PROCESS 0.000000 0.000000 0.000000 39.999402 C=0 M=0 Y=0 K=30 CMYK PROCESS 0.000000 0.000000 0.000000 29.998803 C=0 M=0 Y=0 K=20 CMYK PROCESS 0.000000 0.000000 0.000000 19.999701 C=0 M=0 Y=0 K=10 CMYK PROCESS 0.000000 0.000000 0.000000 9.999102 C=0 M=0 Y=0 K=5 CMYK PROCESS 0.000000 0.000000 0.000000 4.998803 Brights 1 C=0 M=100 Y=100 K=0 CMYK PROCESS 0.000000 100.000000 100.000000 0.000000 C=0 M=75 Y=100 K=0 CMYK PROCESS 0.000000 75.000000 100.000000 0.000000 C=0 M=10 Y=95 K=0 CMYK PROCESS 0.000000 10.000002 94.999999 0.000000 C=85 M=10 Y=100 K=0 CMYK PROCESS 84.999996 10.000002 100.000000 0.000000 C=100 M=90 Y=0 K=0 CMYK PROCESS 100.000000 90.000004 0.000000 0.000000 C=60 M=90 Y=0 K=0 CMYK PROCESS 60.000002 90.000004 0.003099 0.003099 Adobe PDF library 9.00 endstream endobj 145 0 obj<> endobj 1 0 obj<> endobj 2 0 obj<>/Font<>/ProcSet[/PDF/Text]/ExtGState<>>> endobj 3 0 obj<>stream hޔ[MsFWnmU(se{kjw`7ƨhhҜ_e&rl(BG2ˏ_oͷ|H.>޽)Vs"Wq\Xإob5{|)^xylD]E~g*vM_YAڨjqݷ?b*]PWrUm?04]\}\ʲNVId=ɼup6wN~reߎU;6c5652cvu gS3>_D04Qw#*ׇ}L%m_9f0^YצYN9npse)9&|O"~lms=2yTǾZ?'=VW;`L)T0XA4&q'IGJdשŷC7bb1QtrJ1E\ESñR!"dwǝ ?Gq pۢ_⧑}}؉+.DAɤ$& *vo:UTi͑ks?y'V^4m]O߽A$xI;#4.|ýoQwvK,ă2kd6X,4#.C͛ ]=F6wQD1{~۴(}EK_w*hZ@CtEAg/)rjJчvS\a #xhGFؓ}lcYh)(ǍTNSb[,ʔW%ʣMswW/S2XGO5r>, b`'%E,B>|$G0,1%@T/2;,BQC)e]MRض~Rm[Q P c ] QkONFJ_ɇz{θCn5yٜh׏Ұq P$ Yp%b#X5|b^Q*B;NJ:3R*ě9"axpNA  Sb' Up~t܅6C׏s$tWheޢ+hq, GFIH[W5Sa<DXSq-͘1+"G[!&f,ݭpg |v0EQ͝`ҎIYZ)+S wM@]G\ѵcv[C?0!8C1R<*`yqY!K5_q7|M QS:Y0YuIaf>]"B]<-W{0ps涹f^HGѸdV`)0YohjVB訅aRpv)PO%̹ W-%~ח >-@e\: +pXIRt/'* O.XIMh=N`Bepxc_ ~d~R'%W( &o׷+,NyL'$Rxa9KBYXW2Ө/0,sJ1yX>(f$W(J 쇋ÏD~1RQg#pp2:}RHX0 = #1p:]cQ3&sd̤joF?8V&ӒSnޝ#:tb02.žzD-;+,=߃`p!jΰLD]asɠFcT \0>I/LPafrF HKؙe(O/e;ex~ZY P3cd|V4dOЇ)Z~F$֕K$tI@[Au0\dFdZsj?K~oX&=x6U8~.PTZ;@WaNCnuP(Ψ-&fMȲ!<4lmC 5c^A֍Y1xU_2gtiMc%='0>ⷢړuWHh*ZCw3HVwAкa H*^IؽSĮl֫p*>Q!:M֥Mlղ"r91LADm]X؆I)W'SzS4CBlĉ&6qjȂ: SH+z G?_KtɌb~> 4=tU *8g2ajD&_ߩB{  gB$EijMt|G Ǩ>#!8JM:>3wy.#3:0QI.8k"tNZ}G%@i"ܷL5)w?/>+$.&N3ꔈ{[-R 韹n>u eP 4~zZ](i~|M 6A8*;:Mh!GͰ#;BjPDahS~ȗwjyǡQ|EQ'ࢳX |J1c@"A'ceI3ȊZG#s>]MEn,R\FuNT':njDJXIgcqm7̰5zڎDyF AN;etS?Lم1gBB@3V̶uD|onhAJF*gyhLVVBbehה|0*n7AHRiDH§*H,puɢ)?e ;55ܬ_83SYMوtm4BXIގA<.}"!.d>?3Aq̋xH㗊t} lh*QLP3C{A+ͥ[ٲz'w/KisoE$( {gi0s I848'eŪLL"\Fx _BO!'o=`$j ̵4ݩ#,$Y۵RG,|{`WlЌ/pa՚%/[$GR"/Ai;F6䔒+um`P,k닀^TtfT'){.\Ur!|O Sv* Ő!XwrF,Xѕvvh0z +'wJ)s² ]hzo/1#A-+/6=nfݘ`7t刏/-(e>Ίeh"AO'ym(K@ 6~J2U# <↲rJq[ $o0-xf>fAQ'nC*9̤OVJ|v؂?2*( Xd\0)IPsfO.7'N 8ltG֚,̜KdGdOH^e1gp5%Ƌ$$A/9hoZK`_Z%SBPV[ZP7/wVS6pOQul6 ה Fak׊'dyvyi*m4,>ѠG] 9D7"*霨WAh8D\1qu51cuYyתǩݱ+ezuݡ80T,J*y+”L^5F斵zV1ܛgeu׭L[yz#䷐cAmGDL-d>{[sGɕ,5yi5,iKv7eW ĺi[vx~e@UpRDOUhVF;uCǾ4&!ּ3,3xe(CHϵ,{ˢj AsJ6ǯB O+}ɯp9)e;)gerbZÑ7N}ǣ4)[V~暋V@P?e_~ %_ -wQ[ lE6b٤jc{޷뫾sL2=Z%ˑH0i4>v:26 #Diy m8#uKhK#ziT\=e̽ݲ%>'o?ި'{H4y'L=އxNjj1|}c^itB}[~V;-9lNï[p#[rٖsn!OEtp`|v+bERyoXT`zUw(#E Rm3O+-BoU`{mUj0vU0{4A#x/kqC8&(/^sYg2"@gr66L99.oKMPWtu)="kRfHkoQΤļB[Hi}?qsSgxOh S )Ca)ԺY:k=ƱYї".Sar/{DҦLt: hMlڲKLbxDA/'V#_lwŨ{-P3a09p,Ɯ,sՏ;+W!E _EhԭD6v$txd&wcmy82+pFO)W%_6AgY:p|+<t}8,!e4@R\s!{>%!e 0Zw?O~c=L"R'mSQhkY9 t >}T-wS0kͻG KV6Ugl"cOGQetd=yy<*J-Vީoq z[X@4Va`) ?-aoN`,i*́v6jidS4D :Q>ZlQ]gY"b}$ P#qciGY^;;aEv0qಙޕ -^Jd49[aAr]vFMTQҨ8vǾ=2I>Vl;Vy g;](f7#6v7[M ?o} 2 Cf ` sthCBV.]XA+YDZmG'̇ Li7ӂFÿ[ФE.eQu?姛wp9b˿I)p6:A(?c𳫮Ǚ tZzy]:jZMiXe=ar?`KhŇa &ˤk%u&e/O. endstream endobj 4 0 obj<> endobj 5 0 obj<>/ProcSet[/PDF/Text]/ExtGState<>>> endobj 6 0 obj<>stream h[ےq}W#0.u%)YT][K>`z03M=a8^9YKO/IeK.2Oԯ]a7M'rxҖϋI3r~=!p20~S$U C^?OuY廦o*ߔI^e&0W"5Inɓn_K뷻.ox8*5~x*'v1ˤ﮾};YMɼ|.; ^˓Vfh}rg,-O2aer5ȜVF.9zhL"ZIL˱܋y]C#Ś蚚Z̷H,= =-.!nmrj|T&Ub!|SU26S2ɮMxuVeˢš3V@nwAnLR ܃Ɉ.GQv hy l{JfU[̢HIJϭl3Qj^Q7*ϏfÃ(~^z ΖWN>4?x{Lzan2pX3^)BbjaVUϹI,6~S(T"#\ˈ'N.rgX7NFbX`RĴ Ѽط'L-ŎT^u>1lyOFaK*!KpEqUcaA[ƹ>o,{d~EzO;$ڎ!5zД;H[6yygn:(Bfr˄ S3]%SC8;7͜sUlZeT ~VX\|Q|9Yu$/I Q&]->7kB.k3Mn~7qcGh .]~jukW3'6- S 0F(=8G;qKkola7ۗx~|( e vнv'U N J;%fC=Y._m?1Y ?fQ JLrOA͕`hzXEoȲp"NFK ˁ3ojEw~HT)&zlE^P9(NVEnQGP7Ë /.ҘI$AɇlgM"$!),T%> = lW._BXy߃A9DqGl9n[°g%6yQjڝ"@@H ~N)56OI?1'lt"k}BwChh}Qx.z@{\e,+be £P˜ A˜a^2v([|a [QvG!&JrGsHy!ɭRm/< +P?Lu$'<ܾTf.`rBH&FhR3ڀNpzs \:d`j{18c1;YL1Üڧ&f3ybFmx '#3ѽ Y'*#ySq9t G(zhݵtܑqL#Fd,p&5BQXrb^c,כ p­4NdᎩ*nK[6]1HI|.\dE!;% AtڔoySuiֳ"N2Ro>#-Ϭ?'͕7^d}8=hhe*k$W{3EMY2<{Jfﻱݽ@P 9ayHf*EКMC zHu&j~DmlM*C7k\ȃ~xuAn:*~R>LE,JehGl1$*iocW,=*EvasBc>GY|72AN* ]7"Fzar ` ZhB\&_@W,䫵GyZF׫́ e %ԙȕ:_q&Ҡ\ SHڵ6>,%]NRY YKbfw[:^I[L[`~)CY2=+$TK^>1fVh3 > `e'keZD.)S-+P*ڱ,bsf&[0QbGDž3f"Tz?.-gE,ÿq6:ҼD`=<6lXܶ-c+\6C,` 6},R/C6ECV>mN1`-dnC LOê?-?]CY."n"5, )8)e7[ %7 %s5lQrYxZ,"p ?9~9!`R9r@:M4~@K`^!Al)OmwL8h@/okē*B6W 8ag*Y̸9A,gaaNчK y c1ٛG6f )J'^Na@=- [wI `3&"BSݨSiHܗh#ScɦږŶ> mahq%qUHnoK5%&b'l1}`)4ʘ Hݮ{-?Z>(ﳼi, Ʊ%fH1̾)d4lcKgYxaOtuK{WƄm}uBOI/jg/$Y2ΗShP1ev'FM،ڜ z` r~plT=1G43"etPA׍V`wKeV} W!X)CKf0`#R&4RB.l71 j*xބxW{6ݮ|'\D⍦{U1$]|phGL3-knuPoT)ցk91p) t,Vr[*6.ck*?Q`Y\X^yЏh\ش&#pXVz=*š~ /؜C"](ɿFZ,_ +9ZgV4}g\5(oP;6I)zDHYr_) ;QZ63E ֆ)krACl"S" l,fۄ2oi5qkUtSل[2F޶cuϚ|3֟ #S7cHG[i.M2>u8Lt}TcӏS:kyhyQNa¯֒lb`zd \/vZ1C|sl+'!u",XeN2`8P-YwRU/hᴿՂ,TڶԎA>FSe(x E6o׭s}_!N@5F@їbw)y'xsv~DdaBW"V-fI՛zUyҟerY`L\2Ưsjlu̢F*8;pٽ ^."('ƙվA]Y5iT `^ ٤}u,v\bߡ㑜r_# jaYK5y?2_BL>0ȝв2Tڴ,S]*Z7WM2MJy9y.$3Ǽ4A32xKhx6t3|#!XPq-c_[ R)?GT ;1Q[=;mts9C9xqy$¢ 4rwfc[q=Pm"cOGי +JXdZЎ mGF墕PhN^O;j,lnfwtc#Q*F<-쵊kAro0{l2'FB'`,[ Mb 7,!tM*LiW^jatQ8ZDG-;FtZ?ޕZ T>.pV1̔*aҶ2:0:lh*%ԺA[r`а5I{ Tmd9 mQFLusW b4%> ceSD 8iHcC"]:mL1ehC3v, :/XdI-6|15kG}1c>iwGS&Z{mr vln\CqGyWY, * V ?'#>ȣh>ۼ纽g빢9ɣR{yj,_ g#4'7$v뱜G>׭2rJk!Y,3!јU?tVQ%Tyb7gς,m '.L> '8TrBS6*wmv6/2xdRfYVk-J}C\аeg>;dy0U >a!fT9+K M VB џN7y xUcsɆG$J/3"> Dv˅<4јΛ|؀`ܾyl\[> kkGSi%MB!MBk __ȕr ]d>͙0 ^Ƌ*_Mngx rCH4piL͍͊[[(û쬆:{5ІNysu4Y^Eڦ'x\'MQG438ŀnwڳcAX%_ NeMɴM?W)ݻ endstream endobj 7 0 obj<> endobj 8 0 obj<>/XObject<>/ProcSet[/PDF/Text/ImageC]/ExtGState<>>> endobj 9 0 obj<>stream hޜZrF+tpFQP7Ҷ 7(ZɗY-M8& deB_V]oƫwW_|_O<7O3gܵ*4>^e$M7CgsUZ&z:u6urIǻo`edR{{ _RԹLW.H. TXf҅W_^.\^V!:-nۺ 7*R|lC_&ɭ}}?]4zR}!-n ۦ*RI-i6W#Odz&<z", j[P>oT#sw:Q-'1ETt4Jo3C5 zj1qtW)뺚H5c_6ۦ$z?V9n+XWFu2,4ݲ݇ ҟx5/^.A5Leu֏u _͋T-=D:ಏ<6ݷSX M5=fb'j?N"-9NtN56ÝƉWA'?⧧"Jz&͏oɀUbulf,njDF4?ҥ0bS-,%(QepB)nsRE U5qd3gA1>~F>1 T2~{#b#IN O"wNMGJ*6IrΝF1R:m%dƾբų|?G̮epړ my`:$E!Mt.\e0(8s@HĠ?PF]Ydnpz6pq$V6Ayte\Δ9L#෥߄T蠄v05U %s3h c 6[7'.S&j V7<ԝXa{, %ZBss. ,)^rZc9~HH)97Np،]Oc-XW `F|=骘 +Zi%Ќ2 tZ3.`sD0C5,%E سKh> -bJjcS*XjAG#lS ݛt8#8Bጢ arzO#XSk g.,{eܒ4ȏ3 /oV4$i!UaOƙ Třa9,9T@@l=DTn˛;z ! "%ߝ18אr-m6SHl8JpxP-=F?:HO>1S`"@Qx=3" D@%V$ʲYhz,]-*`ch!@8غq4#:B [$j/>EN7⛶tXRnWa\bH'&uTU`Msx"44Ka!2܄0B)NI7,Jv({+88G;)^ 6 Ib=8= )%$9fu ;ܢ <4X=R, 4B^2:lP(3t"'TE_;#tZ| u$`2`P jv+beDwwW]YhjNPTm%U\kr{7[uIi"1sJo^R[,Z-Wu*nt|ARcX$W$5ZuL疣 ?P#5+UA)8Y2P^r`Y6q91\*rslR`[.b)qqU^D<Ž.T[*/ĉDI rѵ(6B\E2acy1胰X)5[w72vtRMbiˠU#eڨ$ޣdh3XXyѝ3i[_ad—v0(g)+w²}Ԓ[k. bd|ΰ *Ӈ$Mg(ϣO!a27fX6f*_ lc^60P]ñd .O(4U` lml TualS0PGmOT +rswFb`D^Oܸ)l(䈊ћRli!8$Shp^ox^#VvWIA]c8Ey},%T !X{C{LL x?Wgi{,iwDsh, g=4I)=,AiSAvtVH8' .{fg@ 3%1t͕_}vq2>lBM>d(.~)E%Ӣ8;xTaWbrRڜl eʪvEikqwF!mH|aˢ~[P%TE6̝FD(Ŀj!s48مM ֱSFYlWDำp|<ʝ1b&`DThco im*HT%#2|;!s{)).Xl3Z%~Fp@֤U*& ~^$ ENn2G is+ŕ q7t|,XE۾d[崴‡)6F[B]OS)WޔϹt<G\|s$e߭ܰV|ٟVHB.Y,o+MdJFDP֚>|!Gwy$| &ft[L&β]q֭BqMV^=KgW#64δ9C^^&&?.ʑ"R䞹;f QJ|cڄ.T򾮆gJ1k.> endobj 11 0 obj<>stream hTPn0 Stmt4x]hW@M <+)N >stream hbd`ad`dd vL) 0q6q5gy+y@HꀀIHﳾmXrj.+r@tE⼼⼼+V,^B 'c endstream endobj 13 0 obj<> endobj 14 0 obj<>stream hO+'lf+:Aٽ zg6Yi !ۃ?p Z_ot6 ޅ!p `4' pvWӿsԭ硸#uZUݭ_U?>p6Et} o-z'K˳vF<"]J.'d~=Fy~n0뵆py=繆>%+,4\(ۭ8~2l:j+\FV7)ϟN.7Z KB/K02My~xv65H. - p标%kn$2٬=ozy7]_vfN 0\My~0,dt:Zgv2ԩa<9KSGujX:WRb̔8QY ~_[t:V R Q;7L.燚<C$*%521v|- t:?DXly~ӽg} 株ZZ45+ϲqZig>&5M_.`pNz/yс<ϵ64252@$@Oj:]bs6ipah*}y>L~Ml̻R^.)57 ZK12m l6 Xjjf\ ypWnOBpk<7l6'V*n`(,­W,K׿g|)λkW5cuիW_Ǵ(gÃ6xf{p4y~(9p|x&Zcd>ϲйc4G#"P_k6A__|A$K @>\? ޼~MF#th ) ի}q,g١O>p!᠋3!_9H? ~ěׯ'CWOGWîa,kIU>|CSG>8\>t7#4>}u_]=`zչ4y~LӝOn:B\EP/_jgqzwZӟ4&珕2-G08rBG?VN #yX9!B|#+'dZ`pc @  <݋lP~ 5xrBn~6ifszt~n+ϲ,vyBOcK,Vi&y>N?V|Vm`liejn>WVm޿_ rYY> (pD=_7L&ş2fYX>?+ѱpˊuY8N]uc>%yZ* <:IڻfZ~bh<#Jܬ*>߽xDg~~hyB܅Qm\O,3<͊k,k̟Fݮxix|><ÊŴBX MGoek/E{f,E!9BGj>`4珕<YivjXcT%nrU zebzܲd29: :gҙOU8Ot֑K'yXU$db4EnMgqǘ˜|>RTUlJ""c:4? M/!-Fq+=\)c7~z8g؂'+y>/pǺMq wF8:܇6Y n-pya-MV <$Vi2YvgaY9l9@itih;ߧ*J4p:?aSSLMc%K-3$Ml6+f/yoSD,ϻ묭m6 )y~LMet1\~b?Pci9*-g4p8CؼMYGHgߧfx珗<`p.7MW.2ߤbQGvbH$|PtqڇBY+ #1ݽMcOO;:w%w-HyݕU:#[[)AG4reM+c%i] fEiQjf wiLSD1[p;y釡PF)QlI=xi9+~?7}Rbc7|Oz# GKNڶHyAH.3J Py fg>X`cbj~6*?| څmIPIjW-Q,Z6MO PIhOlAV IQIOe'E˔`gj9b/wellVy<Х|p^JW=|c%MQs6ĪZ~[Ӡ4?_jBcP{iB-2yXy~er\וhgL,zKy~vJU(5*|Φ m:}jzQ'~J[~Oz{*oȈE/4ml6]O6 GKڦ~V銇yro˯3mz>QJ=Z ځXq 7ϏcC%^ ?|ISڹqJ(jI?V|9ol4>Yi6{=f;ԶRK'ҡӡJ^h5Vfy~ƷlCg߹y D|"NkxLO2Wy+R9*zVW [9۔ϫ*_*~V: ӕq񋧃#ci(|E+#ݴGZʗ*7B?V|9o_mqrZu1iͲ6$iƼEdnbq~\V3rO?i|Y0%oTߙuzЙy-M;<n\#8xmTp/֊Ԟ#\|PMbqmq3ՔeGTEt-1Oo i|=ʚojsle:?Ӧt{s+5<ͫADei|~J)QIĻVJ>YL؞W>=I`Ӟг:t\p)\o|,LX+:,Babb_1n j - *1> _omiqGگ(dR۶bg)?+8Gn<s<22?[ $|Pm Lz4I̵K疧-YހJk1KGj*i!_ތʷM?̿Zھl^v]<Jv'4 珕2+=MgA ni7M ]ytr}=y~gg7U7Cafܞ.7Rye(J6~Ay~?ږ4_Q߾,+ʗ/_>{ ={-|+By>"+y>+Oo6v\.{ɤi~Ţg_PnXK:O_[8#MAP ahOM|,q>y7F'|ngo8|9W?:gYWNbv3ۯ<PkfY֙)HDXf%z*Ӡ~S7e*>8*#POM|@?D|n<sO.7#aPgZCqZ*}v!OM|@?DNn}SJ&\NkυNѰ@S^o:lj:Cm\.+ V +>.#i_ xPVmOMMaQ`C$vJ08'i',pDߔ̥?"?.|<&jj ֹ=#tZyt',pC$vJ08t|4 UU- H¦N>L&tKRi:}܆{<,& -]Z""!aKG4Tgw|B4N$χ!" '>V|YwGͦbmH UVlJwjj^ϲ2[IrٔZ/'҇%G78aMV쾴JZ*ڡڡw ߥO˄eBqdjtf{*lC ptCj@ew g隸9/9a`C$vJvϚݞ%'0n<${X,b˗Mk믛 o5մJ(a3ݼsrV; S誶o?y(ġc%AAeri^^)-qS*E|)͖cxi:0[e=ؿ׿)9rͥ<.Yʍ/_|aUf\?:MjZm+<_(t^nQtE>T(|EQE/8E1yEQyAM1{uib'6jZ˗/+ o6v۴q7"=P(ݝ+$''~r݋()y>\v&ob_HR|Yl6ye6{}B<_I~,սV2y>IJ0(M OiOdM L0( ~/(@49(/?5kۥo&^\a~QkCo15v?hJˬVE gKɲthEnӷjwEv?L?:%?iIh^krJ Y'&׌J nd)ZQhLH,>GYx׈f~"G,a~Q{M =3JY.v;),};!?&_,1r~6zlf!PK4,7( sO }a?y3Z.O&߸<)*p;V7ۆ皜.'n6_ /v; #n6{ߗHuSϑ]hr~Q6܎ pv[reYhۅefY\,}`O)-l$<,3;fg{#^ g!m&t~w &y~_g -}U0V|Xb}gJgEIVMTtja~Y'2<:fcڧž+pZ}C$3EhγNe_BȲZ/GRsOIuL&ߴM9i?`wG-w_;Y}~lڎe/ĎqNURӉ3Y:EsXLgγKi|XzKqHa봝Dg "ÃF@Ч|t = o^WK  0._-`YSq-z |IwRE=FhTs隺H%aY=d&Z4QKH;:9oJ:ADKA^ ۍGwQ{|t) l r}1K/8O?M8G?W~'?Qל>}̙3O=C]I]IƓO>{IATĄb@>_jڙ,jļAb)K4]dAէO)' < (ɬ} 999j++ .|uS #_?|+8*K5a\)%; gj^5Hs,GöGH9Nuv[,GjK w7ؒu&7wA]%"-b&E;a1__=f~<">ڝGK{6'؂t1 VC]666++c>I, ;<[U"竸4kFjc(! gxU#3i8;4H#9x$;\!b|5 *hL[i7eU >q버6zv`LksJG*xʥ3U6Qa LbyӶ AD@:Kl> |/C|dvqXL' 12L\̀MՕ%+&R%5l{J5!4Vf ժ7eem{g)U:ti@OfgJ" ^c<q~ﰸ߻(c}_=ޜt}k -t{*!?cFupzR)i2C9HnWwKZm}jRʽHGf8J@ f6{tV=.UODOWF A7 _|Qߞ> >܍dx 5A:yz>8a{ 24)KawWT@qGxMv T}#v8}2-A!_i|:$3bx'H_uwuG#&??? TZ|8Yϗrzufmj B+3jE ?_|] ÙJs2{̾?{ h c۶tw@VbC|&BV'}YE 6c#Ф% Q9jsp<j캷Vt9[s(Ѷ; TLdA,Y I>x!x>/ۜ= v@>F,+RwQZ RT PVVZԼM%xZo*nA%zHߏ)8;HޣqwTAD9ҚNܖoeU#Ͽ{GoOߚ9>>j++ AKQ!`}?Oqy<4XEsF 4ib#Uv7FΠg:#WMJtL)VIbzHR^ܗ&Fհ>"̐. ^mCum0>)E " xYҪ6V>s2C|{mi7o24RgE( l[ya"5D>QQg2uA`99GЏ6ƆJW€̶m>G|(UoӤ?,ՕL>|#aBK0;0UōI/24a/`S4Y妹at׀ #mkۣfpXFvE 4i8L]]{nJlzra[y]E׽[ww5Y輡@O !TG2[q pE  ekR7ԡ\EE+X7f,yr`̈JXMDFiSmgݣYz>|Ẋo\e`01^ >?}~MF)Ȼ ivVJ?l/Ryld)u6xEÓN7Tx{Ӫ1a"Hg1XaYʙx6g|~L=GL}&pFSA϶Lpc 7G w^?J}|3^?@>bQY pTQ,QE6d9*> (RE+VϷ,KZY>#Vb(isX?pѮyQ}|Ir ÐJQYw#YZth9!yruuO qJSڔݶ,GMH5߫8zi1G<#61kllld˵#Q/*TbQ(+g=}4b O?o<<+8<ʁ>qKW^ɺp8A?qS d \N`,*d^_b]+ S|kn}k*I/?-k9s&Vb~>XM+j0$c7,**JMiQsu&rbgZ|n{≷ULJ)Vpu-kn} ڕo3w>_q(ҜW JUjخUϼ٠YYق4׋CWTҽڍ aPŏ(;A a)lW"Rْ p**3gdYXQpEkSܐ!W,|a Ρ\(|^=eYHQ| q'5? 7}YH=R+Q0jlmixRJ~+mrJ*Y;J~\_4~ /=t KUkR8;bUѮ>_'ފ])#MOiPظ Fj:q|Oh[ܚYd~*s)7q` w gy7o]{kYvߏkQOظ:7?TYxl14ojm_,]ݧs<tnHB D|>^z!y,hUM59KY'> ìB]q0<>Rf [UxI۟7F5mP0kP ?au|6˸I:Jͥ/˭kH,0T gy76`;T /;JΩxܝ}yVF&~Q9i_ᵔw>amۣGA8pkŏޟiHMRw (˪{4I3jo}k7G K/ݮRW0*ԫW[z0xmn_+4T>\so|tBs0 &~zktj7ĉ+XTq?'TӼ}ٛA bS_sBUJVEo6;MԤe|>YP3\SK|~+}<WV<|T|ϣlb؋²R:yJ`<,57{o~CHփu"M/T=5x@k8lw(J26+Iz}nWضGMU .N |-0uokb/#"͆Y:7)]޵A=dYɥ{'󇷧sDm[ܦ4RҰ(RnD1 ŊY{>jP}wK)~#_^T|>7C*<&Dlڄ; `F㵢Un&ͣ # ¬sxԈa{іrNRapxwXb@Ŋj?-|)5 h ʽ5𮆍)v˖rG.K5(}i"zgm+#]5\E R>s2c~g|>wwwaMgYjSPwsCbYJ1O^KŔb3GJ9kG@+7Q4 G*rXYYjNR4 /Jc[0t0RBpk MfжMvtyy0A|;'ÏFHd_ÛGSOinERefYJ4$80l/5IS `%d|֕I}Mx||#'>$7RS}~~ tT79PlVW*P_ض)܅&k/-@M@جYY.ws֤H9} !G9[.M|k#ڸޱ G҇sr.=*3fʾ4a*sԆa>LwË3ifŭC* .Gnk(ku#Ymc J'hKludviyp݈{꾆Jss_or|&cGݔ&MgordBW2s "ώ0Ĝd>?91ϟVM,vcc#+l&CHe |hLidue~@i,/UWOKmd+ޠP0#>Њg2ԟaA}#}*sKX7U=ҿ uZAp|߇Rx?,+Z m^kGϼ xS?^#D"0a(rkfXBn|YHԿ:Tw+|YhvcLbpg0,^Ų:,UNPq)8T0I0as# tb"Euўu u\Ødz6BDFj'RDC@ZYR]dl7mpQnV<"VZ %6fBUjwK\YHKKV,MZmwDLsEg PH3K^1mrFt}`'ߚ/$GQCRǂAgDQM+:/_<3n0&XPʊ'|H,;0 K?w ^o>_ Y]OkC:"n బ8V*aU+E&+Nz/,S y^RuϠ % 拭xr2IßڡTY->o&P}(}/TІpLN$F)ϣW!|ߏ4q\)_~ƕSggٽ15Z$E \֓/59 J?uӲHWiO[ZOx6 T7pFͣχlw D٥:y&XPٲ}/ޟL_| xDY]jDQ]܄>Jr"lgJvB|4o?)|~#4=opxKRE}TT$ g0l{$iF/%l/ԯzu#JƤ'̩R4*#k"5 +J'0oTR|TqrL~?">s~<5.7b> ӧ>Uuc)]abia(0|n?||,]C?ȨP}*^b>JRlA A dyOo/ΟZ\,Do}~qJm4tP%ߏ[czM!M7fXaRZ qh.Բ ψeA^^u<<;"(Ϧ?>Rרx] Y5 Q8JpE|> 2 4ȳdbO?df˺VNY CJ[@_*iR ]i'Uޮpt5(IЖV)Pe`9{KXhpwͮWt)#WWo%'ߞ>wLfsUfR| (nH81?r\J TB"t&T.XiqA| Ɗm:a{e&[ZO';`p&.Ļ'wtz``~/[unsm]E}hw)9_eA(hۣNݶ&nUfYV7 gЃ*Oo|@P>A>v1|>v؏#DEw+CeVns489&ދY} |7*<"#[V~&&6>&7[$Rr>_޵\.ͿLTxF[LG*RuoUwi<64V%Њ0 UW@|pc JI% }i_yZ˲bRχ^IgwX#M8_/;^1XRkᰠR+9@a!>#Ɖ`"_)@ K|+J?`Bwee h&7.]v/9!qIqAk=!ͩJꞪ vwCADx6FAq/?oO~]ߜh`}}}{{{>ږ``۶ .>S(!% CvZ'0㢨1 nDpWYF/S$.N ~8(aoTXzW0Wd k!u^&T[^0:*eV =W>KEUy=5 Ԫ"O^j MmWFV'Y|<|VgK#_=*B7BDo*TwPŅpHV@=wG> ^!戦ʱT7ee͕/ϿvD^X1VC]I]It+^" p?|EL>-THøR6D~TֵV戢ToL*A0n(xtc _ 2zޘ'ABLdeɇP2m۶ ߗ(ߞ>@|Α]pMf3OPWvmǍ JJѮgn^jf|_%!W@_():%m$.1g:9 1 RKwT/(4jCG*_F6ܪ؍=AKEmۧ4͠),ҶIvJJ{]麮eY{jTBE>![%&epxuIe)n'sZ;w*t-e9ur/GߪhuAR053M1e C$E5AQ.|`iBu>_*rj:h(*kw>9!M3.i,]|?-4(rdM)aP |6uycPȏ " CǁWT0bKx]}K/χR/Ab=_ [42 Fk_V$~ ڽN#cuu|p 45',vf58%Ҹ[%AoO >萚 (er( 1VSK5Wsi24׫b#<ַ񲫐n]iYf씵Ls\V遰AQe|OAD(bIڞa(ԩ:'wG/,A|~7/dluuH?@B{KSa 66a\Y*(epp߷HqmkEm BDatߞ>& b0qJu]u^gEyE>_C*rAhZ PSi0V2| iGѼ  XFR"Ʀ7ar>_`E3 h#m#A0uV0TƧ .ۙov+r !ˆez %mq[~&3f\eZ! ϽnH7І; : l]\=^?Ȳ+p6AH2 /rF«GYOyא|~Le3^jûDf_}Wo9R!LHi":4mr,W„' Ͽ<~mIѿ=}>5 21 ۮh8AЙ; pmmmk nuݕ7* ; VE2 tnRh?gʗ'N+א|Bggl{/[ AiVȗz'3 .`꺷1R&AhΔeҕ 8 >9Aʥ{#bJloo?p8}hHQi5H^ue~ 7\H謓@ HńJ8}/~fU2ՉZ@"e  (*A*g%l^@2y(|mWF|m]]~eW:"bYs¥=ip,s ʤ'b*2&<l[8=1A677n@^w>0 i9AAߥTo/*z-766>OB!&E\Ȳ,& CQ1lmA2!3 " $_Z{[~9qQ1 |Qz*^$P!-D ETiҢTd>M(  COı 7) nt㺮&>K]3۱E5>?Uk]RSB2URX`<YZF=Y$HAaSK)}ʽ߶mq`x7IȮFՀ|~u*FS>_ YY٢Btil82JH#9\-BDQ𖵁OE/-  Svr)PO}~ogn2/ /~R L*z*#H-gy268 CTÏNdhNgֱ|?"F ϯ|xWysGJN`\:#M8` ̇ՌAD |kwNriBH?5.(r}>a A L>N0dmy^O|޹x;>._ͮEQeYxilG@W<Aʼn\| R^zUwՁ|~u>WQfLH>nYVW*j+=('Obmet< Èa||8%_緅:}J}L[?獥'So=DM;\4sM}+Ӎd>AQ'[fQvdzr2(: G+r}~Eq aͲ,nR%8amqN>Nzu1\󼤤3F, iT e~1x| "r!EɀWf$Q{?#q/#Ri0ޥ$bRL޶g czM%*az7*!AD͔/cG#Ĵ0ϝ? ),0 Y> TLӤ\|M5|ճ֙eZ;( -x zR. "$$kIQAZUq"IBY,zfL=5VQ *E20_HARϿytqs2Cdc8! |R&Of0՗qp=mYu\X5~|Saxhil$7|NflĂJ4(J1˲* o")ڍ%\{8>^zU۹A>-ûA`8K%'+亷vCpd>A-|܍os~kߟ" |OfMo:+Z?qYw82.C|>ONfG/LȧRn,ZR. ƸP=Xem}$ ܨ#>k%@.|>H+ ҩIlcHzHcj,hs'=gJ ?k>lG3^G̏7X(緃}q^>#OT4%cۣTL J.D2 h|> jyv&gܣ?޵^Gֻ]M-ȍu !$$ zbMKVKX'*jmFfLDaA,rad~Ϝl7333s2+3%c&j! H|~$fSޘ7 }Tx!q*#Ԑt y7[@k:Yb*Wt#NZ+FiAӠwf$Ɯvī_d-]! =ޅ.dRr˾6,Ӆ$꣨fB+%NII3Աnwm OEXnR>_x%r9Ůhdᾔ]N2q>Nk Bx>?ɦŐtr{+tl4624U+r؄GH24fM;qbxŸ`>9gQ豄j5ӅTIB=D0))iZ,;8`v)]RV>ᣧ6L\n|x_񈇹\.zN~5|/I2Fq(Aw&pa.X= xJll@ WPC4̮e盵!kZen(Z@Iw> USȞSrsٱr"mORcf(V #DӲz/1_Zh[ #|wL[ګOaVJs|v3 _ |〽bK Km#p4U*wӫ>_lقh>qhbh0< ;Rr}q(ٳupyN]Aa1,`ޟ3bX٘3;'G)OۗJlz|з_лU7nUi3|~0L|~l \U|{|撒&|]b]:+6Ͽ0|>/?W?[lGPhP==\~:|jdύ7M M _hG+B,^K]]cuu5 |A/po 6 k 3+x$OF؎8q;cf(LmX"mOϏM\Uq %0̬^8|-/;;;beLI|(WH|>?I wED5Ci](nGKϏ3`_8GAGq|@d|>9E.og e>A+Sjܾr&WWhV^vO(VoU^HӅa_bZ0PpFƧ|~[OX"^J)|q>###Xv"âVO),J&tQKLJ%(,~D3 BtuloX$7DgYTc_ TDNxi|~0l}>gfV+Jc C.|p]z*MZD9E^}v\r*RHo @ܬֈt|>j4 xufgY ^篟|%,|~uVҬ`|>p>!3ҙg!*UJɱ}Z- >S85ĉ$4ݵ_`C7kxE5*cHDdZfS_|ݍl|EQ؋fffj~I#YU!C#Vs>?S4\kgY|go??/d.xÉn0oqgx|Z';Rxr5P"̀O x!!|+5YigpnGCj 54bvlQAgriDu㒭6DycX{ .(݇}1v-?og2v~s[. J뽀nāw?i<~n|^KB⻆TttZ:{d~bCA\ f87ކg޽^/~~D/7eMp!둋qj0A&{(p)Vu!{ |~Pg81hooG@Ҁw?~q_Ǜ.ѯ'$fXf%wthqhFF1-Vva-0N-3mR^fffJDm@ HwIP(?Ov#tXѱ%tI1;ԟv+\Яzs/ ]|[eJB|2J].WjL36.-aw}L(XoJJ}~(M>|.接^9xUa}t̙g閆+Ip8ىeP677 Bl|9.AՃ[?'Z'i3|>`;]>?"ƨ)ocI*nf -boRdU~4 |?mBh 'ft},rT|Ci:BִH ׃g[v555L7D?C(JFFȫ`~7GPjV%!c[>?G}>u ݎyG!/h`qkX4O}iQHT 30 W+zsuuuXV@ 0Ji(,X@z1ӚVZMMM~!aw#OY)gO%Bj}> -1րχt>ߡ^)=H$L[O῞l< ,}V( w$!ۍps/[)緛DH>?.F;ԟ6 ;M$B vmXAQ``p\Q(+1# KdUٳ 3}~Lzs].u| . i;ԟN&Xm_/vJLYm;sT8߂ Y;ȇJ߯>vH\.&dDχ |Ciϯiᾥ'LNH @_1`d)c.?w=sڊy%H }>P? G(x<'@P}\4t\W;$Z g[ٯt0:B8Hd>o nw;l8ARGH~?|Il;|C>(m5˙%Zٯ϶bvg] Kno~ŮMz+>Q57BpSza>^B ,>8Ck}@ #/04D]o p_C^3I?H 5m=LQ-FEAġT#n# |>ZSoJ. HxFFF_$wc-`)(U>7aRÊI@ =G"ȋ} `g4B9E"g.vc_LAzU>k?Cn(7צfҘl\h?sP(Da]fn [v܊n.K9WpO=ȋԟr]#eM|| G H#$M$rds;}0(ٳ8.W;u(2qCGǬ5,33 @ 9Wȅmv&Zyk&h.q1PA No6|atl_۝[^ [['ۅg-c˕mjj}>dۣRF&BW=ؿG d]9s|[.8󉸥>.ģ +X?:LjV>?nQ7N2ɺvF,iј),)јI(nōAYLw],Gc(kcqM,2cS5~B#5q +{ha!հlќε3VHAfg!<]KJ7{c,nQ,MMROVY=?k՟bL4e&9M2ۭfX*җQD4\do:dIƼd$I>G4mpXL1?b^\37s(&X̊XPdQ\+]g0y1Tf :]Bi&iM淫&fp#>np_2J3 oX~,JIK9"\j zVStH2Ip(Ŗnf\E*afS7 H_% PjZL2Co%ۜB?$|}5[M{s̿+vZsv.~kgA·{9Vw[}h{Ez[<6>7|Gx#l8O{'kt3=tz͑ӫ;3ʪV=ꕳ+_=?Ks+:w-?j O,/S~ӟ/յK.]rvuKjB7/>>y WC^?Q|Em[ r/5F1[_F+Xa5Q/j"b_i5r>,kXWFhA_݂Z5X}5};Fu7~sVoNoߜ 87Q,N. Ɖ/}Ow_RmQo]Eo.fޕ?]y#jw<ʫy9h,y=/BcGˇ_>Ƴ/?j<ٟ4Ow! 5~ǗD%]KY𒮇t=˷K.=K[,oWe;e-k-k|pم C>\?x|ph}rKkJ׾Pu;_GCO <7P?}+X/(|eWvsɫ;3՝^ݙ[kA.knymͯYƞ7Li3XPb果DˬF3̼hbbf_cI厥;Un_oo_vcū}RP5 m>mmEnnQ{t㽢yo;Nl{b]'6t/%6&Q8MShmJV7W3[elߦ(9(ٌ.5Qb)ObYZ",i?#hMJy'%5/]yO&y鐐ΏYj6;v`ve Jٿk%ejf_i8g]q+]qZࣞSz>yA>Vxl{GWۿ[UUonu'VĚ??u5^WxɵOFWYU]Ԁo3X4:ԟ?<#[WSٽTRݱlvn{n]BfGv1y^l˄̖f6vkvk6/fbC`d_^!Q45m=ɼzzN`g^_+}2CKPK4LXIC9כv{}>\C1Ρ"H2qP2V>s]3!oq)4q}>?ےL`ݮsjfh%>_3Vy*$YL('wS5hoS^oqx"ybχχχχχχχχχQK}~M[Dєw$;;;Gs N?X/J PH0ZQ6; M &!%q-mq)y]42+ yC3VR-aq(Rϸ*((9>T`$w$w#24VEy ?7`z(ruIǻnI#飙?Is`Y;t7; Mʹ1hMY^eS"|[6?^ť|쪡 7&1l*RϷHkɝbwy>T>?4D `g >|>|>|>|>|>|>|>|>|>|>`dC_kc }?/N}>q|D\Š {}~DgϧuT!n[#]Wf322,j ԇwm7<(>D NX"f3mx!,%"5{^ !R;ɧnIJq>1c~0vļY"|s|6ii&C$RZo41z^2hXvȋKt3O6wIDK!`ҰZR|K/33$xW1a=byi5<-4l&|}񩕠r5>oʈ~F}v~g8_<).<6qUvOHkB&f^3"~loF LVE$%NS}"Z`r/V?N7\0%0;r:$} WP;^ /6|8K>LXASox66PmJO!_J@.~٢.`W~E+ˆp;X)y"GkQGJ$ Ҝ/iJ[+S8 LQ |O<*5m=d@8T22ZnjA J:(5KT>_s* | 3Ev)=z}[$SnZ+^m($#io NcvZcװ֗]G7)=:@|jLZ5/V|Skw܄jGF ו}Nܕ2O0lkp6-<.'Dm||||||||||1f^VDOI3aEq#N_/v>VV\}EcDל;=.2ſM XZzEQd~X]甴,m_7:yin\e: q/y| yYAFjχ&Xۈ_E|y;gd}sy}eq |T|>k8p|kFnχχχχχχχχχx!zA\.]E~r|mT4vү˲]~8L#B Q^,:|nVC_?~RnJ|Rr=H:|Ԫ1k6+A7|[x]mqG#:W}&Ki>4 4hEC hb0i >>>>:붙qJ!.$zs {Ek|[1pC &J/ C^k`Ϗ}H|EQߊt~:fPK&|\6(Efv}HML\{<Coh5%;ܱ'Ekq)]1XC62U3 `;wVI7ʞ'.ҸO~xJd6:71yĖχχχχχχχχχlIcz0{@r|XWj%҆ds ---_]}K^ϗ ׉W }~DX,ZJzGcPvv=1.!>%U> [_L_y..øج}BBy OujRI|\ }|]x^r/_=WsCۯe|q&;nQf||||||||||($R/q 5$Er$ +66+sUUU}JA1M~enj|}žsS٥P݆otl07-4OGt#}>eQj4i|>oϲ'7A?UB/`~\ʋ֭||VAtl fFlӻ6F"TRx,\2<=o Kt.Maج;pG |ޏX"@pC)'>_#5za{Ni oxP(&YYf6ljjnyU֗_`DV |:.4"ޅ ˼`EYMa.h󲝴h!|>|>|>|>|>|>|>|>|>|>`4`)qGrSnN6w1϶_7]kZ}M|J̺ 7:#BMV_2\z9vl᧢.oVbyPKΨ&[m A3WJn m?w4χχχχχχχχχχχVq#-%|~*_etLy}G9_s>?G^z^U)(-iͩZ5}} gf#),xEa0[ ➯Og,%zF'j,V+1C6-沫%wMOJ;8044v -~y}U3e:so*3hΤmsΞ=;kwVw֬♳gݞ3_[vܺ#g;)f횱x׌%잾teb4ϞXgۦmۦl}ۧl={[zG6;wfߙά{vڵ7kެ=wMɷ5&ywOIwGc"EQc_{K&W2 ?cqτ{n_hŽX//ō{cO{nFwRܥ^5jܮmj7EcM>j+ĶXU-8yBlRcb^uj~5jUBTj,WPeXP$j,X,ouޤ_Med_M?Ϻ7?kg,ɺ[^;7.Fa+nŴ+Y1}'Xg+g,_9Pef,폜U9KVYFުEr9 (ܺ&ǽ&53oX;sԘv֜uf5Kf嬧M1cfO0{S60;k7Ιčs&l{ƹ7n{æ>4oy6Ƶ[]%X5mb&Eso, pEd5D۟y1; rg,rќh:fyDqhjrDzӂ9jXD?SΒWjʚN)by⚶rԕBZ`IhS#[HeEwd {g90MLn,Ĵ&4x*K\Le,'<iEt(y#Ԥt`IJ&%!/&楕&5jSSx@v$_>Gݟߟ)1SQܥނ;ո vٷ-jZsKlWxo,QT8bk-jl.bTsr `!$l@>-Zmx6eLxNi }S][<@8($>_/}[$;wn 2G|T>|bFF3@r_dh5+VD{ 弙 7<*~oy<I;_.Z*c|[CyoϠD|W C8^ !b{K[oIr;͡j[NdwC/Cn~h@1" 7v]3ڷ#|:з1b_ OK1 Lhx  7AǷ_1ph#&>_\bQR$s>?"d`Clx6c7,ؖGq ( b@">ȫ?7ks_q_{(u%k6Ȭco?,Û7Ft#5\~CUdwQ.}Lп^ G}>ނ|6 EJ0[83f q $t̏ 3|>v%$ϧ)MgaC[5lyBԍb'7VtŮO=~^PrP>tsdAfe ob°h'>U|@Tn@IսX,jH2}>>ū+}sl+S~=| ?P$KZ 1ض@|2&O瑱jxwDYi{rP%19W|aID'a-$ { E /8~ѷ1b [gP)hԗ_*DH}^~oz:>f,I6.()i[Lg(rxB%79+{s糇;4~H|~|sfF!)Ǜ.I4殈Zfwv|)U@`L<18SR7;ߕ=Ure̘ɹ| ij|>'0Tf^0dgR/vJLm# q\))i& PH|Yz;.p_՜kIOmYH" |>vzjDy|4rONHdNwϡmmm Ø iJGX> eUUVxq~E*.M`0xN?c[hο]a2Ԩ~E}ɖ D|ЗtJXCzCd8̩iqsT:;;1ҚQ;gcUZe>k76{O 3hfT-5}5KHn)R!oJH"@J LE0o //oLCˊ':9J+k]I|cɫ՞9p8웍g}-L {Ge6\:iIOOϏԲ RSt]$>saXohڽ |@ >HZ"sZv9d29PmSNj 鬁jǞW ;3D]ŋglYw21}݁#W#Yq)^ `JO{n8 t'|~:+lNߦSamDSu]UH$"Y˝s0esSMb t}-S6?Eͽ̷v1ebt0{/x<Λ2p{O?/GQ4c|> O4321 bJN%9wkay,^QI)gFb.|>+\=;¢WUMӜ:imqX̷5KJx:lӜO)]_Oӏ=O(S33ҟ'F>M:6Fhc Rȡ/|>7<1?pj&_>Ww4{r7qW?ڛ<36DDOjhGG鏎&_MvOgsJ|um5v$=LHstg͸4_Ζ1IJϖ4GldT(bpҌH?2,eF͖ǂ{%ܠ{FGqo>*Q:O `*W R>pH+5<.oڮOW컻b7^G"c:ݩCMfD߮G e|ATt<1*;4N~?"Ȭ2$ ECNL_2ҟlJʻo~g?921U#/HMKC!gssJ~9g|GAU7uw}^\MqKfp<Ms&)؛AMӸ?aIk>gPgV21AI~M}>kj퉩xSCv0dS**eq+ރ@δ39FCjЉ4se?4!йWQ۸|U4iEMW-4ExJL.yxGV^ʥF.ۼ+囯\ʕ[jУ˯~t5.c~ز뚗]߼W|ōW*ry8r-_nۺۖ۶mKXrK~?<-y_nWخZ\>fBv{"t>;~[{n,}>;VoU BFW8%vA,2OOX&K:/6k/×n#!?'/ϹFr+s+]Z(mk]4[)Ӷ[#YK,yuk.ǚ+bknY-+b7|k7z_[};o׿կ޸i7Mk޼7o׽o߹z熻y{׽}^{]?x쩎|g}WQ襞U{|{+>O|`فeZ2_ / _RS1_5v$2rh&,-ɠB|O\:>#ғG~EeHč|0,F]!sL9eM!oi7}Kg#i򊑗4c/]6y BO,Ccd򬑝3<#i#;.v!Oi1'l3Ui>cF5Ef#yel2ҴlQCFjA!߈:<g/\Z"|S-!B엏>dbJդwZC?<~ovP>4hQ s*i=>HC loVw{?nk2骆mA|άzΰ \8XJɁχχχG ~ c亾`} dz6MR8 4e-5Çє$POe1E̫2,Ԕc޻HSϼ5}p }>kzǤ|J)g:p89G4 e7qgƦ;zž5-tvZ4Ben}`` N@5DSyV ")>1_Hzk}Lž>( 􋃕W tq|>|>|>|>%8ľ}zDͽSE}}}L7AS ===hJ`2̷6cn~/n׋~/ jh%7}# lF3֫w}>9b`bI9 4vД5C"ơp2Ӕj(_^$:ܶ$G"RCqχχχG r_VuhW}bߚփˑ)8e|b}ם;$|ϵQn%u|WχχχG&ž#fՋ>Hd&NKT7p ]m`0hs|^UхkRN~vK*=i7f-K||||>>>>>FM>]/ cNKRb{F&xI?PN{8]׃MO \^rxQIubփ>b|j2oӒ{f#0+LMwdXi U, "43lse> C;hRҽ?`pu.ϹmN#E@8u~cL#SҟeԎGq#Pgnw Gr_y kN[^r縤{_䐻GEO '^ХKJBh?<|>|>|>|>|>0o;!q>@P>8~ H*K-8bڔ4Rt`}! oILK:vʩ *]:>όP+{O*0/>>>>χχχχ4o=(Kfhc#ShA@Cݸ;6Kiܴr릏*DFb_[}O_4)oڮ|]&]<.|Q:ޮ}OgKn>>>>>_G6B@ Z4VnE4^>7O/_@Qاn_>z-II~ v+›f3Y)&EUUv}He8#nBᰵ($iiN u O >/ik_ 匐ϷG%:Sz'=r0+i`%zgn>>>>χχχχA;7}>ܫKO2-Dg`` z4e=7eWW$TUnہF̧wā5Ϸ[Z>!WnrBGEOXt++vX4'fP!)+ރ@δ39FCjЉ4se?4!йWQ۸|U4iEMW-4ExJL.yxGV^ʥF.ۼ+囯\ʕ[jУ˯~t5.c~ز뚗]߼W|ōW*ry8r-_nۺۖ۶mKXrK~?<-y_nWخɧ|s3-l|6IH򐑿yF6s%DW=F|<<B`=Y2r;X.|ߑ5>,+<.===]T gBUDSbċ +ےeXSO>͵ I~Iɺxns 8X/gK$}> Sc R{`n|(HY Ocd0?AS Ԏ===hX,f՘@k þR G֔ AT2M7|>v?'G6J k4emf)u]F>~:K-˧M[]+v/ !ko|[$>ɝ>_.Zɍ=\)W8d?T0QvM y:I1;jMTUeώPrfD xE";2_$t ݒ iZnw|qփ|>oPs(U>AA|@A7 RZ ^G6¿zu=Km sgQEQu5+:ي竹^q竪*;R*V@gd1Сp>^󓙬7h>@R 25 5Jٽ]z %= c'2{Qw[EϊɢѨNbgfud&ԝP;FzܫKDP:;T)&߮(:9D$5Šq{ׁ|nk|-g۵˜-27%|>k>}X~6#id&KAH$Bo(r${n&=Jp\ժޛ'o-oȬ+}T0%A[nKfIfKkZ>Ū~uz|?vdbʎ߲7|'=.|]$YlR|>p(9tvT~/qAj(TK@@B(9ACe'?{<]H;e~>PPH< `4{+ճB;ks9O?%:hdb*uwdqjh4(oX,nz\FdbJ4ؤb1kgmlI:\9=lxb =7rŸwڃ>hN06_L:;TۡCW;hʚnkU֌x0wPo;Ғ4lxq~ݮ^BϺG.G YL)tEQ|8RMzpI`Z&ɚޙ!fH$Ԕ8/ҧ;p8\~5> *6:G]lGWowN[w߫^῏LLy\H;6}>?20O|M%R@@h4`7}~_2=O2_Z ;MUPa8KG"P($~Lh(uٺiY4ДZ||)>UspW:+𫎆 y=h,^85#O1Ò>"x秳\tI/.m(5;"x'Nꬳ]UUV# B&?g<#w~RZ &mgZG&ԎQ{_$pdb`jyP#.g5]Ƙ-IJf9KU?N3@ňD"{Yٝ[ԭp8,~< Ҿy[XOw[{mkBiN|~.?$E4#ah &kSlV;Ǹo>*QCO;Yf`ΙnYW ~? [1:C\O]}.yqht$y=i72&9G<|> SLRIy|h4Zx狌LLI|~scڟ^8TN]t%u]BΚ`0H[,jfz moO}F\c0VϧvSiw6Hy@%*BӴ2ߛaoMS{v@ >^R)f1jǨDJ~ USκwG9s/nξR~%&xK;,:vΐP(FD9>q|"L|bn J ;`Y^E>D 0ZRN ˄ t]WF2 ~a>曶 fksE|B;&:8PEԆϧoA &bZxE}~_2#DM w*L4 ևаO]*oڮ aqG"]EQMs=uawk 9_h^so/U'ԎQ&?#r`0zz8gן=IGpMQW\>xC+oBgGji #yltO?tgi+NH>+ouxw>ۆRMD-imDg`` ߧAS)F<sj<% I:oq̳E.f:] K#9ޘ\=:x &D^@J]GFu)&jN.T*Дhj!ڴZ&`uUb56XpHER/| lvpWDv@}>zcV4]A<5Ju|;!Q#SW588a&?QU{zz)yj;HiSU:JZ_e7󘤋^a}>{lӁ@L;ЉfO8%|@b[qvj6w$ݖB!*mC),T*\)kl6[MIJbaGi4*vg矵o.Ew[E;bow n !{tKJ>'=dsu^{+9|nc]seB\Z #;Pu>dbJ"wT]יh uq'v4-!^on*Χ𾤋>cmD}>~rz r3 UP<]Ľ<>P{P/>gP#Z_vN2`0(esO4u'$/"m@E?[-RpԙW8S8}Q"?6u'ԎQۆRSzp^i1kA]1`hA7ng<KKқ- 1+TU5$s|>`$`K|@ C-wPGm{0e.%ݡ˿>}(@ͽ:"c0R(S/]ldJ8Rjm?D@'_۪ԥ{֖-H;DXiN: H%8ut+  m,KCy$EͽD2~)ja"ڗjX]V`vQDr-:;nm2|Ĕ7uW,7=qISt}]-~HM .nK_\(Wt.ٽ:4AGYzphO2Lf"kU?H0CۗԵyjij#d 22co7Wnx߾g[w|~% :L2@uEQ_0ɍi}>yA>l%ʨ/V@1C.yXȚMh[?RQZ|?.P.M'/2b_{7vR|:j 夛bB.@9:dLL>'~I (wD6MRvДh2F]>EJcZ|oN[Ǽ듁2 OiϞ~.|>&kx`RR$AZ."H8nhll"M>7v>k%]ȱ%˹DSw頶חd%HMgEo]@A:M,Q4v#wV13xGQqutݱSq5^˧>.=v.'@ ]pZKmC)f^~_0GҢgU"}}}AS ===4% 8S_J$)!Yo2g'Hs;_3ohء d>emfϧ!mNEw 4xG8.8G#pw Y$Jn}~_2åP2w{kZ焪~Rdlll```hh'd5p7Mid-'LCs_ 'Ť% #&Me>edb˧>3tV; 6gtrF)ojvI74pBBwwPqP`9(4dP>Rh z)[v愪~J¾̧h葯\/ FUs->}7>$8ge}nk[ Mv+,F9@\ Cjq pdPH(M>׍ { dI o>T'ǏqO?P>PFuQwp|M~Fu ~c$t|LV⑚{uZH~oNO u*uȴ||wU}`pOF6Kd>i~&廻xcsG#T/N6lҊ}mU{gwhG5b=7UMn@j9`%ih)%dPӒZߠ令>[Nx廻݂]Dze|i֧f6? r/ޖs_Зeeaw+VXhd%lvtt4JɷE bp%W'y$^aUXVUEтunWE#8KN(R\F_>ߋxmk4zX՛/e tZm02};wҧayw橇EE22Z9Cڰ?)RZfC.t:]lT*Ŗ^Db+{UaUXV$O\dZs;ֽ0_|@/s\ ҟ쬊jU[n7ϮA/> S]y@z[AK\$*C=Ԛvuu HVtqtt-SU/$Bɭª*U[gyIV:v'v% ;{7Ԫb/u*C/ƴguU/>ӄa=jʑ)+;||GA/A7/>exC:k֬$H IfDӪv}]+ ªZ՞={N9f~CuہVF-.X@RNˋd`r nUk$%u_ܫ9|j޽|:QEaCW5s@4BU#@}JƪS:NYǜh+_`xƋ ؈b≎cr_0ۮqM@<\B$\,Ű!:=v07>KOtSv~yy~͎lmV |>@ ~q|>?J6 ۚuφ\Rၼߊb.\J\J':g(zu w^E1hM\:hqK]{>ʊϰ%QRWO賟qvvvx '|_ F|yL_>M2aҔ ˦OlˮtI^7믾t W7^%t(]%~*.Kn9vKnUo 7Ɏ탟}uDtϋnK4ĴetS™FlS&P\9eS3MD:m"Oh\9Doq[|[7ZҚTV\^W/1-Rz\9ɢ}qh DgL;_1u8W+1"1itLDxtL92x8bnpk1::v61{8D6ѰH&idF!7LILOjtq=+Pgzcu-i GG{ϙ%3}fI]|d#u{63KUBevoH>כL2:6VGGG{*p)q)9|:.ź;=;6% #]R:fEe~Lvɽs|AFe }>u-]>?w֩_z F7Ȃ_^Z+|ں╟,ZT[__{>|uW?x7^Z ȋ0::WWu^>{~ssgc w&8YҾht~at_@GHIGo^ׯ,hk_?^n󒷛ݬ-}eo,^ oݷ5ݼjk5co|t\6wW-W-yE=ydacs;s;nFǭ#1[rf;ILHbM#q#57쑸>^7:[Jmxu)_(ib{Č1st\S(?::|q}&E?6v47 o?2;;6;_d8Z FsﭾێEdcHܫXZ64>;VV=mʑxpBAH<:>l#no,Of"dmy#)Ўg6x+~\[WvкŷV}}/u;6u?Y7ozs-˚OٯŎ7[eoA)qit[?km;6߻-x{?$_};^_}=;6Cifش?_[LY^[L e]v6+>c=P޻L ӼoI韼3g"?}4+/d|&(b 쉩QIppd&ʿ9ߞL)ȜgPym`}lC&8DEMa$57,Fc_>KҵHה.;n̒K2H/S$CԁWSAƗ]*iZ{C+##TdDs墕N JOO3dRn],-'B>@gUHZtkS&kpxK:O-^.e+Rք|>SwɅCRKw;?io>>>>>>>>>>wxak_$]6r>~E+D" p)A**R:<zKA2Ti"@qLSlsW1^AX.i:YD7$^Oa*mf/P ЯI6.o 57Y5N^o&;h[0|3.Z p.Ei Eѻ/,_Ԕ֘C7֦o4GcY~hq~4zmKcϯ#!UUiShЏ " ||||||||||@0p}I{d^u40%H|z0>n<sJC#\䤮e./X29#s-ȴ|$Ѩu(aW<]}QOSCϺeI5%܉p~]f,χχχχχχχχχ˲t{e:hG_|Ivx)l}k(ugt<q(JgdY.$ OZ"ʬ8WŖȃT|_/{˃7侓9W A7aӑ7]= \N>j4ou}}A4+wU)\/yŌV|kyYW|֢2_F/Lӻy,~RCvM^ =EutӚ%pUQ1ihB%;%2R{I;y> h&4>R3JKb2x|iuSG+Ms<j Ho  KĆ?EQXG (I19+H>,kPY8M4wZYiMkI6iK' Z^[X=/2S,5qeE Ô(E])YRٿ:T>>>>>>>>>>|݉;o%Ibeo*֤媪:ՐN1;bvK:̪˲JzJ@||©%IS?pB!;W(mz͝k|s,cFF4_5Wj"p $Iޫ,VR>籄SǓrY*{(n))R X#(ʇN-|_Mk"%I_'K*gP}D}>#aÄ~DA_{#A~o8ɱEQ,㻼"O"r+%͝_'SiG%>3N T*ׇKK^VT4 PEQK œ OG7Q{QO!-0z鏶%ߙ'5*1zX' !||||||||||( t;v]8zE}>@iG~;Hp+K{{n u)z} |>|>|>|>|>|>|>|>|>|>ᯊ38V+x\cii:?:gwtuu1 Kw:::r/3cV˲$I.i⠯4Z {)~̖\YI2=-רl@_ HI>ύAy, >ɉ3 %Edj(u`@cǎ)N,Kyq4MQ$|/RbZA\ )+R>a()ttu^AXϖ\9^4ںY_R>& yIi|Ol;k.io z0>w1C( E—$iM0 픿>>>>>>>>>ЀНo79t$I.ՆZ}a\pUv>>?xE71w}l=ǀPţ/IS+9C(iwIHE׵S*ey_̺1ڔ>UMqc_j7'NwNM^- u/Kb˯/nY/%3sw.wY8m]V,rTe<2/NswN~kO>{OxI߿-?m3q3,nGxAۤ}~}A>6w )Љ?ΈSk-]8m{E3-Aq.δ̤&q57,%\{k5s3^;uٵSfuŤ:'_W8뿑/!Yfoek{rcטPJL,%./_+uo_}#t|}xT'nb#9b#f,=3kf8Ŭ׍%O;=7č#q=,2Ʉ7G2͋g2sFe[e6;n;s$1/3xP6veȤ;Y~؎{2A&dbڽvP\zWfvX~.2SWA;V uyP~h^&VYz=m{y߱ 6 ج];f PS5'A3#G>6<粳#Y#ۄOdŨcё)a(Yr=K>x,I}Ol~M]̴8MT ~^8CwNiZQ9opTQI }>s1Ndj(u`|XW<@)ʐK4M3Kמ.f;Ş"0zee~$_(~iVKjTjY7Rf~ N^#4Ѷo}@;%*@ Ñj5+Ro;<"bPļtNIqy.d>*K_(x̎fJ/ 4g퀇>mfԆ(o |>@ ~n r/\?QF9$R2?\wN͝VN AыW/IlGӴ,_[ydv1,x{葑uװ%3sֺ=*(P`^ӮȅG hL4Mb=BM~X>O0C,Rm\w);W뼸!oO)Iҽ| _:1B쩁 ״\>܂뺠> 򃄽Tu.?r}Sk_ڻCT$JFWqN|w4c}uEקu_A"0['(_=#+ݬU|AsgTd4>[A e\YQ>|2"(kEӌbKy2?;=yh̳/42KRr`?)J }>]ta;xB 竈6 |>Pw7R p5]PCO>œ)|DepPUIId>=| QlSyvK6*_LS͖KFg!RCOЯk;2?[Ͻ(Y#j ||~#)MeQeU&>}?vtttwwR&RR:_ 'Eeee>\pw{agT3l%i Gem}gL(9:u~n\5 3FS*筮(tKȗA i n]񤋀`&H`\:G4e{KI(_HZ7͸(xYUyv?g.tIO{{~8Q ||~#) 0 \Yuf7&Aݟ1Nd=0sKYoII ݔvwwup^J2?[iZ{!!oޣɧ5iuɬ{)뜚|v K.P( |PCp:o0@R:뎏/,˹0VrtAdg4A>DFy={IRKI[[HG~-Σ:}C?)(=B/>4;W ||>!Pw7R Hni-pmf#7]|~ivKǮxA5wZ>TMJxZXr|U߀2?G}w,On;bK"z0߰ ||~#) 9=k97ϭ7M?҂R%et(ug4P6ykiaCUw4MhA(u#(ޢ:ڧS9YP>(k0 ZΩ/g@>(\;L` |˲rCV( .|giiZn:#Y (ʆgcf)ÔTއd~kY J$_] h9G".ِ3?Au|P~΀ L`AG.S"x>?=")vKǮxE@5wZH+c@P6 bV=G,ˢQBe*E4GZWw`DJ)~ A.::/o0@R: 15$B [^\O;-7} F/ v˲r7(dYRe,Ȫ7^AX\^(%:`r)٨{ |/WP > 0B嚒$uݹܲ,ܶդd*0ycoc  'TUU-#Eiw&rꎄ>-,(U㜖U/Y O)?Iwu|'ݳB>(\;LlB \=qC+8Ŏ,eHO8]}zύփgGZ 48KuWsK3ʋWm}HK6en]kZwI[KP,m6ESP{@t`J` wi˲?ED"(5ZtZo;]=[^b::@MŀJJ!).*S G CMb°Y0 --(8Wxs gx.uʟR@>(\;Lx4MiUU-DQlF w*YZvxEF T/H)ʆRof뺳(2}%廬 )i.'/#/Fo(ڹ_ߘ͝KOg=S @t`JF,UU%IRŹ>ڡp8L7xǓ)%]񤋌v?+/tww •InY RD4h.ozjFޭwo+-TZea\-|K/6ߘQxp) @}JR8å_xw ?JlɽƍO*1|4/ |>42i*ePgTvT>~> M}}ίl;ԏ#9D˲ѨǧCKcprNEf׍/_P赬" I Dtް̧&ݺK+7[MM%.ie 2ߍJ|P)>ǀ2jpD1QG 9>%>+Tm<'SlɶC.n;?oرchh4,ˢ(z80˲'UQE7N (M_ZOgğVu&b.Ϟӟ/\wInZVλX,F>"C_@r\68kO Ai4?%UNG(B&? E^O!MW*cGΙ| MK75;0<_nUAχ2>> 3 ɔx '7@cfQ+.IRlO(bG9'oͼ(U*#] 飺c٠)r0'pv=ZJ={^T5vʖ`;[72=l'_yS㤎=Z:HH@h(O4w*ԏAh8+zi,g[f]_eS+&󉘑.)g ##p]RedWI>2ȪwEP8_@xQU  @s8*=tT;%0@m1 CUUMJ >xSœ)2Pm,ˢGNJu_iHQ軾{x1-\+ʇEId>Aס) ݞ{Fv: #PG n1M3ZYHD4;_ieYܞ wKeH䮸iuu~ |JAd>'-!5W ҳvKPG wh{=/a n {Nփq&Pmr58%%EQ(Ru]3h#Y$/-MM?-w _U?ris{uqS9PG _XE\>|>sUCS;hTDa$ɲiVJltZS/2Xɩpx H X0ZvIkbMMiQ XTA PU݀k+iD"Fnm\φ0E,NRU eY!+iIΗ$IMR w0oKe|VB;Ιhto'^nmTV|T J*gebP ј>+tVcLvD"Q8] ~oLʢmKM>mmm%.3cVO_Trwb O\r#/:O$d̻Y[ m% Qi1KJ;9$I^ڧ hRoɒ%YֹiVUFS^)@6e|u_Kb|M9* zqQ{iys1>u%A:MՄO# {N̐'^18\]}>w?1@@; 2:r^eY/bً,즼\_Z'n/\.J6z0Ζ]ʋ {Te/㦼eS Ee>ituA]v4t>hP.HZbƷS^̷Ñ|bmX֒ݖNO7^(#||~PAB;*jYu.q7UvI>?t -yW:1x& ~u}n>t ʨGjc|sp>_?ݤSd~pɇo:|Y|>e}*Ha%գB>ߣ5]_1OFdY.d5~HZ°u?#ԩeYQ||ROҒYWu>ܤ:(#||~PABS,ˊD"E+TC`P>P97(ӴNs>n;ԏjE >AIU$MӠK:';U:e];̗$f+'ӎ|ʇ>~%iuV#dB|T˲4M_pXQ|'8wKX,ZiTPV@)0 \Oω]eQ hq(|HKsnappy-1.2.2/testdata/plrabn12.txt000066400000000000000000016551051477101537200170450ustar00rootroot00000000000000 This is the February 1992 Project Gutenberg release of: Paradise Lost by John Milton The oldest etext known to Project Gutenberg (ca. 1964-1965) (If you know of any older ones, please let us know.) Introduction (one page) This etext was originally created in 1964-1965 according to Dr. Joseph Raben of Queens College, NY, to whom it is attributed by Project Gutenberg. We had heard of this etext for years but it was not until 1991 that we actually managed to track it down to a specific location, and then it took months to convince people to let us have a copy, then more months for them actually to do the copying and get it to us. Then another month to convert to something we could massage with our favorite 486 in DOS. After that is was only a matter of days to get it into this shape you will see below. The original was, of course, in CAPS only, and so were all the other etexts of the 60's and early 70's. Don't let anyone fool you into thinking any etext with both upper and lower case is an original; all those original Project Gutenberg etexts were also in upper case and were translated or rewritten many times to get them into their current condition. They have been worked on by many people throughout the world. In the course of our searches for Professor Raben and his etext we were never able to determine where copies were or which of a variety of editions he may have used as a source. We did get a little information here and there, but even after we received a copy of the etext we were unwilling to release it without first determining that it was in fact Public Domain and finding Raben to verify this and get his permission. Interested enough, in a totally unrelated action to our searches for him, the professor subscribed to the Project Gutenberg listserver and we happened, by accident, to notice his name. (We don't really look at every subscription request as the computers usually handle them.) The etext was then properly identified, copyright analyzed, and the current edition prepared. To give you an estimation of the difference in the original and what we have today: the original was probably entered on cards commonly known at the time as "IBM cards" (Do Not Fold, Spindle or Mutilate) and probably took in excess of 100,000 of them. A single card could hold 80 characters (hence 80 characters is an accepted standard for so many computer margins), and the entire original edition we received in all caps was over 800,000 chars in length, including line enumeration, symbols for caps and the punctuation marks, etc., since they were not available keyboard characters at the time (probably the keyboards operated at baud rates of around 113, meaning the typists had to type slowly for the keyboard to keep up). This is the second version of Paradise Lost released by Project Gutenberg. The first was released as our October, 1991 etext. Paradise Lost Book I Of Man's first disobedience, and the fruit Of that forbidden tree whose mortal taste Brought death into the World, and all our woe, With loss of Eden, till one greater Man Restore us, and regain the blissful seat, Sing, Heavenly Muse, that, on the secret top Of Oreb, or of Sinai, didst inspire That shepherd who first taught the chosen seed In the beginning how the heavens and earth Rose out of Chaos: or, if Sion hill Delight thee more, and Siloa's brook that flowed Fast by the oracle of God, I thence Invoke thy aid to my adventurous song, That with no middle flight intends to soar Above th' Aonian mount, while it pursues Things unattempted yet in prose or rhyme. And chiefly thou, O Spirit, that dost prefer Before all temples th' upright heart and pure, Instruct me, for thou know'st; thou from the first Wast present, and, with mighty wings outspread, Dove-like sat'st brooding on the vast Abyss, And mad'st it pregnant: what in me is dark Illumine, what is low raise and support; That, to the height of this great argument, I may assert Eternal Providence, And justify the ways of God to men. Say first--for Heaven hides nothing from thy view, Nor the deep tract of Hell--say first what cause Moved our grand parents, in that happy state, Favoured of Heaven so highly, to fall off From their Creator, and transgress his will For one restraint, lords of the World besides. Who first seduced them to that foul revolt? Th' infernal Serpent; he it was whose guile, Stirred up with envy and revenge, deceived The mother of mankind, what time his pride Had cast him out from Heaven, with all his host Of rebel Angels, by whose aid, aspiring To set himself in glory above his peers, He trusted to have equalled the Most High, If he opposed, and with ambitious aim Against the throne and monarchy of God, Raised impious war in Heaven and battle proud, With vain attempt. Him the Almighty Power Hurled headlong flaming from th' ethereal sky, With hideous ruin and combustion, down To bottomless perdition, there to dwell In adamantine chains and penal fire, Who durst defy th' Omnipotent to arms. Nine times the space that measures day and night To mortal men, he, with his horrid crew, Lay vanquished, rolling in the fiery gulf, Confounded, though immortal. But his doom Reserved him to more wrath; for now the thought Both of lost happiness and lasting pain Torments him: round he throws his baleful eyes, That witnessed huge affliction and dismay, Mixed with obdurate pride and steadfast hate. At once, as far as Angels ken, he views The dismal situation waste and wild. A dungeon horrible, on all sides round, As one great furnace flamed; yet from those flames No light; but rather darkness visible Served only to discover sights of woe, Regions of sorrow, doleful shades, where peace And rest can never dwell, hope never comes That comes to all, but torture without end Still urges, and a fiery deluge, fed With ever-burning sulphur unconsumed. Such place Eternal Justice has prepared For those rebellious; here their prison ordained In utter darkness, and their portion set, As far removed from God and light of Heaven As from the centre thrice to th' utmost pole. Oh how unlike the place from whence they fell! There the companions of his fall, o'erwhelmed With floods and whirlwinds of tempestuous fire, He soon discerns; and, weltering by his side, One next himself in power, and next in crime, Long after known in Palestine, and named Beelzebub. To whom th' Arch-Enemy, And thence in Heaven called Satan, with bold words Breaking the horrid silence, thus began:-- "If thou beest he--but O how fallen! how changed From him who, in the happy realms of light Clothed with transcendent brightness, didst outshine Myriads, though bright!--if he whom mutual league, United thoughts and counsels, equal hope And hazard in the glorious enterprise Joined with me once, now misery hath joined In equal ruin; into what pit thou seest From what height fallen: so much the stronger proved He with his thunder; and till then who knew The force of those dire arms? Yet not for those, Nor what the potent Victor in his rage Can else inflict, do I repent, or change, Though changed in outward lustre, that fixed mind, And high disdain from sense of injured merit, That with the Mightiest raised me to contend, And to the fierce contentions brought along Innumerable force of Spirits armed, That durst dislike his reign, and, me preferring, His utmost power with adverse power opposed In dubious battle on the plains of Heaven, And shook his throne. What though the field be lost? All is not lost--the unconquerable will, And study of revenge, immortal hate, And courage never to submit or yield: And what is else not to be overcome? That glory never shall his wrath or might Extort from me. To bow and sue for grace With suppliant knee, and deify his power Who, from the terror of this arm, so late Doubted his empire--that were low indeed; That were an ignominy and shame beneath This downfall; since, by fate, the strength of Gods, And this empyreal sybstance, cannot fail; Since, through experience of this great event, In arms not worse, in foresight much advanced, We may with more successful hope resolve To wage by force or guile eternal war, Irreconcilable to our grand Foe, Who now triumphs, and in th' excess of joy Sole reigning holds the tyranny of Heaven." So spake th' apostate Angel, though in pain, Vaunting aloud, but racked with deep despair; And him thus answered soon his bold compeer:-- "O Prince, O Chief of many throned Powers That led th' embattled Seraphim to war Under thy conduct, and, in dreadful deeds Fearless, endangered Heaven's perpetual King, And put to proof his high supremacy, Whether upheld by strength, or chance, or fate, Too well I see and rue the dire event That, with sad overthrow and foul defeat, Hath lost us Heaven, and all this mighty host In horrible destruction laid thus low, As far as Gods and heavenly Essences Can perish: for the mind and spirit remains Invincible, and vigour soon returns, Though all our glory extinct, and happy state Here swallowed up in endless misery. But what if he our Conqueror (whom I now Of force believe almighty, since no less Than such could have o'erpowered such force as ours) Have left us this our spirit and strength entire, Strongly to suffer and support our pains, That we may so suffice his vengeful ire, Or do him mightier service as his thralls By right of war, whate'er his business be, Here in the heart of Hell to work in fire, Or do his errands in the gloomy Deep? What can it the avail though yet we feel Strength undiminished, or eternal being To undergo eternal punishment?" Whereto with speedy words th' Arch-Fiend replied:-- "Fallen Cherub, to be weak is miserable, Doing or suffering: but of this be sure-- To do aught good never will be our task, But ever to do ill our sole delight, As being the contrary to his high will Whom we resist. If then his providence Out of our evil seek to bring forth good, Our labour must be to pervert that end, And out of good still to find means of evil; Which ofttimes may succeed so as perhaps Shall grieve him, if I fail not, and disturb His inmost counsels from their destined aim. But see! the angry Victor hath recalled His ministers of vengeance and pursuit Back to the gates of Heaven: the sulphurous hail, Shot after us in storm, o'erblown hath laid The fiery surge that from the precipice Of Heaven received us falling; and the thunder, Winged with red lightning and impetuous rage, Perhaps hath spent his shafts, and ceases now To bellow through the vast and boundless Deep. Let us not slip th' occasion, whether scorn Or satiate fury yield it from our Foe. Seest thou yon dreary plain, forlorn and wild, The seat of desolation, void of light, Save what the glimmering of these livid flames Casts pale and dreadful? Thither let us tend From off the tossing of these fiery waves; There rest, if any rest can harbour there; And, re-assembling our afflicted powers, Consult how we may henceforth most offend Our enemy, our own loss how repair, How overcome this dire calamity, What reinforcement we may gain from hope, If not, what resolution from despair." Thus Satan, talking to his nearest mate, With head uplift above the wave, and eyes That sparkling blazed; his other parts besides Prone on the flood, extended long and large, Lay floating many a rood, in bulk as huge As whom the fables name of monstrous size, Titanian or Earth-born, that warred on Jove, Briareos or Typhon, whom the den By ancient Tarsus held, or that sea-beast Leviathan, which God of all his works Created hugest that swim th' ocean-stream. Him, haply slumbering on the Norway foam, The pilot of some small night-foundered skiff, Deeming some island, oft, as seamen tell, With fixed anchor in his scaly rind, Moors by his side under the lee, while night Invests the sea, and wished morn delays. So stretched out huge in length the Arch-fiend lay, Chained on the burning lake; nor ever thence Had risen, or heaved his head, but that the will And high permission of all-ruling Heaven Left him at large to his own dark designs, That with reiterated crimes he might Heap on himself damnation, while he sought Evil to others, and enraged might see How all his malice served but to bring forth Infinite goodness, grace, and mercy, shewn On Man by him seduced, but on himself Treble confusion, wrath, and vengeance poured. Forthwith upright he rears from off the pool His mighty stature; on each hand the flames Driven backward slope their pointing spires, and,rolled In billows, leave i' th' midst a horrid vale. Then with expanded wings he steers his flight Aloft, incumbent on the dusky air, That felt unusual weight; till on dry land He lights--if it were land that ever burned With solid, as the lake with liquid fire, And such appeared in hue as when the force Of subterranean wind transprots a hill Torn from Pelorus, or the shattered side Of thundering Etna, whose combustible And fuelled entrails, thence conceiving fire, Sublimed with mineral fury, aid the winds, And leave a singed bottom all involved With stench and smoke. Such resting found the sole Of unblest feet. Him followed his next mate; Both glorying to have scaped the Stygian flood As gods, and by their own recovered strength, Not by the sufferance of supernal Power. "Is this the region, this the soil, the clime," Said then the lost Archangel, "this the seat That we must change for Heaven?--this mournful gloom For that celestial light? Be it so, since he Who now is sovereign can dispose and bid What shall be right: farthest from him is best Whom reason hath equalled, force hath made supreme Above his equals. Farewell, happy fields, Where joy for ever dwells! Hail, horrors! hail, Infernal world! and thou, profoundest Hell, Receive thy new possessor--one who brings A mind not to be changed by place or time. The mind is its own place, and in itself Can make a Heaven of Hell, a Hell of Heaven. What matter where, if I be still the same, And what I should be, all but less than he Whom thunder hath made greater? Here at least We shall be free; th' Almighty hath not built Here for his envy, will not drive us hence: Here we may reigh secure; and, in my choice, To reign is worth ambition, though in Hell: Better to reign in Hell than serve in Heaven. But wherefore let we then our faithful friends, Th' associates and co-partners of our loss, Lie thus astonished on th' oblivious pool, And call them not to share with us their part In this unhappy mansion, or once more With rallied arms to try what may be yet Regained in Heaven, or what more lost in Hell?" So Satan spake; and him Beelzebub Thus answered:--"Leader of those armies bright Which, but th' Omnipotent, none could have foiled! If once they hear that voice, their liveliest pledge Of hope in fears and dangers--heard so oft In worst extremes, and on the perilous edge Of battle, when it raged, in all assaults Their surest signal--they will soon resume New courage and revive, though now they lie Grovelling and prostrate on yon lake of fire, As we erewhile, astounded and amazed; No wonder, fallen such a pernicious height!" He scare had ceased when the superior Fiend Was moving toward the shore; his ponderous shield, Ethereal temper, massy, large, and round, Behind him cast. The broad circumference Hung on his shoulders like the moon, whose orb Through optic glass the Tuscan artist views At evening, from the top of Fesole, Or in Valdarno, to descry new lands, Rivers, or mountains, in her spotty globe. His spear--to equal which the tallest pine Hewn on Norwegian hills, to be the mast Of some great ammiral, were but a wand-- He walked with, to support uneasy steps Over the burning marl, not like those steps On Heaven's azure; and the torrid clime Smote on him sore besides, vaulted with fire. Nathless he so endured, till on the beach Of that inflamed sea he stood, and called His legions--Angel Forms, who lay entranced Thick as autumnal leaves that strow the brooks In Vallombrosa, where th' Etrurian shades High over-arched embower; or scattered sedge Afloat, when with fierce winds Orion armed Hath vexed the Red-Sea coast, whose waves o'erthrew Busiris and his Memphian chivalry, While with perfidious hatred they pursued The sojourners of Goshen, who beheld From the safe shore their floating carcases And broken chariot-wheels. So thick bestrown, Abject and lost, lay these, covering the flood, Under amazement of their hideous change. He called so loud that all the hollow deep Of Hell resounded:--"Princes, Potentates, Warriors, the Flower of Heaven--once yours; now lost, If such astonishment as this can seize Eternal Spirits! Or have ye chosen this place After the toil of battle to repose Your wearied virtue, for the ease you find To slumber here, as in the vales of Heaven? Or in this abject posture have ye sworn To adore the Conqueror, who now beholds Cherub and Seraph rolling in the flood With scattered arms and ensigns, till anon His swift pursuers from Heaven-gates discern Th' advantage, and, descending, tread us down Thus drooping, or with linked thunderbolts Transfix us to the bottom of this gulf? Awake, arise, or be for ever fallen!" They heard, and were abashed, and up they sprung Upon the wing, as when men wont to watch On duty, sleeping found by whom they dread, Rouse and bestir themselves ere well awake. Nor did they not perceive the evil plight In which they were, or the fierce pains not feel; Yet to their General's voice they soon obeyed Innumerable. As when the potent rod Of Amram's son, in Egypt's evil day, Waved round the coast, up-called a pitchy cloud Of locusts, warping on the eastern wind, That o'er the realm of impious Pharaoh hung Like Night, and darkened all the land of Nile; So numberless were those bad Angels seen Hovering on wing under the cope of Hell, 'Twixt upper, nether, and surrounding fires; Till, as a signal given, th' uplifted spear Of their great Sultan waving to direct Their course, in even balance down they light On the firm brimstone, and fill all the plain: A multitude like which the populous North Poured never from her frozen loins to pass Rhene or the Danaw, when her barbarous sons Came like a deluge on the South, and spread Beneath Gibraltar to the Libyan sands. Forthwith, form every squadron and each band, The heads and leaders thither haste where stood Their great Commander--godlike Shapes, and Forms Excelling human; princely Dignities; And Powers that erst in Heaven sat on thrones, Though on their names in Heavenly records now Be no memorial, blotted out and rased By their rebellion from the Books of Life. Nor had they yet among the sons of Eve Got them new names, till, wandering o'er the earth, Through God's high sufferance for the trial of man, By falsities and lies the greatest part Of mankind they corrupted to forsake God their Creator, and th' invisible Glory of him that made them to transform Oft to the image of a brute, adorned With gay religions full of pomp and gold, And devils to adore for deities: Then were they known to men by various names, And various idols through the heathen world. Say, Muse, their names then known, who first, who last, Roused from the slumber on that fiery couch, At their great Emperor's call, as next in worth Came singly where he stood on the bare strand, While the promiscuous crowd stood yet aloof? The chief were those who, from the pit of Hell Roaming to seek their prey on Earth, durst fix Their seats, long after, next the seat of God, Their altars by his altar, gods adored Among the nations round, and durst abide Jehovah thundering out of Sion, throned Between the Cherubim; yea, often placed Within his sanctuary itself their shrines, Abominations; and with cursed things His holy rites and solemn feasts profaned, And with their darkness durst affront his light. First, Moloch, horrid king, besmeared with blood Of human sacrifice, and parents' tears; Though, for the noise of drums and timbrels loud, Their children's cries unheard that passed through fire To his grim idol. Him the Ammonite Worshiped in Rabba and her watery plain, In Argob and in Basan, to the stream Of utmost Arnon. Nor content with such Audacious neighbourhood, the wisest heart Of Solomon he led by fraoud to build His temple right against the temple of God On that opprobrious hill, and made his grove The pleasant valley of Hinnom, Tophet thence And black Gehenna called, the type of Hell. Next Chemos, th' obscene dread of Moab's sons, From Aroar to Nebo and the wild Of southmost Abarim; in Hesebon And Horonaim, Seon's real, beyond The flowery dale of Sibma clad with vines, And Eleale to th' Asphaltic Pool: Peor his other name, when he enticed Israel in Sittim, on their march from Nile, To do him wanton rites, which cost them woe. Yet thence his lustful orgies he enlarged Even to that hill of scandal, by the grove Of Moloch homicide, lust hard by hate, Till good Josiah drove them thence to Hell. With these came they who, from the bordering flood Of old Euphrates to the brook that parts Egypt from Syrian ground, had general names Of Baalim and Ashtaroth--those male, These feminine. For Spirits, when they please, Can either sex assume, or both; so soft And uncompounded is their essence pure, Not tried or manacled with joint or limb, Nor founded on the brittle strength of bones, Like cumbrous flesh; but, in what shape they choose, Dilated or condensed, bright or obscure, Can execute their airy purposes, And works of love or enmity fulfil. For those the race of Israel oft forsook Their Living Strength, and unfrequented left His righteous altar, bowing lowly down To bestial gods; for which their heads as low Bowed down in battle, sunk before the spear Of despicable foes. With these in troop Came Astoreth, whom the Phoenicians called Astarte, queen of heaven, with crescent horns; To whose bright image nigntly by the moon Sidonian virgins paid their vows and songs; In Sion also not unsung, where stood Her temple on th' offensive mountain, built By that uxorious king whose heart, though large, Beguiled by fair idolatresses, fell To idols foul. Thammuz came next behind, Whose annual wound in Lebanon allured The Syrian damsels to lament his fate In amorous ditties all a summer's day, While smooth Adonis from his native rock Ran purple to the sea, supposed with blood Of Thammuz yearly wounded: the love-tale Infected Sion's daughters with like heat, Whose wanton passions in the sacred proch Ezekiel saw, when, by the vision led, His eye surveyed the dark idolatries Of alienated Judah. Next came one Who mourned in earnest, when the captive ark Maimed his brute image, head and hands lopt off, In his own temple, on the grunsel-edge, Where he fell flat and shamed his worshippers: Dagon his name, sea-monster,upward man And downward fish; yet had his temple high Reared in Azotus, dreaded through the coast Of Palestine, in Gath and Ascalon, And Accaron and Gaza's frontier bounds. Him followed Rimmon, whose delightful seat Was fair Damascus, on the fertile banks Of Abbana and Pharphar, lucid streams. He also against the house of God was bold: A leper once he lost, and gained a king-- Ahaz, his sottish conqueror, whom he drew God's altar to disparage and displace For one of Syrian mode, whereon to burn His odious offerings, and adore the gods Whom he had vanquished. After these appeared A crew who, under names of old renown-- Osiris, Isis, Orus, and their train-- With monstrous shapes and sorceries abused Fanatic Egypt and her priests to seek Their wandering gods disguised in brutish forms Rather than human. Nor did Israel scape Th' infection, when their borrowed gold composed The calf in Oreb; and the rebel king Doubled that sin in Bethel and in Dan, Likening his Maker to the grazed ox-- Jehovah, who, in one night, when he passed From Egypt marching, equalled with one stroke Both her first-born and all her bleating gods. Belial came last; than whom a Spirit more lewd Fell not from Heaven, or more gross to love Vice for itself. To him no temple stood Or altar smoked; yet who more oft than he In temples and at altars, when the priest Turns atheist, as did Eli's sons, who filled With lust and violence the house of God? In courts and palaces he also reigns, And in luxurious cities, where the noise Of riot ascends above their loftiest towers, And injury and outrage; and, when night Darkens the streets, then wander forth the sons Of Belial, flown with insolence and wine. Witness the streets of Sodom, and that night In Gibeah, when the hospitable door Exposed a matron, to avoid worse rape. These were the prime in order and in might: The rest were long to tell; though far renowned Th' Ionian gods--of Javan's issue held Gods, yet confessed later than Heaven and Earth, Their boasted parents;--Titan, Heaven's first-born, With his enormous brood, and birthright seized By younger Saturn: he from mightier Jove, His own and Rhea's son, like measure found; So Jove usurping reigned. These, first in Crete And Ida known, thence on the snowy top Of cold Olympus ruled the middle air, Their highest heaven; or on the Delphian cliff, Or in Dodona, and through all the bounds Of Doric land; or who with Saturn old Fled over Adria to th' Hesperian fields, And o'er the Celtic roamed the utmost Isles. All these and more came flocking; but with looks Downcast and damp; yet such wherein appeared Obscure some glimpse of joy to have found their Chief Not in despair, to have found themselves not lost In loss itself; which on his countenance cast Like doubtful hue. But he, his wonted pride Soon recollecting, with high words, that bore Semblance of worth, not substance, gently raised Their fainting courage, and dispelled their fears. Then straight commands that, at the warlike sound Of trumpets loud and clarions, be upreared His mighty standard. That proud honour claimed Azazel as his right, a Cherub tall: Who forthwith from the glittering staff unfurled Th' imperial ensign; which, full high advanced, Shone like a meteor streaming to the wind, With gems and golden lustre rich emblazed, Seraphic arms and trophies; all the while Sonorous metal blowing martial sounds: At which the universal host up-sent A shout that tore Hell's concave, and beyond Frighted the reign of Chaos and old Night. All in a moment through the gloom were seen Ten thousand banners rise into the air, With orient colours waving: with them rose A forest huge of spears; and thronging helms Appeared, and serried shields in thick array Of depth immeasurable. Anon they move In perfect phalanx to the Dorian mood Of flutes and soft recorders--such as raised To height of noblest temper heroes old Arming to battle, and instead of rage Deliberate valour breathed, firm, and unmoved With dread of death to flight or foul retreat; Nor wanting power to mitigate and swage With solemn touches troubled thoughts, and chase Anguish and doubt and fear and sorrow and pain From mortal or immortal minds. Thus they, Breathing united force with fixed thought, Moved on in silence to soft pipes that charmed Their painful steps o'er the burnt soil. And now Advanced in view they stand--a horrid front Of dreadful length and dazzling arms, in guise Of warriors old, with ordered spear and shield, Awaiting what command their mighty Chief Had to impose. He through the armed files Darts his experienced eye, and soon traverse The whole battalion views--their order due, Their visages and stature as of gods; Their number last he sums. And now his heart Distends with pride, and, hardening in his strength, Glories: for never, since created Man, Met such embodied force as, named with these, Could merit more than that small infantry Warred on by cranes--though all the giant brood Of Phlegra with th' heroic race were joined That fought at Thebes and Ilium, on each side Mixed with auxiliar gods; and what resounds In fable or romance of Uther's son, Begirt with British and Armoric knights; And all who since, baptized or infidel, Jousted in Aspramont, or Montalban, Damasco, or Marocco, or Trebisond, Or whom Biserta sent from Afric shore When Charlemain with all his peerage fell By Fontarabbia. Thus far these beyond Compare of mortal prowess, yet observed Their dread Commander. He, above the rest In shape and gesture proudly eminent, Stood like a tower. His form had yet not lost All her original brightness, nor appeared Less than Archangel ruined, and th' excess Of glory obscured: as when the sun new-risen Looks through the horizontal misty air Shorn of his beams, or, from behind the moon, In dim eclipse, disastrous twilight sheds On half the nations, and with fear of change Perplexes monarchs. Darkened so, yet shone Above them all th' Archangel: but his face Deep scars of thunder had intrenched, and care Sat on his faded cheek, but under brows Of dauntless courage, and considerate pride Waiting revenge. Cruel his eye, but cast Signs of remorse and passion, to behold The fellows of his crime, the followers rather (Far other once beheld in bliss), condemned For ever now to have their lot in pain-- Millions of Spirits for his fault amerced Of Heaven, and from eteranl splendours flung For his revolt--yet faithful how they stood, Their glory withered; as, when heaven's fire Hath scathed the forest oaks or mountain pines, With singed top their stately growth, though bare, Stands on the blasted heath. He now prepared To speak; whereat their doubled ranks they bend From wing to wing, and half enclose him round With all his peers: attention held them mute. Thrice he assayed, and thrice, in spite of scorn, Tears, such as Angels weep, burst forth: at last Words interwove with sighs found out their way:-- "O myriads of immortal Spirits! O Powers Matchless, but with th' Almighth!--and that strife Was not inglorious, though th' event was dire, As this place testifies, and this dire change, Hateful to utter. But what power of mind, Forseeing or presaging, from the depth Of knowledge past or present, could have feared How such united force of gods, how such As stood like these, could ever know repulse? For who can yet believe, though after loss, That all these puissant legions, whose exile Hath emptied Heaven, shall fail to re-ascend, Self-raised, and repossess their native seat? For me, be witness all the host of Heaven, If counsels different, or danger shunned By me, have lost our hopes. But he who reigns Monarch in Heaven till then as one secure Sat on his throne, upheld by old repute, Consent or custom, and his regal state Put forth at full, but still his strength concealed-- Which tempted our attempt, and wrought our fall. Henceforth his might we know, and know our own, So as not either to provoke, or dread New war provoked: our better part remains To work in close design, by fraud or guile, What force effected not; that he no less At length from us may find, who overcomes By force hath overcome but half his foe. Space may produce new Worlds; whereof so rife There went a fame in Heaven that he ere long Intended to create, and therein plant A generation whom his choice regard Should favour equal to the Sons of Heaven. Thither, if but to pry, shall be perhaps Our first eruption--thither, or elsewhere; For this infernal pit shall never hold Celestial Spirits in bondage, nor th' Abyss Long under darkness cover. But these thoughts Full counsel must mature. Peace is despaired; For who can think submission? War, then, war Open or understood, must be resolved." He spake; and, to confirm his words, outflew Millions of flaming swords, drawn from the thighs Of mighty Cherubim; the sudden blaze Far round illumined Hell. Highly they raged Against the Highest, and fierce with grasped arms Clashed on their sounding shields the din of war, Hurling defiance toward the vault of Heaven. There stood a hill not far, whose grisly top Belched fire and rolling smoke; the rest entire Shone with a glossy scurf--undoubted sign That in his womb was hid metallic ore, The work of sulphur. Thither, winged with speed, A numerous brigade hastened: as when bands Of pioneers, with spade and pickaxe armed, Forerun the royal camp, to trench a field, Or cast a rampart. Mammon led them on-- Mammon, the least erected Spirit that fell From Heaven; for even in Heaven his looks and thoughts Were always downward bent, admiring more The riches of heaven's pavement, trodden gold, Than aught divine or holy else enjoyed In vision beatific. By him first Men also, and by his suggestion taught, Ransacked the centre, and with impious hands Rifled the bowels of their mother Earth For treasures better hid. Soon had his crew Opened into the hill a spacious wound, And digged out ribs of gold. Let none admire That riches grow in Hell; that soil may best Deserve the precious bane. And here let those Who boast in mortal things, and wondering tell Of Babel, and the works of Memphian kings, Learn how their greatest monuments of fame And strength, and art, are easily outdone By Spirits reprobate, and in an hour What in an age they, with incessant toil And hands innumerable, scarce perform. Nigh on the plain, in many cells prepared, That underneath had veins of liquid fire Sluiced from the lake, a second multitude With wondrous art founded the massy ore, Severing each kind, and scummed the bullion-dross. A third as soon had formed within the ground A various mould, and from the boiling cells By strange conveyance filled each hollow nook; As in an organ, from one blast of wind, To many a row of pipes the sound-board breathes. Anon out of the earth a fabric huge Rose like an exhalation, with the sound Of dulcet symphonies and voices sweet-- Built like a temple, where pilasters round Were set, and Doric pillars overlaid With golden architrave; nor did there want Cornice or frieze, with bossy sculptures graven; The roof was fretted gold. Not Babylon Nor great Alcairo such magnificence Equalled in all their glories, to enshrine Belus or Serapis their gods, or seat Their kings, when Egypt with Assyria strove In wealth and luxury. Th' ascending pile Stood fixed her stately height, and straight the doors, Opening their brazen folds, discover, wide Within, her ample spaces o'er the smooth And level pavement: from the arched roof, Pendent by subtle magic, many a row Of starry lamps and blazing cressets, fed With naptha and asphaltus, yielded light As from a sky. The hasty multitude Admiring entered; and the work some praise, And some the architect. His hand was known In Heaven by many a towered structure high, Where sceptred Angels held their residence, And sat as Princes, whom the supreme King Exalted to such power, and gave to rule, Each in his Hierarchy, the Orders bright. Nor was his name unheard or unadored In ancient Greece; and in Ausonian land Men called him Mulciber; and how he fell From Heaven they fabled, thrown by angry Jove Sheer o'er the crystal battlements: from morn To noon he fell, from noon to dewy eve, A summer's day, and with the setting sun Dropt from the zenith, like a falling star, On Lemnos, th' Aegaean isle. Thus they relate, Erring; for he with this rebellious rout Fell long before; nor aught aviled him now To have built in Heaven high towers; nor did he scape By all his engines, but was headlong sent, With his industrious crew, to build in Hell. Meanwhile the winged Heralds, by command Of sovereign power, with awful ceremony And trumpet's sound, throughout the host proclaim A solemn council forthwith to be held At Pandemonium, the high capital Of Satan and his peers. Their summons called From every band and squared regiment By place or choice the worthiest: they anon With hundreds and with thousands trooping came Attended. All access was thronged; the gates And porches wide, but chief the spacious hall (Though like a covered field, where champions bold Wont ride in armed, and at the Soldan's chair Defied the best of Paynim chivalry To mortal combat, or career with lance), Thick swarmed, both on the ground and in the air, Brushed with the hiss of rustling wings. As bees In spring-time, when the Sun with Taurus rides. Pour forth their populous youth about the hive In clusters; they among fresh dews and flowers Fly to and fro, or on the smoothed plank, The suburb of their straw-built citadel, New rubbed with balm, expatiate, and confer Their state-affairs: so thick the airy crowd Swarmed and were straitened; till, the signal given, Behold a wonder! They but now who seemed In bigness to surpass Earth's giant sons, Now less than smallest dwarfs, in narrow room Throng numberless--like that pygmean race Beyond the Indian mount; or faery elves, Whose midnight revels, by a forest-side Or fountain, some belated peasant sees, Or dreams he sees, while overhead the Moon Sits arbitress, and nearer to the Earth Wheels her pale course: they, on their mirth and dance Intent, with jocund music charm his ear; At once with joy and fear his heart rebounds. Thus incorporeal Spirits to smallest forms Reduced their shapes immense, and were at large, Though without number still, amidst the hall Of that infernal court. But far within, And in their own dimensions like themselves, The great Seraphic Lords and Cherubim In close recess and secret conclave sat, A thousand demi-gods on golden seats, Frequent and full. After short silence then, And summons read, the great consult began. Book II High on a throne of royal state, which far Outshone the wealth or Ormus and of Ind, Or where the gorgeous East with richest hand Showers on her kings barbaric pearl and gold, Satan exalted sat, by merit raised To that bad eminence; and, from despair Thus high uplifted beyond hope, aspires Beyond thus high, insatiate to pursue Vain war with Heaven; and, by success untaught, His proud imaginations thus displayed:-- "Powers and Dominions, Deities of Heaven!-- For, since no deep within her gulf can hold Immortal vigour, though oppressed and fallen, I give not Heaven for lost: from this descent Celestial Virtues rising will appear More glorious and more dread than from no fall, And trust themselves to fear no second fate!-- Me though just right, and the fixed laws of Heaven, Did first create your leader--next, free choice With what besides in council or in fight Hath been achieved of merit--yet this loss, Thus far at least recovered, hath much more Established in a safe, unenvied throne, Yielded with full consent. The happier state In Heaven, which follows dignity, might draw Envy from each inferior; but who here Will envy whom the highest place exposes Foremost to stand against the Thunderer's aim Your bulwark, and condemns to greatest share Of endless pain? Where there is, then, no good For which to strive, no strife can grow up there From faction: for none sure will claim in Hell Precedence; none whose portion is so small Of present pain that with ambitious mind Will covet more! With this advantage, then, To union, and firm faith, and firm accord, More than can be in Heaven, we now return To claim our just inheritance of old, Surer to prosper than prosperity Could have assured us; and by what best way, Whether of open war or covert guile, We now debate. Who can advise may speak." He ceased; and next him Moloch, sceptred king, Stood up--the strongest and the fiercest Spirit That fought in Heaven, now fiercer by despair. His trust was with th' Eternal to be deemed Equal in strength, and rather than be less Cared not to be at all; with that care lost Went all his fear: of God, or Hell, or worse, He recked not, and these words thereafter spake:-- "My sentence is for open war. Of wiles, More unexpert, I boast not: them let those Contrive who need, or when they need; not now. For, while they sit contriving, shall the rest-- Millions that stand in arms, and longing wait The signal to ascend--sit lingering here, Heaven's fugitives, and for their dwelling-place Accept this dark opprobrious den of shame, The prison of his ryranny who reigns By our delay? No! let us rather choose, Armed with Hell-flames and fury, all at once O'er Heaven's high towers to force resistless way, Turning our tortures into horrid arms Against the Torturer; when, to meet the noise Of his almighty engine, he shall hear Infernal thunder, and, for lightning, see Black fire and horror shot with equal rage Among his Angels, and his throne itself Mixed with Tartarean sulphur and strange fire, His own invented torments. But perhaps The way seems difficult, and steep to scale With upright wing against a higher foe! Let such bethink them, if the sleepy drench Of that forgetful lake benumb not still, That in our porper motion we ascend Up to our native seat; descent and fall To us is adverse. Who but felt of late, When the fierce foe hung on our broken rear Insulting, and pursued us through the Deep, With what compulsion and laborious flight We sunk thus low? Th' ascent is easy, then; Th' event is feared! Should we again provoke Our stronger, some worse way his wrath may find To our destruction, if there be in Hell Fear to be worse destroyed! What can be worse Than to dwell here, driven out from bliss, condemned In this abhorred deep to utter woe! Where pain of unextinguishable fire Must exercise us without hope of end The vassals of his anger, when the scourge Inexorably, and the torturing hour, Calls us to penance? More destroyed than thus, We should be quite abolished, and expire. What fear we then? what doubt we to incense His utmost ire? which, to the height enraged, Will either quite consume us, and reduce To nothing this essential--happier far Than miserable to have eternal being!-- Or, if our substance be indeed divine, And cannot cease to be, we are at worst On this side nothing; and by proof we feel Our power sufficient to disturb his Heaven, And with perpetual inroads to alarm, Though inaccessible, his fatal throne: Which, if not victory, is yet revenge." He ended frowning, and his look denounced Desperate revenge, and battle dangerous To less than gods. On th' other side up rose Belial, in act more graceful and humane. A fairer person lost not Heaven; he seemed For dignity composed, and high exploit. But all was false and hollow; though his tongue Dropped manna, and could make the worse appear The better reason, to perplex and dash Maturest counsels: for his thoughts were low-- To vice industrious, but to nobler deeds Timorous and slothful. Yet he pleased the ear, And with persuasive accent thus began:-- "I should be much for open war, O Peers, As not behind in hate, if what was urged Main reason to persuade immediate war Did not dissuade me most, and seem to cast Ominous conjecture on the whole success; When he who most excels in fact of arms, In what he counsels and in what excels Mistrustful, grounds his courage on despair And utter dissolution, as the scope Of all his aim, after some dire revenge. First, what revenge? The towers of Heaven are filled With armed watch, that render all access Impregnable: oft on the bodering Deep Encamp their legions, or with obscure wing Scout far and wide into the realm of Night, Scorning surprise. Or, could we break our way By force, and at our heels all Hell should rise With blackest insurrection to confound Heaven's purest light, yet our great Enemy, All incorruptible, would on his throne Sit unpolluted, and th' ethereal mould, Incapable of stain, would soon expel Her mischief, and purge off the baser fire, Victorious. Thus repulsed, our final hope Is flat despair: we must exasperate Th' Almighty Victor to spend all his rage; And that must end us; that must be our cure-- To be no more. Sad cure! for who would lose, Though full of pain, this intellectual being, Those thoughts that wander through eternity, To perish rather, swallowed up and lost In the wide womb of uncreated Night, Devoid of sense and motion? And who knows, Let this be good, whether our angry Foe Can give it, or will ever? How he can Is doubtful; that he never will is sure. Will he, so wise, let loose at once his ire, Belike through impotence or unaware, To give his enemies their wish, and end Them in his anger whom his anger saves To punish endless? 'Wherefore cease we, then?' Say they who counsel war; 'we are decreed, Reserved, and destined to eternal woe; Whatever doing, what can we suffer more, What can we suffer worse?' Is this, then, worst-- Thus sitting, thus consulting, thus in arms? What when we fled amain, pursued and struck With Heaven's afflicting thunder, and besought The Deep to shelter us? This Hell then seemed A refuge from those wounds. Or when we lay Chained on the burning lake? That sure was worse. What if the breath that kindled those grim fires, Awaked, should blow them into sevenfold rage, And plunge us in the flames; or from above Should intermitted vengeance arm again His red right hand to plague us? What if all Her stores were opened, and this firmament Of Hell should spout her cataracts of fire, Impendent horrors, threatening hideous fall One day upon our heads; while we perhaps, Designing or exhorting glorious war, Caught in a fiery tempest, shall be hurled, Each on his rock transfixed, the sport and prey Or racking whirlwinds, or for ever sunk Under yon boiling ocean, wrapt in chains, There to converse with everlasting groans, Unrespited, unpitied, unreprieved, Ages of hopeless end? This would be worse. War, therefore, open or concealed, alike My voice dissuades; for what can force or guile With him, or who deceive his mind, whose eye Views all things at one view? He from Heaven's height All these our motions vain sees and derides, Not more almighty to resist our might Than wise to frustrate all our plots and wiles. Shall we, then, live thus vile--the race of Heaven Thus trampled, thus expelled, to suffer here Chains and these torments? Better these than worse, By my advice; since fate inevitable Subdues us, and omnipotent decree, The Victor's will. To suffer, as to do, Our strength is equal; nor the law unjust That so ordains. This was at first resolved, If we were wise, against so great a foe Contending, and so doubtful what might fall. I laugh when those who at the spear are bold And venturous, if that fail them, shrink, and fear What yet they know must follow--to endure Exile, or igominy, or bonds, or pain, The sentence of their Conqueror. This is now Our doom; which if we can sustain and bear, Our Supreme Foe in time may much remit His anger, and perhaps, thus far removed, Not mind us not offending, satisfied With what is punished; whence these raging fires Will slacken, if his breath stir not their flames. Our purer essence then will overcome Their noxious vapour; or, inured, not feel; Or, changed at length, and to the place conformed In temper and in nature, will receive Familiar the fierce heat; and, void of pain, This horror will grow mild, this darkness light; Besides what hope the never-ending flight Of future days may bring, what chance, what change Worth waiting--since our present lot appears For happy though but ill, for ill not worst, If we procure not to ourselves more woe." Thus Belial, with words clothed in reason's garb, Counselled ignoble ease and peaceful sloth, Not peace; and after him thus Mammon spake:-- "Either to disenthrone the King of Heaven We war, if war be best, or to regain Our own right lost. Him to unthrone we then May hope, when everlasting Fate shall yield To fickle Chance, and Chaos judge the strife. The former, vain to hope, argues as vain The latter; for what place can be for us Within Heaven's bound, unless Heaven's Lord supreme We overpower? Suppose he should relent And publish grace to all, on promise made Of new subjection; with what eyes could we Stand in his presence humble, and receive Strict laws imposed, to celebrate his throne With warbled hyms, and to his Godhead sing Forced hallelujahs, while he lordly sits Our envied sovereign, and his altar breathes Ambrosial odours and ambrosial flowers, Our servile offerings? This must be our task In Heaven, this our delight. How wearisome Eternity so spent in worship paid To whom we hate! Let us not then pursue, By force impossible, by leave obtained Unacceptable, though in Heaven, our state Of splendid vassalage; but rather seek Our own good from ourselves, and from our own Live to ourselves, though in this vast recess, Free and to none accountable, preferring Hard liberty before the easy yoke Of servile pomp. Our greatness will appear Then most conspicuous when great things of small, Useful of hurtful, prosperous of adverse, We can create, and in what place soe'er Thrive under evil, and work ease out of pain Through labour and endurance. This deep world Of darkness do we dread? How oft amidst Thick clouds and dark doth Heaven's all-ruling Sire Choose to reside, his glory unobscured, And with the majesty of darkness round Covers his throne, from whence deep thunders roar. Mustering their rage, and Heaven resembles Hell! As he our darkness, cannot we his light Imitate when we please? This desert soil Wants not her hidden lustre, gems and gold; Nor want we skill or art from whence to raise Magnificence; and what can Heaven show more? Our torments also may, in length of time, Become our elements, these piercing fires As soft as now severe, our temper changed Into their temper; which must needs remove The sensible of pain. All things invite To peaceful counsels, and the settled state Of order, how in safety best we may Compose our present evils, with regard Of what we are and where, dismissing quite All thoughts of war. Ye have what I advise." He scarce had finished, when such murmur filled Th' assembly as when hollow rocks retain The sound of blustering winds, which all night long Had roused the sea, now with hoarse cadence lull Seafaring men o'erwatched, whose bark by chance Or pinnace, anchors in a craggy bay After the tempest. Such applause was heard As Mammon ended, and his sentence pleased, Advising peace: for such another field They dreaded worse than Hell; so much the fear Of thunder and the sword of Michael Wrought still within them; and no less desire To found this nether empire, which might rise, By policy and long process of time, In emulation opposite to Heaven. Which when Beelzebub perceived--than whom, Satan except, none higher sat--with grave Aspect he rose, and in his rising seemed A pillar of state. Deep on his front engraven Deliberation sat, and public care; And princely counsel in his face yet shone, Majestic, though in ruin. Sage he stood With Atlantean shoulders, fit to bear The weight of mightiest monarchies; his look Drew audience and attention still as night Or summer's noontide air, while thus he spake:-- "Thrones and Imperial Powers, Offspring of Heaven, Ethereal Virtues! or these titles now Must we renounce, and, changing style, be called Princes of Hell? for so the popular vote Inclines--here to continue, and build up here A growing empire; doubtless! while we dream, And know not that the King of Heaven hath doomed This place our dungeon, not our safe retreat Beyond his potent arm, to live exempt From Heaven's high jurisdiction, in new league Banded against his throne, but to remain In strictest bondage, though thus far removed, Under th' inevitable curb, reserved His captive multitude. For he, to be sure, In height or depth, still first and last will reign Sole king, and of his kingdom lose no part By our revolt, but over Hell extend His empire, and with iron sceptre rule Us here, as with his golden those in Heaven. What sit we then projecting peace and war? War hath determined us and foiled with loss Irreparable; terms of peace yet none Vouchsafed or sought; for what peace will be given To us enslaved, but custody severe, And stripes and arbitrary punishment Inflicted? and what peace can we return, But, to our power, hostility and hate, Untamed reluctance, and revenge, though slow, Yet ever plotting how the Conqueror least May reap his conquest, and may least rejoice In doing what we most in suffering feel? Nor will occasion want, nor shall we need With dangerous expedition to invade Heaven, whose high walls fear no assault or siege, Or ambush from the Deep. What if we find Some easier enterprise? There is a place (If ancient and prophetic fame in Heaven Err not)--another World, the happy seat Of some new race, called Man, about this time To be created like to us, though less In power and excellence, but favoured more Of him who rules above; so was his will Pronounced among the Gods, and by an oath That shook Heaven's whole circumference confirmed. Thither let us bend all our thoughts, to learn What creatures there inhabit, of what mould Or substance, how endued, and what their power And where their weakness: how attempted best, By force of subtlety. Though Heaven be shut, And Heaven's high Arbitrator sit secure In his own strength, this place may lie exposed, The utmost border of his kingdom, left To their defence who hold it: here, perhaps, Some advantageous act may be achieved By sudden onset--either with Hell-fire To waste his whole creation, or possess All as our own, and drive, as we were driven, The puny habitants; or, if not drive, Seduce them to our party, that their God May prove their foe, and with repenting hand Abolish his own works. This would surpass Common revenge, and interrupt his joy In our confusion, and our joy upraise In his disturbance; when his darling sons, Hurled headlong to partake with us, shall curse Their frail original, and faded bliss-- Faded so soon! Advise if this be worth Attempting, or to sit in darkness here Hatching vain empires." Thus beelzebub Pleaded his devilish counsel--first devised By Satan, and in part proposed: for whence, But from the author of all ill, could spring So deep a malice, to confound the race Of mankind in one root, and Earth with Hell To mingle and involve, done all to spite The great Creator? But their spite still serves His glory to augment. The bold design Pleased highly those infernal States, and joy Sparkled in all their eyes: with full assent They vote: whereat his speech he thus renews:-- "Well have ye judged, well ended long debate, Synod of Gods, and, like to what ye are, Great things resolved, which from the lowest deep Will once more lift us up, in spite of fate, Nearer our ancient seat--perhaps in view Of those bright confines, whence, with neighbouring arms, And opportune excursion, we may chance Re-enter Heaven; or else in some mild zone Dwell, not unvisited of Heaven's fair light, Secure, and at the brightening orient beam Purge off this gloom: the soft delicious air, To heal the scar of these corrosive fires, Shall breathe her balm. But, first, whom shall we send In search of this new World? whom shall we find Sufficient? who shall tempt with wandering feet The dark, unbottomed, infinite Abyss, And through the palpable obscure find out His uncouth way, or spread his airy flight, Upborne with indefatigable wings Over the vast abrupt, ere he arrive The happy Isle? What strength, what art, can then Suffice, or what evasion bear him safe, Through the strict senteries and stations thick Of Angels watching round? Here he had need All circumspection: and we now no less Choice in our suffrage; for on whom we send The weight of all, and our last hope, relies." This said, he sat; and expectation held His look suspense, awaiting who appeared To second, or oppose, or undertake The perilous attempt. But all sat mute, Pondering the danger with deep thoughts; and each In other's countenance read his own dismay, Astonished. None among the choice and prime Of those Heaven-warring champions could be found So hardy as to proffer or accept, Alone, the dreadful voyage; till, at last, Satan, whom now transcendent glory raised Above his fellows, with monarchal pride Conscious of highest worth, unmoved thus spake:-- "O Progeny of Heaven! Empyreal Thrones! With reason hath deep silence and demur Seized us, though undismayed. Long is the way And hard, that out of Hell leads up to light. Our prison strong, this huge convex of fire, Outrageous to devour, immures us round Ninefold; and gates of burning adamant, Barred over us, prohibit all egress. These passed, if any pass, the void profound Of unessential Night receives him next, Wide-gaping, and with utter loss of being Threatens him, plunged in that abortive gulf. If thence he scape, into whatever world, Or unknown region, what remains him less Than unknown dangers, and as hard escape? But I should ill become this throne, O Peers, And this imperial sovereignty, adorned With splendour, armed with power, if aught proposed And judged of public moment in the shape Of difficulty or danger, could deter Me from attempting. Wherefore do I assume These royalties, and not refuse to reign, Refusing to accept as great a share Of hazard as of honour, due alike To him who reigns, and so much to him due Of hazard more as he above the rest High honoured sits? Go, therefore, mighty Powers, Terror of Heaven, though fallen; intend at home, While here shall be our home, what best may ease The present misery, and render Hell More tolerable; if there be cure or charm To respite, or deceive, or slack the pain Of this ill mansion: intermit no watch Against a wakeful foe, while I abroad Through all the coasts of dark destruction seek Deliverance for us all. This enterprise None shall partake with me." Thus saying, rose The Monarch, and prevented all reply; Prudent lest, from his resolution raised, Others among the chief might offer now, Certain to be refused, what erst they feared, And, so refused, might in opinion stand His rivals, winning cheap the high repute Which he through hazard huge must earn. But they Dreaded not more th' adventure than his voice Forbidding; and at once with him they rose. Their rising all at once was as the sound Of thunder heard remote. Towards him they bend With awful reverence prone, and as a God Extol him equal to the Highest in Heaven. Nor failed they to express how much they praised That for the general safety he despised His own: for neither do the Spirits damned Lose all their virtue; lest bad men should boast Their specious deeds on earth, which glory excites, Or close ambition varnished o'er with zeal. Thus they their doubtful consultations dark Ended, rejoicing in their matchless Chief: As, when from mountain-tops the dusky clouds Ascending, while the north wind sleeps, o'erspread Heaven's cheerful face, the louring element Scowls o'er the darkened landscape snow or shower, If chance the radiant sun, with farewell sweet, Extend his evening beam, the fields revive, The birds their notes renew, and bleating herds Attest their joy, that hill and valley rings. O shame to men! Devil with devil damned Firm concord holds; men only disagree Of creatures rational, though under hope Of heavenly grace, and, God proclaiming peace, Yet live in hatred, enmity, and strife Among themselves, and levy cruel wars Wasting the earth, each other to destroy: As if (which might induce us to accord) Man had not hellish foes enow besides, That day and night for his destruction wait! The Stygian council thus dissolved; and forth In order came the grand infernal Peers: Midst came their mighty Paramount, and seemed Alone th' antagonist of Heaven, nor less Than Hell's dread Emperor, with pomp supreme, And god-like imitated state: him round A globe of fiery Seraphim enclosed With bright emblazonry, and horrent arms. Then of their session ended they bid cry With trumpet's regal sound the great result: Toward the four winds four speedy Cherubim Put to their mouths the sounding alchemy, By herald's voice explained; the hollow Abyss Heard far adn wide, and all the host of Hell With deafening shout returned them loud acclaim. Thence more at ease their minds, and somewhat raised By false presumptuous hope, the ranged Powers Disband; and, wandering, each his several way Pursues, as inclination or sad choice Leads him perplexed, where he may likeliest find Truce to his restless thoughts, and entertain The irksome hours, till his great Chief return. Part on the plain, or in the air sublime, Upon the wing or in swift race contend, As at th' Olympian games or Pythian fields; Part curb their fiery steeds, or shun the goal With rapid wheels, or fronted brigades form: As when, to warn proud cities, war appears Waged in the troubled sky, and armies rush To battle in the clouds; before each van Prick forth the airy knights, and couch their spears, Till thickest legions close; with feats of arms From either end of heaven the welkin burns. Others, with vast Typhoean rage, more fell, Rend up both rocks and hills, and ride the air In whirlwind; Hell scarce holds the wild uproar:-- As when Alcides, from Oechalia crowned With conquest, felt th' envenomed robe, and tore Through pain up by the roots Thessalian pines, And Lichas from the top of Oeta threw Into th' Euboic sea. Others, more mild, Retreated in a silent valley, sing With notes angelical to many a harp Their own heroic deeds, and hapless fall By doom of battle, and complain that Fate Free Virtue should enthrall to Force or Chance. Their song was partial; but the harmony (What could it less when Spirits immortal sing?) Suspended Hell, and took with ravishment The thronging audience. In discourse more sweet (For Eloquence the Soul, Song charms the Sense) Others apart sat on a hill retired, In thoughts more elevate, and reasoned high Of Providence, Foreknowledge, Will, and Fate-- Fixed fate, free will, foreknowledge absolute, And found no end, in wandering mazes lost. Of good and evil much they argued then, Of happiness and final misery, Passion and apathy, and glory and shame: Vain wisdom all, and false philosophy!-- Yet, with a pleasing sorcery, could charm Pain for a while or anguish, and excite Fallacious hope, or arm th' obdured breast With stubborn patience as with triple steel. Another part, in squadrons and gross bands, On bold adventure to discover wide That dismal world, if any clime perhaps Might yield them easier habitation, bend Four ways their flying march, along the banks Of four infernal rivers, that disgorge Into the burning lake their baleful streams-- Abhorred Styx, the flood of deadly hate; Sad Acheron of sorrow, black and deep; Cocytus, named of lamentation loud Heard on the rueful stream; fierce Phlegeton, Whose waves of torrent fire inflame with rage. Far off from these, a slow and silent stream, Lethe, the river of oblivion, rolls Her watery labyrinth, whereof who drinks Forthwith his former state and being forgets-- Forgets both joy and grief, pleasure and pain. Beyond this flood a frozen continent Lies dark and wild, beat with perpetual storms Of whirlwind and dire hail, which on firm land Thaws not, but gathers heap, and ruin seems Of ancient pile; all else deep snow and ice, A gulf profound as that Serbonian bog Betwixt Damiata and Mount Casius old, Where armies whole have sunk: the parching air Burns frore, and cold performs th' effect of fire. Thither, by harpy-footed Furies haled, At certain revolutions all the damned Are brought; and feel by turns the bitter change Of fierce extremes, extremes by change more fierce, From beds of raging fire to starve in ice Their soft ethereal warmth, and there to pine Immovable, infixed, and frozen round Periods of time,--thence hurried back to fire. They ferry over this Lethean sound Both to and fro, their sorrow to augment, And wish and struggle, as they pass, to reach The tempting stream, with one small drop to lose In sweet forgetfulness all pain and woe, All in one moment, and so near the brink; But Fate withstands, and, to oppose th' attempt, Medusa with Gorgonian terror guards The ford, and of itself the water flies All taste of living wight, as once it fled The lip of Tantalus. Thus roving on In confused march forlorn, th' adventurous bands, With shuddering horror pale, and eyes aghast, Viewed first their lamentable lot, and found No rest. Through many a dark and dreary vale They passed, and many a region dolorous, O'er many a frozen, many a fiery alp, Rocks, caves, lakes, fens, bogs, dens, and shades of death-- A universe of death, which God by curse Created evil, for evil only good; Where all life dies, death lives, and Nature breeds, Perverse, all monstrous, all prodigious things, Obominable, inutterable, and worse Than fables yet have feigned or fear conceived, Gorgons, and Hydras, and Chimeras dire. Meanwhile the Adversary of God and Man, Satan, with thoughts inflamed of highest design, Puts on swift wings, and toward the gates of Hell Explores his solitary flight: sometimes He scours the right hand coast, sometimes the left; Now shaves with level wing the deep, then soars Up to the fiery concave towering high. As when far off at sea a fleet descried Hangs in the clouds, by equinoctial winds Close sailing from Bengala, or the isles Of Ternate and Tidore, whence merchants bring Their spicy drugs; they on the trading flood, Through the wide Ethiopian to the Cape, Ply stemming nightly toward the pole: so seemed Far off the flying Fiend. At last appear Hell-bounds, high reaching to the horrid roof, And thrice threefold the gates; three folds were brass, Three iron, three of adamantine rock, Impenetrable, impaled with circling fire, Yet unconsumed. Before the gates there sat On either side a formidable Shape. The one seemed woman to the waist, and fair, But ended foul in many a scaly fold, Voluminous and vast--a serpent armed With mortal sting. About her middle round A cry of Hell-hounds never-ceasing barked With wide Cerberean mouths full loud, and rung A hideous peal; yet, when they list, would creep, If aught disturbed their noise, into her womb, And kennel there; yet there still barked and howled Within unseen. Far less abhorred than these Vexed Scylla, bathing in the sea that parts Calabria from the hoarse Trinacrian shore; Nor uglier follow the night-hag, when, called In secret, riding through the air she comes, Lured with the smell of infant blood, to dance With Lapland witches, while the labouring moon Eclipses at their charms. The other Shape-- If shape it might be called that shape had none Distinguishable in member, joint, or limb; Or substance might be called that shadow seemed, For each seemed either--black it stood as Night, Fierce as ten Furies, terrible as Hell, And shook a dreadful dart: what seemed his head The likeness of a kingly crown had on. Satan was now at hand, and from his seat The monster moving onward came as fast With horrid strides; Hell trembled as he strode. Th' undaunted Fiend what this might be admired-- Admired, not feared (God and his Son except, Created thing naught valued he nor shunned), And with disdainful look thus first began:-- "Whence and what art thou, execrable Shape, That dar'st, though grim and terrible, advance Thy miscreated front athwart my way To yonder gates? Through them I mean to pass, That be assured, without leave asked of thee. Retire; or taste thy folly, and learn by proof, Hell-born, not to contend with Spirits of Heaven." To whom the Goblin, full of wrath, replied:-- "Art thou that traitor Angel? art thou he, Who first broke peace in Heaven and faith, till then Unbroken, and in proud rebellious arms Drew after him the third part of Heaven's sons, Conjured against the Highest--for which both thou And they, outcast from God, are here condemned To waste eternal days in woe and pain? And reckon'st thou thyself with Spirits of Heaven Hell-doomed, and breath'st defiance here and scorn, Where I reign king, and, to enrage thee more, Thy king and lord? Back to thy punishment, False fugitive; and to thy speed add wings, Lest with a whip of scorpions I pursue Thy lingering, or with one stroke of this dart Strange horror seize thee, and pangs unfelt before." So spake the grisly Terror, and in shape, So speaking and so threatening, grew tenfold, More dreadful and deform. On th' other side, Incensed with indignation, Satan stood Unterrified, and like a comet burned, That fires the length of Ophiuchus huge In th' arctic sky, and from his horrid hair Shakes pestilence and war. Each at the head Levelled his deadly aim; their fatal hands No second stroke intend; and such a frown Each cast at th' other as when two black clouds, With heaven's artillery fraught, came rattling on Over the Caspian,--then stand front to front Hovering a space, till winds the signal blow To join their dark encounter in mid-air. So frowned the mighty combatants that Hell Grew darker at their frown; so matched they stood; For never but once more was wither like To meet so great a foe. And now great deeds Had been achieved, whereof all Hell had rung, Had not the snaky Sorceress, that sat Fast by Hell-gate and kept the fatal key, Risen, and with hideous outcry rushed between. "O father, what intends thy hand," she cried, "Against thy only son? What fury, O son, Possesses thee to bend that mortal dart Against thy father's head? And know'st for whom? For him who sits above, and laughs the while At thee, ordained his drudge to execute Whate'er his wrath, which he calls justice, bids-- His wrath, which one day will destroy ye both!" She spake, and at her words the hellish Pest Forbore: then these to her Satan returned:-- "So strange thy outcry, and thy words so strange Thou interposest, that my sudden hand, Prevented, spares to tell thee yet by deeds What it intends, till first I know of thee What thing thou art, thus double-formed, and why, In this infernal vale first met, thou call'st Me father, and that phantasm call'st my son. I know thee not, nor ever saw till now Sight more detestable than him and thee." T' whom thus the Portress of Hell-gate replied:-- "Hast thou forgot me, then; and do I seem Now in thine eye so foul?--once deemed so fair In Heaven, when at th' assembly, and in sight Of all the Seraphim with thee combined In bold conspiracy against Heaven's King, All on a sudden miserable pain Surprised thee, dim thine eyes and dizzy swum In darkness, while thy head flames thick and fast Threw forth, till on the left side opening wide, Likest to thee in shape and countenance bright, Then shining heavenly fair, a goddess armed, Out of thy head I sprung. Amazement seized All th' host of Heaven; back they recoiled afraid At first, and called me Sin, and for a sign Portentous held me; but, familiar grown, I pleased, and with attractive graces won The most averse--thee chiefly, who, full oft Thyself in me thy perfect image viewing, Becam'st enamoured; and such joy thou took'st With me in secret that my womb conceived A growing burden. Meanwhile war arose, And fields were fought in Heaven: wherein remained (For what could else?) to our Almighty Foe Clear victory; to our part loss and rout Through all the Empyrean. Down they fell, Driven headlong from the pitch of Heaven, down Into this Deep; and in the general fall I also: at which time this powerful key Into my hands was given, with charge to keep These gates for ever shut, which none can pass Without my opening. Pensive here I sat Alone; but long I sat not, till my womb, Pregnant by thee, and now excessive grown, Prodigious motion felt and rueful throes. At last this odious offspring whom thou seest, Thine own begotten, breaking violent way, Tore through my entrails, that, with fear and pain Distorted, all my nether shape thus grew Transformed: but he my inbred enemy Forth issued, brandishing his fatal dart, Made to destroy. I fled, and cried out Death! Hell trembled at the hideous name, and sighed From all her caves, and back resounded Death! I fled; but he pursued (though more, it seems, Inflamed with lust than rage), and, swifter far, Me overtook, his mother, all dismayed, And, in embraces forcible and foul Engendering with me, of that rape begot These yelling monsters, that with ceaseless cry Surround me, as thou saw'st--hourly conceived And hourly born, with sorrow infinite To me; for, when they list, into the womb That bred them they return, and howl, and gnaw My bowels, their repast; then, bursting forth Afresh, with conscious terrors vex me round, That rest or intermission none I find. Before mine eyes in opposition sits Grim Death, my son and foe, who set them on, And me, his parent, would full soon devour For want of other prey, but that he knows His end with mine involved, and knows that I Should prove a bitter morsel, and his bane, Whenever that shall be: so Fate pronounced. But thou, O father, I forewarn thee, shun His deadly arrow; neither vainly hope To be invulnerable in those bright arms, Through tempered heavenly; for that mortal dint, Save he who reigns above, none can resist." She finished; and the subtle Fiend his lore Soon learned, now milder, and thus answered smooth:-- "Dear daughter--since thou claim'st me for thy sire, And my fair son here show'st me, the dear pledge Of dalliance had with thee in Heaven, and joys Then sweet, now sad to mention, through dire change Befallen us unforeseen, unthought-of--know, I come no enemy, but to set free From out this dark and dismal house of pain Both him and thee, and all the heavenly host Of Spirits that, in our just pretences armed, Fell with us from on high. From them I go This uncouth errand sole, and one for all Myself expose, with lonely steps to tread Th' unfounded Deep, and through the void immense To search, with wandering quest, a place foretold Should be--and, by concurring signs, ere now Created vast and round--a place of bliss In the purlieus of Heaven; and therein placed A race of upstart creatures, to supply Perhaps our vacant room, though more removed, Lest Heaven, surcharged with potent multitude, Might hap to move new broils. Be this, or aught Than this more secret, now designed, I haste To know; and, this once known, shall soon return, And bring ye to the place where thou and Death Shall dwell at ease, and up and down unseen Wing silently the buxom air, embalmed With odours. There ye shall be fed and filled Immeasurably; all things shall be your prey." He ceased; for both seemed highly pleased, and Death Grinned horrible a ghastly smile, to hear His famine should be filled, and blessed his maw Destined to that good hour. No less rejoiced His mother bad, and thus bespake her sire:-- "The key of this infernal Pit, by due And by command of Heaven's all-powerful King, I keep, by him forbidden to unlock These adamantine gates; against all force Death ready stands to interpose his dart, Fearless to be o'ermatched by living might. But what owe I to his commands above, Who hates me, and hath hither thrust me down Into this gloom of Tartarus profound, To sit in hateful office here confined, Inhabitant of Heaven and heavenly born-- Here in perpetual agony and pain, With terrors and with clamours compassed round Of mine own brood, that on my bowels feed? Thou art my father, thou my author, thou My being gav'st me; whom should I obey But thee? whom follow? Thou wilt bring me soon To that new world of light and bliss, among The gods who live at ease, where I shall reign At thy right hand voluptuous, as beseems Thy daughter and thy darling, without end." Thus saying, from her side the fatal key, Sad instrument of all our woe, she took; And, towards the gate rolling her bestial train, Forthwith the huge portcullis high up-drew, Which, but herself, not all the Stygian Powers Could once have moved; then in the key-hole turns Th' intricate wards, and every bolt and bar Of massy iron or solid rock with ease Unfastens. On a sudden open fly, With impetuous recoil and jarring sound, Th' infernal doors, and on their hinges grate Harsh thunder, that the lowest bottom shook Of Erebus. She opened; but to shut Excelled her power: the gates wide open stood, That with extended wings a bannered host, Under spread ensigns marching, mibht pass through With horse and chariots ranked in loose array; So wide they stood, and like a furnace-mouth Cast forth redounding smoke and ruddy flame. Before their eyes in sudden view appear The secrets of the hoary Deep--a dark Illimitable ocean, without bound, Without dimension; where length, breadth, and height, And time, and place, are lost; where eldest Night And Chaos, ancestors of Nature, hold Eternal anarchy, amidst the noise Of endless wars, and by confusion stand. For Hot, Cold, Moist, and Dry, four champions fierce, Strive here for mastery, and to battle bring Their embryon atoms: they around the flag Of each his faction, in their several clans, Light-armed or heavy, sharp, smooth, swift, or slow, Swarm populous, unnumbered as the sands Of Barca or Cyrene's torrid soil, Levied to side with warring winds, and poise Their lighter wings. To whom these most adhere He rules a moment: Chaos umpire sits, And by decision more embroils the fray By which he reigns: next him, high arbiter, Chance governs all. Into this wild Abyss, The womb of Nature, and perhaps her grave, Of neither sea, nor shore, nor air, nor fire, But all these in their pregnant causes mixed Confusedly, and which thus must ever fight, Unless th' Almighty Maker them ordain His dark materials to create more worlds-- Into this wild Abyss the wary Fiend Stood on the brink of Hell and looked a while, Pondering his voyage; for no narrow frith He had to cross. Nor was his ear less pealed With noises loud and ruinous (to compare Great things with small) than when Bellona storms With all her battering engines, bent to rase Some capital city; or less than if this frame Of Heaven were falling, and these elements In mutiny had from her axle torn The steadfast Earth. At last his sail-broad vans He spread for flight, and, in the surging smoke Uplifted, spurns the ground; thence many a league, As in a cloudy chair, ascending rides Audacious; but, that seat soon failing, meets A vast vacuity. All unawares, Fluttering his pennons vain, plumb-down he drops Ten thousand fathom deep, and to this hour Down had been falling, had not, by ill chance, The strong rebuff of some tumultuous cloud, Instinct with fire and nitre, hurried him As many miles aloft. That fury stayed-- Quenched in a boggy Syrtis, neither sea, Nor good dry land--nigh foundered, on he fares, Treading the crude consistence, half on foot, Half flying; behoves him now both oar and sail. As when a gryphon through the wilderness With winged course, o'er hill or moory dale, Pursues the Arimaspian, who by stealth Had from his wakeful custody purloined The guarded gold; so eagerly the Fiend O'er bog or steep, through strait, rough, dense, or rare, With head, hands, wings, or feet, pursues his way, And swims, or sinks, or wades, or creeps, or flies. At length a universal hubbub wild Of stunning sounds, and voices all confused, Borne through the hollow dark, assaults his ear With loudest vehemence. Thither he plies Undaunted, to meet there whatever Power Or Spirit of the nethermost Abyss Might in that noise reside, of whom to ask Which way the nearest coast of darkness lies Bordering on light; when straight behold the throne Of Chaos, and his dark pavilion spread Wide on the wasteful Deep! With him enthroned Sat sable-vested Night, eldest of things, The consort of his reign; and by them stood Orcus and Ades, and the dreaded name Of Demogorgon; Rumour next, and Chance, And Tumult, and Confusion, all embroiled, And Discord with a thousand various mouths. T' whom Satan, turning boldly, thus:--"Ye Powers And Spirtis of this nethermost Abyss, Chaos and ancient Night, I come no spy With purpose to explore or to disturb The secrets of your realm; but, by constraint Wandering this darksome desert, as my way Lies through your spacious empire up to light, Alone and without guide, half lost, I seek, What readiest path leads where your gloomy bounds Confine with Heaven; or, if some other place, From your dominion won, th' Ethereal King Possesses lately, thither to arrive I travel this profound. Direct my course: Directed, no mean recompense it brings To your behoof, if I that region lost, All usurpation thence expelled, reduce To her original darkness and your sway (Which is my present journey), and once more Erect the standard there of ancient Night. Yours be th' advantage all, mine the revenge!" Thus Satan; and him thus the Anarch old, With faltering speech and visage incomposed, Answered: "I know thee, stranger, who thou art-- *** That mighty leading Angel, who of late Made head against Heaven's King, though overthrown. I saw and heard; for such a numerous host Fled not in silence through the frighted Deep, With ruin upon ruin, rout on rout, Confusion worse confounded; and Heaven-gates Poured out by millions her victorious bands, Pursuing. I upon my frontiers here Keep residence; if all I can will serve That little which is left so to defend, Encroached on still through our intestine broils Weakening the sceptre of old Night: first, Hell, Your dungeon, stretching far and wide beneath; Now lately Heaven and Earth, another world Hung o'er my realm, linked in a golden chain To that side Heaven from whence your legions fell! If that way be your walk, you have not far; So much the nearer danger. Go, and speed; Havoc, and spoil, and ruin, are my gain." He ceased; and Satan stayed not to reply, But, glad that now his sea should find a shore, With fresh alacrity and force renewed Springs upward, like a pyramid of fire, Into the wild expanse, and through the shock Of fighting elements, on all sides round Environed, wins his way; harder beset And more endangered than when Argo passed Through Bosporus betwixt the justling rocks, Or when Ulysses on the larboard shunned Charybdis, and by th' other whirlpool steered. So he with difficulty and labour hard Moved on, with difficulty and labour he; But, he once passed, soon after, when Man fell, Strange alteration! Sin and Death amain, Following his track (such was the will of Heaven) Paved after him a broad and beaten way Over the dark Abyss, whose boiling gulf Tamely endured a bridge of wondrous length, From Hell continued, reaching th' utmost orb Of this frail World; by which the Spirits perverse With easy intercourse pass to and fro To tempt or punish mortals, except whom God and good Angels guard by special grace. But now at last the sacred influence Of light appears, and from the walls of Heaven Shoots far into the bosom of dim Night A glimmering dawn. Here Nature first begins Her farthest verge, and Chaos to retire, As from her outmost works, a broken foe, With tumult less and with less hostile din; That Satan with less toil, and now with ease, Wafts on the calmer wave by dubious light, And, like a weather-beaten vessel, holds Gladly the port, though shrouds and tackle torn; Or in the emptier waste, resembling air, Weighs his spread wings, at leisure to behold Far off th' empyreal Heaven, extended wide In circuit, undetermined square or round, With opal towers and battlements adorned Of living sapphire, once his native seat; And, fast by, hanging in a golden chain, This pendent World, in bigness as a star Of smallest magnitude close by the moon. Thither, full fraught with mischievous revenge, Accursed, and in a cursed hour, he hies. Book III Hail, holy Light, offspring of Heaven firstborn, Or of the Eternal coeternal beam May I express thee unblam'd? since God is light, And never but in unapproached light Dwelt from eternity, dwelt then in thee Bright effluence of bright essence increate. Or hear"st thou rather pure ethereal stream, Whose fountain who shall tell? before the sun, Before the Heavens thou wert, and at the voice Of God, as with a mantle, didst invest *** The rising world of waters dark and deep, Won from the void and formless infinite. Thee I re-visit now with bolder wing, Escap'd the Stygian pool, though long detain'd In that obscure sojourn, while in my flight Through utter and through middle darkness borne, With other notes than to the Orphean lyre I sung of Chaos and eternal Night; Taught by the heavenly Muse to venture down The dark descent, and up to re-ascend, Though hard and rare: Thee I revisit safe, And feel thy sovran vital lamp; but thou Revisit'st not these eyes, that roll in vain To find thy piercing ray, and find no dawn; So thick a drop serene hath quench'd their orbs, Or dim suffusion veil'd. Yet not the more Cease I to wander, where the Muses haunt, Clear spring, or shady grove, or sunny hill, Smit with the love of sacred song; but chief Thee, Sion, and the flowery brooks beneath, That wash thy hallow'd feet, and warbling flow, Nightly I visit: nor sometimes forget So were I equall'd with them in renown, Thy sovran command, that Man should find grace; Blind Thamyris, and blind Maeonides, And Tiresias, and Phineus, prophets old: Then feed on thoughts, that voluntary move Harmonious numbers; as the wakeful bird Sings darkling, and in shadiest covert hid Tunes her nocturnal note. Thus with the year Seasons return; but not to me returns Day, or the sweet approach of even or morn, Or sight of vernal bloom, or summer's rose, Or flocks, or herds, or human face divine; But cloud instead, and ever-during dark Surrounds me, from the cheerful ways of men Cut off, and for the book of knowledge fair Presented with a universal blank Of nature's works to me expung'd and ras'd, And wisdom at one entrance quite shut out. So much the rather thou, celestial Light, Shine inward, and the mind through all her powers Irradiate; there plant eyes, all mist from thence Purge and disperse, that I may see and tell Of things invisible to mortal sight. Now had the Almighty Father from above, From the pure empyrean where he sits High thron'd above all highth, bent down his eye His own works and their works at once to view: About him all the Sanctities of Heaven Stood thick as stars, and from his sight receiv'd Beatitude past utterance; on his right The radiant image of his glory sat, His only son; on earth he first beheld Our two first parents, yet the only two Of mankind in the happy garden plac'd Reaping immortal fruits of joy and love, Uninterrupted joy, unrivall'd love, In blissful solitude; he then survey'd Hell and the gulf between, and Satan there Coasting the wall of Heaven on this side Night In the dun air sublime, and ready now To stoop with wearied wings, and willing feet, On the bare outside of this world, that seem'd Firm land imbosom'd, without firmament, Uncertain which, in ocean or in air. Him God beholding from his prospect high, Wherein past, present, future, he beholds, Thus to his only Son foreseeing spake. Only begotten Son, seest thou what rage Transports our Adversary? whom no bounds Prescrib'd no bars of Hell, nor all the chains Heap'd on him there, nor yet the main abyss Wide interrupt, can hold; so bent he seems On desperate revenge, that shall redound Upon his own rebellious head. And now, Through all restraint broke loose, he wings his way Not far off Heaven, in the precincts of light, Directly towards the new created world, And man there plac'd, with purpose to assay If him by force he can destroy, or, worse, By some false guile pervert; and shall pervert; For man will hearken to his glozing lies, And easily transgress the sole command, Sole pledge of his obedience: So will fall He and his faithless progeny: Whose fault? Whose but his own? ingrate, he had of me All he could have; I made him just and right, Sufficient to have stood, though free to fall. Such I created all the ethereal Powers And Spirits, both them who stood, and them who fail'd; Freely they stood who stood, and fell who fell. Not free, what proof could they have given sincere Of true allegiance, constant faith or love, Where only what they needs must do appear'd, Not what they would? what praise could they receive? What pleasure I from such obedience paid, When will and reason (reason also is choice) Useless and vain, of freedom both despoil'd, Made passive both, had serv'd necessity, Not me? they therefore, as to right belong$ 'd, So were created, nor can justly accuse Their Maker, or their making, or their fate, As if predestination over-rul'd Their will dispos'd by absolute decree Or high foreknowledge they themselves decreed Their own revolt, not I; if I foreknew, Foreknowledge had no influence on their fault, Which had no less proved certain unforeknown. So without least impulse or shadow of fate, Or aught by me immutably foreseen, They trespass, authors to themselves in all Both what they judge, and what they choose; for so I form'd them free: and free they must remain, Till they enthrall themselves; I else must change Their nature, and revoke the high decree Unchangeable, eternal, which ordain'd $THeir freedom: they themselves ordain'd their fall. The first sort by their own suggestion fell, Self-tempted, self-deprav'd: Man falls, deceiv'd By the other first: Man therefore shall find grace, The other none: In mercy and justice both, Through Heaven and Earth, so shall my glory excel; But Mercy, first and last, shall brightest shine. Thus while God spake, ambrosial fragrance fill'd All Heaven, and in the blessed Spirits elect Sense of new joy ineffable diffus'd. Beyond compare the Son of God was seen Most glorious; in him all his Father shone Substantially express'd; and in his face Divine compassion visibly appear'd, Love without end, and without measure grace, Which uttering, thus he to his Father spake. O Father, gracious was that word which clos'd Thy sovran command, that Man should find grace; , that Man should find grace; For which both Heaven and earth shall high extol Thy praises, with the innumerable sound Of hymns and sacred songs, wherewith thy throne Encompass'd shall resound thee ever blest. For should Man finally be lost, should Man, Thy creature late so lov'd, thy youngest son, Fall circumvented thus by fraud, though join'd With his own folly? that be from thee far, That far be from thee, Father, who art judge Of all things made, and judgest only right. Or shall the Adversary thus obtain His end, and frustrate thine? shall he fulfill His malice, and thy goodness bring to nought, Or proud return, though to his heavier doom, Yet with revenge accomplish'd, and to Hell Draw after him the whole race of mankind, By him corrupted? or wilt thou thyself Abolish thy creation, and unmake For him, what for thy glory thou hast made? So should thy goodness and thy greatness both Be question'd and blasphem'd without defence. To whom the great Creator thus replied. O son, in whom my soul hath chief delight, Son of my bosom, Son who art alone. My word, my wisdom, and effectual might, All hast thou spoken as my thoughts are, all As my eternal purpose hath decreed; Man shall not quite be lost, but sav'd who will; Yet not of will in him, but grace in me Freely vouchsaf'd; once more I will renew His lapsed powers, though forfeit; and enthrall'd By sin to foul exorbitant desires; Upheld by me, yet once more he shall stand On even ground against his mortal foe; By me upheld, that he may know how frail His fallen condition is, and to me owe All his deliverance, and to none but me. Some I have chosen of peculiar grace, Elect above the rest; so is my will: The rest shall hear me call, and oft be warn'd Their sinful state, and to appease betimes The incensed Deity, while offer'd grace Invites; for I will clear their senses dark, What may suffice, and soften stony hearts To pray, repent, and bring obedience due. To prayer, repentance, and obedience due, Though but endeavour'd with sincere intent, Mine ear shall not be slow, mine eye not shut. And I will place within them as a guide, My umpire Conscience; whom if they will hear, Light after light, well us'd, they shall attain, And to the end, persisting, safe arrive. This my long sufferance, and my day of grace, They who neglect and scorn, shall never taste; But hard be harden'd, blind be blinded more, That they may stumble on, and deeper fall; And none but such from mercy I exclude. But yet all is not done; Man disobeying, Disloyal, breaks his fealty, and sins Against the high supremacy of Heaven, Affecting God-head, and, so losing all, To expiate his treason hath nought left, But to destruction sacred and devote, He, with his whole posterity, must die, Die he or justice must; unless for him Some other able, and as willing, pay The rigid satisfaction, death for death. Say, heavenly Powers, where shall we find such love? Which of you will be mortal, to redeem Man's mortal crime, and just the unjust to save? Dwells in all Heaven charity so dear? And silence was in Heaven: $ on Man's behalf He ask'd, but all the heavenly quire stood mute, Patron or intercessour none appear'd, Much less that durst upon his own head draw The deadly forfeiture, and ransom set. And now without redemption all mankind Must have been lost, adjudg'd to Death and Hell By doom severe, had not the Son of God, In whom the fulness dwells of love divine, His dearest mediation thus renew'd. Father, thy word is past, Man shall find grace; And shall grace not find means, that finds her way, The speediest of thy winged messengers, To visit all thy creatures, and to all Comes unprevented, unimplor'd, unsought? Happy for Man, so coming; he her aid Can never seek, once dead in sins, and lost; Atonement for himself, or offering meet, Indebted and undone, hath none to bring; Behold me then: me for him, life for life I offer: on me let thine anger fall; Account me Man; I for his sake will leave Thy bosom, and this glory next to thee Freely put off, and for him lastly die Well pleased; on me let Death wreak all his rage. Under his gloomy power I shall not long Lie vanquished. Thou hast given me to possess Life in myself for ever; by thee I live; Though now to Death I yield, and am his due, All that of me can die, yet, that debt paid, $ thou wilt not leave me in the loathsome grave His prey, nor suffer my unspotted soul For ever with corruption there to dwell; But I shall rise victorious, and subdue My vanquisher, spoiled of his vaunted spoil. Death his death's wound shall then receive, and stoop Inglorious, of his mortal sting disarmed; I through the ample air in triumph high Shall lead Hell captive maugre Hell, and show The powers of darkness bound. Thou, at the sight Pleased, out of Heaven shalt look down and smile, While, by thee raised, I ruin all my foes; Death last, and with his carcase glut the grave; Then, with the multitude of my redeemed, Shall enter Heaven, long absent, and return, Father, to see thy face, wherein no cloud Of anger shall remain, but peace assured And reconcilement: wrath shall be no more Thenceforth, but in thy presence joy entire. His words here ended; but his meek aspect Silent yet spake, and breathed immortal love To mortal men, above which only shone Filial obedience: as a sacrifice Glad to be offered, he attends the will Of his great Father. Admiration seized All Heaven, what this might mean, and whither tend, Wondering; but soon th' Almighty thus replied. O thou in Heaven and Earth the only peace Found out for mankind under wrath, O thou My sole complacence! Well thou know'st how dear To me are all my works; nor Man the least, Though last created, that for him I spare Thee from my bosom and right hand, to save, By losing thee a while, the whole race lost. 00021053 Thou, therefore, whom thou only canst redeem, Their nature also to thy nature join; And be thyself Man among men on Earth, Made flesh, when time shall be, of virgin seed, By wondrous birth; be thou in Adam's room The head of all mankind, though Adam's son. As in him perish all men, so in thee, As from a second root, shall be restored As many as are restored, without thee none. His crime makes guilty all his sons; thy merit, Imputed, shall absolve them who renounce Their own both righteous and unrighteous deeds, And live in thee transplanted, and from thee Receive new life. So Man, as is most just, Shall satisfy for Man, be judged and die, And dying rise, and rising with him raise His brethren, ransomed with his own dear life. So heavenly love shall outdo hellish hate, Giving to death, and dying to redeem, So dearly to redeem what hellish hate So easily destroyed, and still destroys In those who, when they may, accept not grace. Nor shalt thou, by descending to assume Man's nature, lessen or degrade thine own. Because thou hast, though throned in highest bliss Equal to God, and equally enjoying God-like fruition, quitted all, to save A world from utter loss, and hast been found By merit more than birthright Son of God, Found worthiest to be so by being good, Far more than great or high; because in thee Love hath abounded more than glory abounds; Therefore thy humiliation shall exalt With thee thy manhood also to this throne: Here shalt thou sit incarnate, here shalt reign Both God and Man, Son both of God and Man, Anointed universal King; all power I give thee; reign for ever, and assume Thy merits; under thee, as head supreme, Thrones, Princedoms, Powers, Dominions, I reduce: All knees to thee shall bow, of them that bide In Heaven, or Earth, or under Earth in Hell. When thou, attended gloriously from Heaven, Shalt in the sky appear, and from thee send The summoning Arch-Angels to proclaim Thy dread tribunal; forthwith from all winds, The living, and forthwith the cited dead Of all past ages, to the general doom Shall hasten; such a peal shall rouse their sleep. Then, all thy saints assembled, thou shalt judge Bad Men and Angels; they, arraigned, shall sink Beneath thy sentence; Hell, her numbers full, Thenceforth shall be for ever shut. Mean while The world shall burn, and from her ashes spring New Heaven and Earth, wherein the just shall dwell, And, after all their tribulations long, See golden days, fruitful of golden deeds, With joy and peace triumphing, and fair truth. Then thou thy regal scepter shalt lay by, For regal scepter then no more shall need, God shall be all in all. But, all ye Gods, Adore him, who to compass all this dies; Adore the Son, and honour him as me. No sooner had the Almighty ceased, but all The multitude of Angels, with a shout Loud as from numbers without number, sweet As from blest voices, uttering joy, Heaven rung With jubilee, and loud Hosannas filled The eternal regions: Lowly reverent Towards either throne they bow, and to the ground With solemn adoration down they cast Their crowns inwove with amarant and gold; Immortal amarant, a flower which once In Paradise, fast by the tree of life, Began to bloom; but soon for man's offence To Heaven removed, where first it grew, there grows, And flowers aloft shading the fount of life, And where the river of bliss through midst of Heaven Rolls o'er Elysian flowers her amber stream; With these that never fade the Spirits elect Bind their resplendent locks inwreathed with beams; Now in loose garlands thick thrown off, the bright Pavement, that like a sea of jasper shone, Impurpled with celestial roses smiled. Then, crowned again, their golden harps they took, Harps ever tuned, that glittering by their side Like quivers hung, and with preamble sweet Of charming symphony they introduce Their sacred song, and waken raptures high; No voice exempt, no voice but well could join Melodious part, such concord is in Heaven. Thee, Father, first they sung Omnipotent, Immutable, Immortal, Infinite, Eternal King; the Author of all being, Fonntain of light, thyself invisible Amidst the glorious brightness where thou sit'st Throned inaccessible, but when thou shadest The full blaze of thy beams, and, through a cloud Drawn round about thee like a radiant shrine, Dark with excessive bright thy skirts appear, Yet dazzle Heaven, that brightest Seraphim Approach not, but with both wings veil their eyes. Thee next they sang of all creation first, Begotten Son, Divine Similitude, In whose conspicuous countenance, without cloud Made visible, the Almighty Father shines, Whom else no creature can behold; on thee Impressed the effulgence of his glory abides, Transfused on thee his ample Spirit rests. He Heaven of Heavens and all the Powers therein By thee created; and by thee threw down The aspiring Dominations: Thou that day Thy Father's dreadful thunder didst not spare, Nor stop thy flaming chariot-wheels, that shook Heaven's everlasting frame, while o'er the necks Thou drovest of warring Angels disarrayed. Back from pursuit thy Powers with loud acclaim Thee only extolled, Son of thy Father's might, To execute fierce vengeance on his foes, Not so on Man: Him through their malice fallen, Father of mercy and grace, thou didst not doom So strictly, but much more to pity incline: No sooner did thy dear and only Son Perceive thee purposed not to doom frail Man So strictly, but much more to pity inclined, He to appease thy wrath, and end the strife Of mercy and justice in thy face discerned, Regardless of the bliss wherein he sat Second to thee, offered himself to die For Man's offence. O unexampled love, Love no where to be found less than Divine! Hail, Son of God, Saviour of Men! Thy name Shall be the copious matter of my song Henceforth, and never shall my heart thy praise Forget, nor from thy Father's praise disjoin. Thus they in Heaven, above the starry sphere, Their happy hours in joy and hymning spent. Mean while upon the firm opacous globe Of this round world, whose first convex divides The luminous inferiour orbs, enclosed From Chaos, and the inroad of Darkness old, Satan alighted walks: A globe far off It seemed, now seems a boundless continent Dark, waste, and wild, under the frown of Night Starless exposed, and ever-threatening storms Of Chaos blustering round, inclement sky; Save on that side which from the wall of Heaven, Though distant far, some small reflection gains Of glimmering air less vexed with tempest loud: Here walked the Fiend at large in spacious field. As when a vultur on Imaus bred, Whose snowy ridge the roving Tartar bounds, Dislodging from a region scarce of prey To gorge the flesh of lambs or yeanling kids, On hills where flocks are fed, flies toward the springs Of Ganges or Hydaspes, Indian streams; But in his way lights on the barren plains Of Sericana, where Chineses drive With sails and wind their cany waggons light: So, on this windy sea of land, the Fiend Walked up and down alone, bent on his prey; Alone, for other creature in this place, Living or lifeless, to be found was none; None yet, but store hereafter from the earth Up hither like aereal vapours flew Of all things transitory and vain, when sin With vanity had filled the works of men: Both all things vain, and all who in vain things Built their fond hopes of glory or lasting fame, Or happiness in this or the other life; All who have their reward on earth, the fruits Of painful superstition and blind zeal, Nought seeking but the praise of men, here find Fit retribution, empty as their deeds; All the unaccomplished works of Nature's hand, Abortive, monstrous, or unkindly mixed, Dissolved on earth, fleet hither, and in vain, Till final dissolution, wander here; Not in the neighbouring moon as some have dreamed; Those argent fields more likely habitants, Translated Saints, or middle Spirits hold Betwixt the angelical and human kind. Hither of ill-joined sons and daughters born First from the ancient world those giants came With many a vain exploit, though then renowned: The builders next of Babel on the plain Of Sennaar, and still with vain design, New Babels, had they wherewithal, would build: Others came single; he, who, to be deemed A God, leaped fondly into Aetna flames, Empedocles; and he, who, to enjoy Plato's Elysium, leaped into the sea, Cleombrotus; and many more too long, Embryos, and idiots, eremites, and friars White, black, and gray, with all their trumpery. Here pilgrims roam, that strayed so far to seek In Golgotha him dead, who lives in Heaven; And they, who to be sure of Paradise, Dying, put on the weeds of Dominick, Or in Franciscan think to pass disguised; They pass the planets seven, and pass the fixed, And that crystalling sphere whose balance weighs The trepidation talked, and that first moved; And now Saint Peter at Heaven's wicket seems To wait them with his keys, and now at foot Of Heaven's ascent they lift their feet, when lo A violent cross wind from either coast Blows them transverse, ten thousand leagues awry Into the devious air: Then might ye see Cowls, hoods, and habits, with their wearers, tost And fluttered into rags; then reliques, beads, Indulgences, dispenses, pardons, bulls, The sport of winds: All these, upwhirled aloft, Fly o'er the backside of the world far off Into a Limbo large and broad, since called The Paradise of Fools, to few unknown Long after; now unpeopled, and untrod. All this dark globe the Fiend found as he passed, And long he wandered, till at last a gleam Of dawning light turned thither-ward in haste His travelled steps: far distant he descries Ascending by degrees magnificent Up to the wall of Heaven a structure high; At top whereof, but far more rich, appeared The work as of a kingly palace-gate, With frontispiece of diamond and gold Embellished; thick with sparkling orient gems The portal shone, inimitable on earth By model, or by shading pencil, drawn. These stairs were such as whereon Jacob saw Angels ascending and descending, bands Of guardians bright, when he from Esau fled To Padan-Aram, in the field of Luz Dreaming by night under the open sky And waking cried, This is the gate of Heaven. Each stair mysteriously was meant, nor stood There always, but drawn up to Heaven sometimes Viewless; and underneath a bright sea flowed Of jasper, or of liquid pearl, whereon Who after came from earth, failing arrived Wafted by Angels, or flew o'er the lake Rapt in a chariot drawn by fiery steeds. The stairs were then let down, whether to dare The Fiend by easy ascent, or aggravate His sad exclusion from the doors of bliss: Direct against which opened from beneath, Just o'er the blissful seat of Paradise, A passage down to the Earth, a passage wide, Wider by far than that of after-times Over mount Sion, and, though that were large, Over the Promised Land to God so dear; By which, to visit oft those happy tribes, On high behests his angels to and fro Passed frequent, and his eye with choice regard From Paneas, the fount of Jordan's flood, To Beersaba, where the Holy Land Borders on Egypt and the Arabian shore; So wide the opening seemed, where bounds were set To darkness, such as bound the ocean wave. Satan from hence, now on the lower stair, That scaled by steps of gold to Heaven-gate, Looks down with wonder at the sudden view Of all this world at once. As when a scout, Through dark?;nd desart ways with?oeril gone All?might,?;t?kast by break of cheerful dawn Obtains the brow of some high-climbing hill, Which to his eye discovers unaware The goodly prospect of some foreign land First seen, or some renowned metropolis With glistering spires and pinnacles adorned, Which now the rising sun gilds with his beams: Such wonder seised, though after Heaven seen, The Spirit malign, but much more envy seised, At sight of all this world beheld so fair. Round he surveys (and well might, where he stood So high above the circling canopy Of night's extended shade,) from eastern point Of Libra to the fleecy star that bears Andromeda far off Atlantick seas Beyond the horizon; then from pole to pole He views in breadth, and without longer pause Down right into the world's first region throws His flight precipitant, and winds with ease Through the pure marble air his oblique way Amongst innumerable stars, that shone Stars distant, but nigh hand seemed other worlds; Or other worlds they seemed, or happy isles, Like those Hesperian gardens famed of old, Fortunate fields, and groves, and flowery vales, Thrice happy isles; but who dwelt happy there He staid not to inquire: Above them all The golden sun, in splendour likest Heaven, Allured his eye; thither his course he bends Through the calm firmament, (but up or down, By center, or eccentrick, hard to tell, Or longitude,) where the great luminary Aloof the vulgar constellations thick, That from his lordly eye keep distance due, Dispenses light from far; they, as they move Their starry dance in numbers that compute Days, months, and years, towards his all-cheering lamp Turn swift their various motions, or are turned By his magnetick beam, that gently warms The universe, and to each inward part With gentle penetration, though unseen, Shoots invisible virtue even to the deep; So wonderously was set his station bright. There lands the Fiend, a spot like which perhaps Astronomer in the sun's lucent orb Through his glazed optick tube yet never saw. The place he found beyond expression bright, Compared with aught on earth, metal or stone; Not all parts like, but all alike informed With radiant light, as glowing iron with fire; If metal, part seemed gold, part silver clear; If stone, carbuncle most or chrysolite, Ruby or topaz, to the twelve that shone In Aaron's breast-plate, and a stone besides Imagined rather oft than elsewhere seen, That stone, or like to that which here below Philosophers in vain so long have sought, In vain, though by their powerful art they bind Volatile Hermes, and call up unbound In various shapes old Proteus from the sea, Drained through a limbeck to his native form. What wonder then if fields and regions here Breathe forth Elixir pure, and rivers run Potable gold, when with one virtuous touch The arch-chemick sun, so far from us remote, Produces, with terrestrial humour mixed, Here in the dark so many precious things Of colour glorious, and effect so rare? Here matter new to gaze the Devil met Undazzled; far and wide his eye commands; For sight no obstacle found here, nor shade, But all sun-shine, as when his beams at noon Culminate from the equator, as they now Shot upward still direct, whence no way round Shadow from body opaque can fall; and the air, No where so clear, sharpened his visual ray To objects distant far, whereby he soon Saw within ken a glorious Angel stand, The same whom John saw also in the sun: His back was turned, but not his brightness hid; Of beaming sunny rays a golden tiar Circled his head, nor less his locks behind Illustrious on his shoulders fledge with wings Lay waving round; on some great charge employed He seemed, or fixed in cogitation deep. Glad was the Spirit impure, as now in hope To find who might direct his wandering flight To Paradise, the happy seat of Man, His journey's end and our beginning woe. But first he casts to change his proper shape, Which else might work him danger or delay: And now a stripling Cherub he appears, Not of the prime, yet such as in his face Youth smiled celestial, and to every limb Suitable grace diffused, so well he feigned: Under a coronet his flowing hair In curls on either cheek played; wings he wore Of many a coloured plume, sprinkled with gold; His habit fit for speed succinct, and held Before his decent steps a silver wand. He drew not nigh unheard; the Angel bright, Ere he drew nigh, his radiant visage turned, Admonished by his ear, and straight was known The Arch-Angel Uriel, one of the seven Who in God's presence, nearest to his throne, Stand ready at command, and are his eyes That run through all the Heavens, or down to the Earth Bear his swift errands over moist and dry, O'er sea and land: him Satan thus accosts. Uriel, for thou of those seven Spirits that stand In sight of God's high throne, gloriously bright, The first art wont his great authentick will Interpreter through highest Heaven to bring, Where all his sons thy embassy attend; And here art likeliest by supreme decree Like honour to obtain, and as his eye To visit oft this new creation round; Unspeakable desire to see, and know All these his wonderous works, but chiefly Man, His chief delight and favour, him for whom All these his works so wonderous he ordained, Hath brought me from the quires of Cherubim Alone thus wandering. Brightest Seraph, tell In which of all these shining orbs hath Man His fixed seat, or fixed seat hath none, But all these shining orbs his choice to dwell; That I may find him, and with secret gaze Or open admiration him behold, On whom the great Creator hath bestowed Worlds, and on whom hath all these graces poured; That both in him and all things, as is meet, The universal Maker we may praise; Who justly hath driven out his rebel foes To deepest Hell, and, to repair that loss, Created this new happy race of Men To serve him better: Wise are all his ways. So spake the false dissembler unperceived; For neither Man nor Angel can discern Hypocrisy, the only evil that walks Invisible, except to God alone, By his permissive will, through Heaven and Earth: And oft, though wisdom wake, suspicion sleeps At wisdom's gate, and to simplicity Resigns her charge, while goodness thinks no ill Where no ill seems: Which now for once beguiled Uriel, though regent of the sun, and held The sharpest-sighted Spirit of all in Heaven; Who to the fraudulent impostor foul, In his uprightness, answer thus returned. Fair Angel, thy desire, which tends to know The works of God, thereby to glorify The great Work-master, leads to no excess That reaches blame, but rather merits praise The more it seems excess, that led thee hither From thy empyreal mansion thus alone, To witness with thine eyes what some perhaps, Contented with report, hear only in Heaven: For wonderful indeed are all his works, Pleasant to know, and worthiest to be all Had in remembrance always with delight; But what created mind can comprehend Their number, or the wisdom infinite That brought them forth, but hid their causes deep? I saw when at his word the formless mass, This world's material mould, came to a heap: Confusion heard his voice, and wild uproar Stood ruled, stood vast infinitude confined; Till at his second bidding Darkness fled, Light shone, and order from disorder sprung: Swift to their several quarters hasted then The cumbrous elements, earth, flood, air, fire; And this ethereal quintessence of Heaven Flew upward, spirited with various forms, That rolled orbicular, and turned to stars Numberless, as thou seest, and how they move; Each had his place appointed, each his course; The rest in circuit walls this universe. Look downward on that globe, whose hither side With light from hence, though but reflected, shines; That place is Earth, the seat of Man; that light His day, which else, as the other hemisphere, Night would invade; but there the neighbouring moon So call that opposite fair star) her aid Timely interposes, and her monthly round Still ending, still renewing, through mid Heaven, With borrowed light her countenance triform Hence fills and empties to enlighten the Earth, And in her pale dominion checks the night. That spot, to which I point, is Paradise, Adam's abode; those lofty shades, his bower. Thy way thou canst not miss, me mine requires. Thus said, he turned; and Satan, bowing low, As to superiour Spirits is wont in Heaven, Where honour due and reverence none neglects, Took leave, and toward the coast of earth beneath, Down from the ecliptick, sped with hoped success, Throws his steep flight in many an aery wheel; Nor staid, till on Niphates' top he lights. Book IV O, for that warning voice, which he, who saw The Apocalypse, heard cry in Heaven aloud, Then when the Dragon, put to second rout, Came furious down to be revenged on men, Woe to the inhabitants on earth! that now, While time was, our first parents had been warned The coming of their secret foe, and 'scaped, Haply so 'scaped his mortal snare: For now Satan, now first inflamed with rage, came down, The tempter ere the accuser of mankind, To wreak on innocent frail Man his loss Of that first battle, and his flight to Hell: Yet, not rejoicing in his speed, though bold Far off and fearless, nor with cause to boast, Begins his dire attempt; which nigh the birth Now rolling boils in his tumultuous breast, And like a devilish engine back recoils Upon himself; horrour and doubt distract His troubled thoughts, and from the bottom stir The Hell within him; for within him Hell He brings, and round about him, nor from Hell One step, no more than from himself, can fly By change of place: Now conscience wakes despair, That slumbered; wakes the bitter memory Of what he was, what is, and what must be Worse; of worse deeds worse sufferings must ensue. Sometimes towards Eden, which now in his view Lay pleasant, his grieved look he fixes sad; Sometimes towards Heaven, and the full-blazing sun, Which now sat high in his meridian tower: Then, much revolving, thus in sighs began. O thou, that, with surpassing glory crowned, Lookest from thy sole dominion like the God Of this new world; at whose sight all the stars Hide their diminished heads; to thee I call, But with no friendly voice, and add thy name, Of Sun! to tell thee how I hate thy beams, That bring to my remembrance from what state I fell, how glorious once above thy sphere; Till pride and worse ambition threw me down Warring in Heaven against Heaven's matchless King: Ah, wherefore! he deserved no such return From me, whom he created what I was In that bright eminence, and with his good Upbraided none; nor was his service hard. What could be less than to afford him praise, The easiest recompence, and pay him thanks, How due! yet all his good proved ill in me, And wrought but malice; lifted up so high I sdeined subjection, and thought one step higher Would set me highest, and in a moment quit The debt immense of endless gratitude, So burdensome still paying, still to owe, Forgetful what from him I still received, And understood not that a grateful mind By owing owes not, but still pays, at once Indebted and discharged; what burden then O, had his powerful destiny ordained Me some inferiour Angel, I had stood Then happy; no unbounded hope had raised Ambition! Yet why not some other Power As great might have aspired, and me, though mean, Drawn to his part; but other Powers as great Fell not, but stand unshaken, from within Or from without, to all temptations armed. Hadst thou the same free will and power to stand? Thou hadst: whom hast thou then or what to accuse, But Heaven's free love dealt equally to all? Be then his love accursed, since love or hate, To me alike, it deals eternal woe. Nay, cursed be thou; since against his thy will Chose freely what it now so justly rues. Me miserable! which way shall I fly Infinite wrath, and infinite despair? Which way I fly is Hell; myself am Hell; And, in the lowest deep, a lower deep Still threatening to devour me opens wide, To which the Hell I suffer seems a Heaven. O, then, at last relent: Is there no place Left for repentance, none for pardon left? None left but by submission; and that word Disdain forbids me, and my dread of shame Among the Spirits beneath, whom I seduced With other promises and other vaunts Than to submit, boasting I could subdue The Omnipotent. Ay me! they little know How dearly I abide that boast so vain, Under what torments inwardly I groan, While they adore me on the throne of Hell. With diadem and scepter high advanced, The lower still I fall, only supreme In misery: Such joy ambition finds. But say I could repent, and could obtain, By act of grace, my former state; how soon Would highth recall high thoughts, how soon unsay What feigned submission swore? Ease would recant Vows made in pain, as violent and void. For never can true reconcilement grow, Where wounds of deadly hate have pierced so deep: Which would but lead me to a worse relapse And heavier fall: so should I purchase dear Short intermission bought with double smart. This knows my Punisher; therefore as far From granting he, as I from begging, peace; All hope excluded thus, behold, in stead Mankind created, and for him this world. So farewell, hope; and with hope farewell, fear; Farewell, remorse! all good to me is lost; Evil, be thou my good; by thee at least Divided empire with Heaven's King I hold, By thee, and more than half perhaps will reign; As Man ere long, and this new world, shall know. Thus while he spake, each passion dimmed his face Thrice changed with pale, ire, envy, and despair; Which marred his borrowed visage, and betrayed Him counterfeit, if any eye beheld. For heavenly minds from such distempers foul Are ever clear. Whereof he soon aware, Each perturbation smoothed with outward calm, Artificer of fraud; and was the first That practised falsehood under saintly show, Deep malice to conceal, couched with revenge: Yet not enough had practised to deceive Uriel once warned; whose eye pursued him down The way he went, and on the Assyrian mount Saw him disfigured, more than could befall Spirit of happy sort; his gestures fierce He marked and mad demeanour, then alone, As he supposed, all unobserved, unseen. So on he fares, and to the border comes Of Eden, where delicious Paradise, Now nearer, crowns with her enclosure green, As with a rural mound, the champaign head Of a steep wilderness, whose hairy sides Access denied; and overhead upgrew Insuperable height of loftiest shade, Cedar, and pine, and fir, and branching palm, A sylvan scene, and, as the ranks ascend, Shade above shade, a woody theatre Of stateliest view. Yet higher than their tops The verdurous wall of Paradise upsprung; 00081429 Which to our general sire gave prospect large Into his nether empire neighbouring round. And higher than that wall a circling row Of goodliest trees, loaden with fairest fruit, Blossoms and fruits at once of golden hue, Appeared, with gay enamelled colours mixed: On which the sun more glad impressed his beams Than in fair evening cloud, or humid bow, When God hath showered the earth; so lovely seemed That landskip: And of pure now purer air Meets his approach, and to the heart inspires Vernal delight and joy, able to drive All sadness but despair: Now gentle gales, Fanning their odoriferous wings, dispense Native perfumes, and whisper whence they stole Those balmy spoils. As when to them who fail Beyond the Cape of Hope, and now are past Mozambick, off at sea north-east winds blow Sabean odours from the spicy shore Of Araby the blest; with such delay Well pleased they slack their course, and many a league Cheered with the grateful smell old Ocean smiles: So entertained those odorous sweets the Fiend, Who came their bane; though with them better pleased Than Asmodeus with the fishy fume That drove him, though enamoured, from the spouse Of Tobit's son, and with a vengeance sent From Media post to Egypt, there fast bound. Now to the ascent of that steep savage hill Satan had journeyed on, pensive and slow; But further way found none, so thick entwined, As one continued brake, the undergrowth Of shrubs and tangling bushes had perplexed All path of man or beast that passed that way. One gate there only was, and that looked east On the other side: which when the arch-felon saw, Due entrance he disdained; and, in contempt, At one flight bound high over-leaped all bound Of hill or highest wall, and sheer within Lights on his feet. As when a prowling wolf, Whom hunger drives to seek new haunt for prey, Watching where shepherds pen their flocks at eve In hurdled cotes amid the field secure, Leaps o'er the fence with ease into the fold: Or as a thief, bent to unhoard the cash Of some rich burgher, whose substantial doors, Cross-barred and bolted fast, fear no assault, In at the window climbs, or o'er the tiles: So clomb this first grand thief into God's fold; So since into his church lewd hirelings climb. Thence up he flew, and on the tree of life, The middle tree and highest there that grew, Sat like a cormorant; yet not true life Thereby regained, but sat devising death To them who lived; nor on the virtue thought Of that life-giving plant, but only used For prospect, what well used had been the pledge Of immortality. So little knows Any, but God alone, to value right The good before him, but perverts best things To worst abuse, or to their meanest use. Beneath him with new wonder now he views, To all delight of human sense exposed, In narrow room, Nature's whole wealth, yea more, A Heaven on Earth: For blissful Paradise Of God the garden was, by him in the east Of Eden planted; Eden stretched her line From Auran eastward to the royal towers Of great Seleucia, built by Grecian kings, Of where the sons of Eden long before Dwelt in Telassar: In this pleasant soil His far more pleasant garden God ordained; Out of the fertile ground he caused to grow All trees of noblest kind for sight, smell, taste; And all amid them stood the tree of life, High eminent, blooming ambrosial fruit Of vegetable gold; and next to life, Our death, the tree of knowledge, grew fast by, Knowledge of good bought dear by knowing ill. Southward through Eden went a river large, Nor changed his course, but through the shaggy hill Passed underneath ingulfed; for God had thrown That mountain as his garden-mould high raised Upon the rapid current, which, through veins Of porous earth with kindly thirst up-drawn, Rose a fresh fountain, and with many a rill Watered the garden; thence united fell Down the steep glade, and met the nether flood, Which from his darksome passage now appears, And now, divided into four main streams, Runs diverse, wandering many a famous realm And country, whereof here needs no account; But rather to tell how, if Art could tell, How from that sapphire fount the crisped brooks, Rolling on orient pearl and sands of gold, With mazy errour under pendant shades Ran nectar, visiting each plant, and fed Flowers worthy of Paradise, which not nice Art In beds and curious knots, but Nature boon Poured forth profuse on hill, and dale, and plain, Both where the morning sun first warmly smote The open field, and where the unpierced shade Imbrowned the noontide bowers: Thus was this place A happy rural seat of various view; Groves whose rich trees wept odorous gums and balm, Others whose fruit, burnished with golden rind, Hung amiable, Hesperian fables true, If true, here only, and of delicious taste: Betwixt them lawns, or level downs, and flocks Grazing the tender herb, were interposed, Or palmy hillock; or the flowery lap Of some irriguous valley spread her store, Flowers of all hue, and without thorn the rose: Another side, umbrageous grots and caves Of cool recess, o'er which the mantling vine Lays forth her purple grape, and gently creeps Luxuriant; mean while murmuring waters fall Down the slope hills, dispersed, or in a lake, That to the fringed bank with myrtle crowned Her crystal mirrour holds, unite their streams. The birds their quire apply; airs, vernal airs, Breathing the smell of field and grove, attune The trembling leaves, while universal Pan, Knit with the Graces and the Hours in dance, Led on the eternal Spring. Not that fair field Of Enna, where Proserpine gathering flowers, Herself a fairer flower by gloomy Dis Was gathered, which cost Ceres all that pain To seek her through the world; nor that sweet grove Of Daphne by Orontes, and the inspired Castalian spring, might with this Paradise Of Eden strive; nor that Nyseian isle Girt with the river Triton, where old Cham, Whom Gentiles Ammon call and Libyan Jove, Hid Amalthea, and her florid son Young Bacchus, from his stepdame Rhea's eye; Nor where Abassin kings their issue guard, Mount Amara, though this by some supposed True Paradise under the Ethiop line By Nilus' head, enclosed with shining rock, A whole day's journey high, but wide remote From this Assyrian garden, where the Fiend Saw, undelighted, all delight, all kind Of living creatures, new to sight, and strange Two of far nobler shape, erect and tall, Godlike erect, with native honour clad In naked majesty seemed lords of all: And worthy seemed; for in their looks divine The image of their glorious Maker shone, Truth, wisdom, sanctitude severe and pure, (Severe, but in true filial freedom placed,) Whence true authority in men; though both Not equal, as their sex not equal seemed; For contemplation he and valour formed; For softness she and sweet attractive grace; He for God only, she for God in him: His fair large front and eye sublime declared Absolute rule; and hyacinthine locks Round from his parted forelock manly hung Clustering, but not beneath his shoulders broad: She, as a veil, down to the slender waist Her unadorned golden tresses wore Dishevelled, but in wanton ringlets waved As the vine curls her tendrils, which implied Subjection, but required with gentle sway, And by her yielded, by him best received, Yielded with coy submission, modest pride, And sweet, reluctant, amorous delay. Nor those mysterious parts were then concealed; Then was not guilty shame, dishonest shame Of nature's works, honour dishonourable, Sin-bred, how have ye troubled all mankind With shows instead, mere shows of seeming pure, And banished from man's life his happiest life, Simplicity and spotless innocence! So passed they naked on, nor shunned the sight Of God or Angel; for they thought no ill: So hand in hand they passed, the loveliest pair, That ever since in love's embraces met; Adam the goodliest man of men since born His sons, the fairest of her daughters Eve. Under a tuft of shade that on a green Stood whispering soft, by a fresh fountain side They sat them down; and, after no more toil Of their sweet gardening labour than sufficed To recommend cool Zephyr, and made ease More easy, wholesome thirst and appetite More grateful, to their supper-fruits they fell, Nectarine fruits which the compliant boughs Yielded them, side-long as they sat recline On the soft downy bank damasked with flowers: The savoury pulp they chew, and in the rind, Still as they thirsted, scoop the brimming stream; Nor gentle purpose, nor endearing smiles Wanted, nor youthful dalliance, as beseems Fair couple, linked in happy nuptial league, Alone as they. About them frisking played All beasts of the earth, since wild, and of all chase In wood or wilderness, forest or den; Sporting the lion ramped, and in his paw Dandled the kid; bears, tigers, ounces, pards, Gambolled before them; the unwieldy elephant, To make them mirth, used all his might, and wreathed His?kithetmroboscis; close the serpent sly, Insinuating, wove with Gordian twine His braided train, and of his fatal guile Gave proof unheeded; others on the grass Couched, and now filled with pasture gazing sat, Or bedward ruminating; for the sun, Declined, was hasting now with prone career To the ocean isles, and in the ascending scale Of Heaven the stars that usher evening rose: When Satan still in gaze, as first he stood, Scarce thus at length failed speech recovered sad. O Hell! what do mine eyes with grief behold! Into our room of bliss thus high advanced Creatures of other mould, earth-born perhaps, Not Spirits, yet to heavenly Spirits bright Little inferiour; whom my thoughts pursue With wonder, and could love, so lively shines In them divine resemblance, and such grace The hand that formed them on their shape hath poured. Ah! gentle pair, ye little think how nigh Your change approaches, when all these delights Will vanish, and deliver ye to woe; More woe, the more your taste is now of joy; Happy, but for so happy ill secured Long to continue, and this high seat your Heaven Ill fenced for Heaven to keep out such a foe As now is entered; yet no purposed foe To you, whom I could pity thus forlorn, Though I unpitied: League with you I seek, And mutual amity, so strait, so close, That I with you must dwell, or you with me Henceforth; my dwelling haply may not please, Like this fair Paradise, your sense; yet such Accept your Maker's work; he gave it me, Which I as freely give: Hell shall unfold, To entertain you two, her widest gates, And send forth all her kings; there will be room, Not like these narrow limits, to receive Your numerous offspring; if no better place, Thank him who puts me loth to this revenge On you who wrong me not for him who wronged. And should I at your harmless innocence Melt, as I do, yet publick reason just, Honour and empire with revenge enlarged, By conquering this new world, compels me now To do what else, though damned, I should abhor. So spake the Fiend, and with necessity, The tyrant's plea, excused his devilish deeds. Then from his lofty stand on that high tree Down he alights among the sportful herd Of those four-footed kinds, himself now one, Now other, as their shape served best his end Nearer to view his prey, and, unespied, To mark what of their state he more might learn, By word or action marked. About them round A lion now he stalks with fiery glare; Then as a tiger, who by chance hath spied In some purlieu two gentle fawns at play, Straight couches close, then, rising, changes oft His couchant watch, as one who chose his ground, Whence rushing, he might surest seize them both, Griped in each paw: when, Adam first of men To first of women Eve thus moving speech, Turned him, all ear to hear new utterance flow. Sole partner, and sole part, of all these joys, Dearer thyself than all; needs must the Power That made us, and for us this ample world, Be infinitely good, and of his good As liberal and free as infinite; That raised us from the dust, and placed us here In all this happiness, who at his hand Have nothing merited, nor can perform Aught whereof he hath need; he who requires From us no other service than to keep This one, this easy charge, of all the trees In Paradise that bear delicious fruit So various, not to taste that only tree Of knowledge, planted by the tree of life; So near grows death to life, whate'er death is, Some dreadful thing no doubt; for well thou knowest God hath pronounced it death to taste that tree, The only sign of our obedience left, Among so many signs of power and rule Conferred upon us, and dominion given Over all other creatures that possess Earth, air, and sea. Then let us not think hard One easy prohibition, who enjoy Free leave so large to all things else, and choice Unlimited of manifold delights: But let us ever praise him, and extol His bounty, following our delightful task, To prune these growing plants, and tend these flowers, Which were it toilsome, yet with thee were sweet. To whom thus Eve replied. O thou for whom And from whom I was formed, flesh of thy flesh, And without whom am to no end, my guide And head! what thou hast said is just and right. For we to him indeed all praises owe, And daily thanks; I chiefly, who enjoy So far the happier lot, enjoying thee Pre-eminent by so much odds, while thou Like consort to thyself canst no where find. That day I oft remember, when from sleep I first awaked, and found myself reposed Under a shade on flowers, much wondering where And what I was, whence thither brought, and how. Not distant far from thence a murmuring sound Of waters issued from a cave, and spread Into a liquid plain, then stood unmoved Pure as the expanse of Heaven; I thither went With unexperienced thought, and laid me down On the green bank, to look into the clear Smooth lake, that to me seemed another sky. As I bent down to look, just opposite A shape within the watery gleam appeared, Bending to look on me: I started back, It started back; but pleased I soon returned, Pleased it returned as soon with answering looks Of sympathy and love: There I had fixed Mine eyes till now, and pined with vain desire, Had not a voice thus warned me; 'What thou seest, 'What there thou seest, fair Creature, is thyself; 'With thee it came and goes: but follow me, 'And I will bring thee where no shadow stays 'Thy coming, and thy soft embraces, he 'Whose image thou art; him thou shalt enjoy 'Inseparably thine, to him shalt bear 'Multitudes like thyself, and thence be called 'Mother of human race.' What could I do, But follow straight, invisibly thus led? Till I espied thee, fair indeed and tall, Under a platane; yet methought less fair, Less winning soft, less amiably mild, Than that smooth watery image: Back I turned; Thou following cryedst aloud, 'Return, fair Eve; 'Whom flyest thou? whom thou flyest, of him thou art, 'His flesh, his bone; to give thee being I lent 'Out of my side to thee, nearest my heart, 'Substantial life, to have thee by my side 'Henceforth an individual solace dear; 'Part of my soul I seek thee, and thee claim 'My other half:' With that thy gentle hand Seised mine: I yielded;and from that time see How beauty is excelled by manly grace, And wisdom, which alone is truly fair. So spake our general mother, and with eyes Of conjugal attraction unreproved, And meek surrender, half-embracing leaned On our first father; half her swelling breast Naked met his, under the flowing gold Of her loose tresses hid: he in delight Both of her beauty, and submissive charms, Smiled with superiour love, as Jupiter On Juno smiles, when he impregns the clouds That shed Mayflowers; and pressed her matron lip With kisses pure: Aside the Devil turned For envy; yet with jealous leer malign Eyed them askance, and to himself thus plained. Sight hateful, sight tormenting! thus these two, Imparadised in one another's arms, The happier Eden, shall enjoy their fill Of bliss on bliss; while I to Hell am thrust, Where neither joy nor love, but fierce desire, Among our other torments not the least, Still unfulfilled with pain of longing pines. Yet let me not forget what I have gained From their own mouths: All is not theirs, it seems; One fatal tree there stands, of knowledge called, Forbidden them to taste: Knowledge forbidden Suspicious, reasonless. Why should their Lord Envy them that? Can it be sin to know? Can it be death? And do they only stand By ignorance? Is that their happy state, The proof of their obedience and their faith? O fair foundation laid whereon to build Their ruin! hence I will excite their minds With more desire to know, and to reject Envious commands, invented with design To keep them low, whom knowledge might exalt Equal with Gods: aspiring to be such, They taste and die: What likelier can ensue But first with narrow search I must walk round This garden, and no corner leave unspied; A chance but chance may lead where I may meet Some wandering Spirit of Heaven by fountain side, Or in thick shade retired, from him to draw What further would be learned. Live while ye may, Yet happy pair; enjoy, till I return, Short pleasures, for long woes are to succeed! So saying, his proud step he scornful turned, But with sly circumspection, and began Through wood, through waste, o'er hill, o'er dale, his roam Mean while in utmost longitude, where Heaven With earth and ocean meets, the setting sun Slowly descended, and with right aspect Against the eastern gate of Paradise Levelled his evening rays: It was a rock Of alabaster, piled up to the clouds, Conspicuous far, winding with one ascent Accessible from earth, one entrance high; The rest was craggy cliff, that overhung Still as it rose, impossible to climb. Betwixt these rocky pillars Gabriel sat, Chief of the angelick guards, awaiting night; About him exercised heroick games The unarmed youth of Heaven, but nigh at hand Celestial armoury, shields, helms, and spears, Hung high with diamond flaming, and with gold. Thither came Uriel, gliding through the even On a sun-beam, swift as a shooting star In autumn thwarts the night, when vapours fired Impress the air, and shows the mariner From what point of his compass to beware Impetuous winds: He thus began in haste. Gabriel, to thee thy course by lot hath given Charge and strict watch, that to this happy place No evil thing approach or enter in. This day at highth of noon came to my sphere A Spirit, zealous, as he seemed, to know More of the Almighty's works, and chiefly Man, God's latest image: I described his way Bent all on speed, and marked his aery gait; But in the mount that lies from Eden north, Where he first lighted, soon discerned his looks Alien from Heaven, with passions foul obscured: Mine eye pursued him still, but under shade Lost sight of him: One of the banished crew, I fear, hath ventured from the deep, to raise New troubles; him thy care must be to find. To whom the winged warriour thus returned. Uriel, no wonder if thy perfect sight, Amid the sun's bright circle where thou sitst, See far and wide: In at this gate none pass The vigilance here placed, but such as come Well known from Heaven; and since meridian hour No creature thence: If Spirit of other sort, So minded, have o'er-leaped these earthly bounds On purpose, hard thou knowest it to exclude Spiritual substance with corporeal bar. But if within the circuit of these walks, In whatsoever shape he lurk, of whom Thou tellest, by morrow dawning I shall know. So promised he; and Uriel to his charge Returned on that bright beam, whose point now raised Bore him slope downward to the sun now fallen Beneath the Azores; whether the prime orb, Incredible how swift, had thither rolled Diurnal, or this less volubil earth, By shorter flight to the east, had left him there Arraying with reflected purple and gold The clouds that on his western throne attend. Now came still Evening on, and Twilight gray Had in her sober livery all things clad; Silence accompanied; for beast and bird, They to their grassy couch, these to their nests Were slunk, all but the wakeful nightingale; She all night long her amorous descant sung; Silence was pleased: Now glowed the firmament With living sapphires: Hesperus, that led The starry host, rode brightest, till the moon, Rising in clouded majesty, at length Apparent queen unveiled her peerless light, And o'er the dark her silver mantle threw. When Adam thus to Eve. Fair Consort, the hour Of night, and all things now retired to rest, Mind us of like repose; since God hath set Labour and rest, as day and night, to men Successive; and the timely dew of sleep, Now falling with soft slumbrous weight, inclines Our eye-lids: Other creatures all day long Rove idle, unemployed, and less need rest; Man hath his daily work of body or mind Appointed, which declares his dignity, And the regard of Heaven on all his ways; While other animals unactive range, And of their doings God takes no account. To-morrow, ere fresh morning streak the east With first approach of light, we must be risen, And at our pleasant labour, to reform Yon flowery arbours, yonder alleys green, Our walk at noon, with branches overgrown, That mock our scant manuring, and require More hands than ours to lop their wanton growth: Those blossoms also, and those dropping gums, That lie bestrown, unsightly and unsmooth, Ask riddance, if we mean to tread with ease; Mean while, as Nature wills, night bids us rest. To whom thus Eve, with perfect beauty adorned My Author and Disposer, what thou bidst Unargued I obey: So God ordains; God is thy law, thou mine: To know no more Is woman's happiest knowledge, and her praise. With thee conversing I forget all time; All seasons, and their change, all please alike. Sweet is the breath of Morn, her rising sweet, With charm of earliest birds: pleasant the sun, When first on this delightful land he spreads His orient beams, on herb, tree, fruit, and flower, Glistering with dew; fragrant the fertile earth After soft showers; and sweet the coming on Of grateful Evening mild; then silent Night, With this her solemn bird, and this fair moon, And these the gems of Heaven, her starry train: But neither breath of Morn, when she ascends With charm of earliest birds; nor rising sun On this delightful land; nor herb, fruit, flower, Glistering with dew; nor fragrance after showers; Nor grateful Evening mild; nor silent Night, With this her solemn bird, nor walk by moon, Or glittering star-light, without thee is sweet. But wherefore all night long shine these? for whom This glorious sight, when sleep hath shut all eyes? To whom our general ancestor replied. Daughter of God and Man, accomplished Eve, These have their course to finish round the earth, By morrow evening, and from land to land In order, though to nations yet unborn, Ministring light prepared, they set and rise; Lest total Darkness should by night regain Her old possession, and extinguish life In Nature and all things; which these soft fires Not only enlighten, but with kindly heat Of various influence foment and warm, Temper or nourish, or in part shed down Their stellar virtue on all kinds that grow On earth, made hereby apter to receive Perfection from the sun's more potent ray. These then, though unbeheld in deep of night, Shine not in vain; nor think, though men were none, That Heaven would want spectators, God want praise: Millions of spiritual creatures walk the earth Unseen, both when we wake, and when we sleep: All these with ceaseless praise his works behold Both day and night: How often from the steep Of echoing hill or thicket have we heard Celestial voices to the midnight air, Sole, or responsive each to others note, Singing their great Creator? oft in bands While they keep watch, or nightly rounding walk, With heavenly touch of instrumental sounds In full harmonick number joined, their songs Divide the night, and lift our thoughts to Heaven. Thus talking, hand in hand alone they passed On to their blissful bower: it was a place Chosen by the sovran Planter, when he framed All things to Man's delightful use; the roof Of thickest covert was inwoven shade Laurel and myrtle, and what higher grew Of firm and fragrant leaf; on either side Acanthus, and each odorous bushy shrub, Fenced up the verdant wall; each beauteous flower, Iris all hues, roses, and jessamin, Reared high their flourished heads between, and wrought Mosaick; underfoot the violet, Crocus, and hyacinth, with rich inlay Broidered the ground, more coloured than with stone Of costliest emblem: Other creature here, Bird, beast, insect, or worm, durst enter none, Such was their awe of Man. In shadier bower More sacred and sequestered, though but feigned, Pan or Sylvanus never slept, nor Nymph Nor Faunus haunted. Here, in close recess, With flowers, garlands, and sweet-smelling herbs, Espoused Eve decked first her nuptial bed; And heavenly quires the hymenaean sung, What day the genial Angel to our sire Brought her in naked beauty more adorned, More lovely, than Pandora, whom the Gods Endowed with all their gifts, and O! too like In sad event, when to the unwiser son Of Japhet brought by Hermes, she ensnared Mankind with her fair looks, to be avenged On him who had stole Jove's authentick fire. Thus, at their shady lodge arrived, both stood, Both turned, and under open sky adored The God that made both sky, air, earth, and heaven, Which they beheld, the moon's resplendent globe, And starry pole: Thou also madest the night, Maker Omnipotent, and thou the day, Which we, in our appointed work employed, Have finished, happy in our mutual help And mutual love, the crown of all our bliss Ordained by thee; and this delicious place For us too large, where thy abundance wants Partakers, and uncropt falls to the ground. But thou hast promised from us two a race To fill the earth, who shall with us extol Thy goodness infinite, both when we wake, And when we seek, as now, thy gift of sleep. This said unanimous, and other rites Observing none, but adoration pure Which God likes best, into their inmost bower Handed they went; and, eased the putting off These troublesome disguises which we wear, Straight side by side were laid; nor turned, I ween, Adam from his fair spouse, nor Eve the rites Mysterious of connubial love refused: Whatever hypocrites austerely talk Of purity, and place, and innocence, Defaming as impure what God declares Pure, and commands to some, leaves free to all. Our Maker bids encrease; who bids abstain But our Destroyer, foe to God and Man? Hail, wedded Love, mysterious law, true source Of human offspring, sole propriety In Paradise of all things common else! By thee adulterous Lust was driven from men Among the bestial herds to range; by thee Founded in reason, loyal, just, and pure, Relations dear, and all the charities Of father, son, and brother, first were known. Far be it, that I should write thee sin or blame, Or think thee unbefitting holiest place, Perpetual fountain of domestick sweets, Whose bed is undefiled and chaste pronounced, Present, or past, as saints and patriarchs used. Here Love his golden shafts employs, here lights His constant lamp, and waves his purple wings, Reigns here and revels; not in the bought smile Of harlots, loveless, joyless, unendeared, Casual fruition; nor in court-amours, Mixed dance, or wanton mask, or midnight ball, Or serenate, which the starved lover sings To his proud fair, best quitted with disdain. These, lulled by nightingales, embracing slept, And on their naked limbs the flowery roof Showered roses, which the morn repaired. Sleep on, Blest pair; and O!yet happiest, if ye seek No happier state, and know to know no more. Now had night measured with her shadowy cone Half way up hill this vast sublunar vault, And from their ivory port the Cherubim, Forth issuing at the accustomed hour, stood armed To their night watches in warlike parade; When Gabriel to his next in power thus spake. Uzziel, half these draw off, and coast the south With strictest watch; these other wheel the north; Our circuit meets full west. As flame they part, Half wheeling to the shield, half to the spear. From these, two strong and subtle Spirits he called That near him stood, and gave them thus in charge. Ithuriel and Zephon, with winged speed Search through this garden, leave unsearched no nook; But chiefly where those two fair creatures lodge, Now laid perhaps asleep, secure of harm. This evening from the sun's decline arrived, Who tells of some infernal Spirit seen Hitherward bent (who could have thought?) escaped The bars of Hell, on errand bad no doubt: Such, where ye find, seise fast, and hither bring. So saying, on he led his radiant files, Dazzling the moon; these to the bower direct In search of whom they sought: Him there they found Squat like a toad, close at the ear of Eve, Assaying by his devilish art to reach The organs of her fancy, and with them forge Illusions, as he list, phantasms and dreams; Or if, inspiring venom, he might taint The animal spirits, that from pure blood arise Like gentle breaths from rivers pure, thence raise At least distempered, discontented thoughts, Vain hopes, vain aims, inordinate desires, Blown up with high conceits ingendering pride. Him thus intent Ithuriel with his spear Touched lightly; for no falshood can endure Touch of celestial temper, but returns Of force to its own likeness: Up he starts Discovered and surprised. As when a spark Lights on a heap of nitrous powder, laid Fit for the tun some magazine to store Against a rumoured war, the smutty grain, With sudden blaze diffused, inflames the air; So started up in his own shape the Fiend. Back stept those two fair Angels, half amazed So sudden to behold the grisly king; Yet thus, unmoved with fear, accost him soon. Which of those rebel Spirits adjudged to Hell Comest thou, escaped thy prison? and, transformed, Why sat'st thou like an enemy in wait, Here watching at the head of these that sleep? Know ye not then said Satan, filled with scorn, Know ye not me? ye knew me once no mate For you, there sitting where ye durst not soar: Not to know me argues yourselves unknown, The lowest of your throng; or, if ye know, Why ask ye, and superfluous begin Your message, like to end as much in vain? To whom thus Zephon, answering scorn with scorn. Think not, revolted Spirit, thy shape the same, Or undiminished brightness to be known, As when thou stoodest in Heaven upright and pure; That glory then, when thou no more wast good, Departed from thee; and thou resemblest now Thy sin and place of doom obscure and foul. But come, for thou, be sure, shalt give account To him who sent us, whose charge is to keep This place inviolable, and these from harm. So spake the Cherub; and his grave rebuke, Severe in youthful beauty, added grace Invincible: Abashed the Devil stood, And felt how awful goodness is, and saw Virtue in her shape how lovely; saw, and pined His loss; but chiefly to find here observed His lustre visibly impaired; yet seemed Undaunted. If I must contend, said he, Best with the best, the sender, not the sent, Or all at once; more glory will be won, Or less be lost. Thy fear, said Zephon bold, Will save us trial what the least can do Single against thee wicked, and thence weak. The Fiend replied not, overcome with rage; But, like a proud steed reined, went haughty on, Champing his iron curb: To strive or fly He held it vain; awe from above had quelled His heart, not else dismayed. Now drew they nigh The western point, where those half-rounding guards Just met, and closing stood in squadron joined, A waiting next command. To whom their Chief, Gabriel, from the front thus called aloud. O friends! I hear the tread of nimble feet Hasting this way, and now by glimpse discern Ithuriel and Zephon through the shade; And with them comes a third of regal port, But faded splendour wan; who by his gait And fierce demeanour seems the Prince of Hell, Not likely to part hence without contest; Stand firm, for in his look defiance lours. He scarce had ended, when those two approached, And brief related whom they brought, where found, How busied, in what form and posture couched. To whom with stern regard thus Gabriel spake. Why hast thou, Satan, broke the bounds prescribed To thy transgressions, and disturbed the charge Of others, who approve not to transgress By thy example, but have power and right To question thy bold entrance on this place; Employed, it seems, to violate sleep, and those Whose dwelling God hath planted here in bliss! To whom thus Satan with contemptuous brow. Gabriel? thou hadst in Heaven the esteem of wise, And such I held thee; but this question asked Puts me in doubt. Lives there who loves his pain! Who would not, finding way, break loose from Hell, Though thither doomed! Thou wouldst thyself, no doubt And boldly venture to whatever place Farthest from pain, where thou mightst hope to change Torment with ease, and soonest recompense Dole with delight, which in this place I sought; To thee no reason, who knowest only good, But evil hast not tried: and wilt object His will who bounds us! Let him surer bar His iron gates, if he intends our stay In that dark durance: Thus much what was asked. The rest is true, they found me where they say; But that implies not violence or harm. Thus he in scorn. The warlike Angel moved, Disdainfully half smiling, thus replied. O loss of one in Heaven to judge of wise Since Satan fell, whom folly overthrew, And now returns him from his prison 'scaped, Gravely in doubt whether to hold them wise Or not, who ask what boldness brought him hither Unlicensed from his bounds in Hell prescribed; So wise he judges it to fly from pain However, and to 'scape his punishment! So judge thou still, presumptuous! till the wrath, Which thou incurrest by flying, meet thy flight Sevenfold, and scourge that wisdom back to Hell, Which taught thee yet no better, that no pain Can equal anger infinite provoked. But wherefore thou alone? wherefore with thee Came not all hell broke loose? or thou than they Less hardy to endure? Courageous Chief! The first in flight from pain! hadst thou alleged To thy deserted host this cause of flight, Thou surely hadst not come sole fugitive. To which the Fiend thus answered, frowning stern. Not that I less endure, or shrink from pain, Insulting Angel! well thou knowest I stood Thy fiercest, when in battle to thy aid The blasting vollied thunder made all speed, And seconded thy else not dreaded spear. But still thy words at random, as before, Argue thy inexperience what behoves From hard assays and ill successes past A faithful leader, not to hazard all Through ways of danger by himself untried: I, therefore, I alone first undertook To wing the desolate abyss, and spy This new created world, whereof in Hell Fame is not silent, here in hope to find Better abode, and my afflicted Powers To settle here on earth, or in mid air; Though for possession put to try once more What thou and thy gay legions dare against; Whose easier business were to serve their Lord High up in Heaven, with songs to hymn his throne, And practised distances to cringe, not fight, To whom the warriour Angel soon replied. To say and straight unsay, pretending first Wise to fly pain, professing next the spy, Argues no leader but a liear traced, Satan, and couldst thou faithful add? O name, O sacred name of faithfulness profaned! Faithful to whom? to thy rebellious crew? Army of Fiends, fit body to fit head. Was this your discipline and faith engaged, Your military obedience, to dissolve Allegiance to the acknowledged Power supreme? And thou, sly hypocrite, who now wouldst seem Patron of liberty, who more than thou Once fawned, and cringed, and servily adored Heaven's awful Monarch? wherefore, but in hope To dispossess him, and thyself to reign? But mark what I arreed thee now, Avant; Fly neither whence thou fledst! If from this hour Within these hallowed limits thou appear, Back to the infernal pit I drag thee chained, And seal thee so, as henceforth not to scorn The facile gates of Hell too slightly barred. So threatened he; but Satan to no threats Gave heed, but waxing more in rage replied. Then when I am thy captive talk of chains, Proud limitary Cherub! but ere then Far heavier load thyself expect to feel From my prevailing arm, though Heaven's King Ride on thy wings, and thou with thy compeers, Us'd to the yoke, drawest his triumphant wheels In progress through the road of Heaven star-paved. While thus he spake, the angelick squadron bright Turned fiery red, sharpening in mooned horns Their phalanx, and began to hem him round With ported spears, as thick as when a field Of Ceres ripe for harvest waving bends Her bearded grove of ears, which way the wind Sways them; the careful plowman doubting stands, Left on the threshing floor his hopeless sheaves Prove chaff. On the other side, Satan, alarmed, Collecting all his might, dilated stood, Like Teneriff or Atlas, unremoved: His stature reached the sky, and on his crest Sat Horrour plumed; nor wanted in his grasp What seemed both spear and shield: Now dreadful deeds Might have ensued, nor only Paradise In this commotion, but the starry cope Of Heaven perhaps, or all the elements At least had gone to wrack, disturbed and torn With violence of this conflict, had not soon The Eternal, to prevent such horrid fray, Hung forth in Heaven his golden scales, yet seen Betwixt Astrea and the Scorpion sign, Wherein all things created first he weighed, The pendulous round earth with balanced air In counterpoise, now ponders all events, Battles and realms: In these he put two weights, The sequel each of parting and of fight: The latter quick up flew, and kicked the beam, Which Gabriel spying, thus bespake the Fiend. Satan, I know thy strength, and thou knowest mine; Neither our own, but given: What folly then To boast what arms can do? since thine no more Than Heaven permits, nor mine, though doubled now To trample thee as mire: For proof look up, And read thy lot in yon celestial sign; Where thou art weighed, and shown how light, how weak, If thou resist. The Fiend looked up, and knew His mounted scale aloft: Nor more;but fled Murmuring, and with him fled the shades of night. Book V Now Morn, her rosy steps in the eastern clime Advancing, sowed the earth with orient pearl, When Adam waked, so customed; for his sleep Was aery-light, from pure digestion bred, And temperate vapours bland, which the only sound Of leaves and fuming rills, Aurora's fan, Lightly dispersed, and the shrill matin song Of birds on every bough; so much the more His wonder was to find unwakened Eve With tresses discomposed, and glowing cheek, As through unquiet rest: He, on his side Leaning half raised, with looks of cordial love Hung over her enamoured, and beheld Beauty, which, whether waking or asleep, Shot forth peculiar graces; then with voice Mild, as when Zephyrus on Flora breathes, Her hand soft touching, whispered thus. Awake, My fairest, my espoused, my latest found, Heaven's last best gift, my ever new delight! Awake: The morning shines, and the fresh field Calls us; we lose the prime, to mark how spring Our tender plants, how blows the citron grove, What drops the myrrh, and what the balmy reed, How nature paints her colours, how the bee Sits on the bloom extracting liquid sweet. Such whispering waked her, but with startled eye On Adam, whom embracing, thus she spake. O sole in whom my thoughts find all repose, My glory, my perfection! glad I see Thy face, and morn returned; for I this night (Such night till this I never passed) have dreamed, If dreamed, not, as I oft am wont, of thee, Works of day past, or morrow's next design, But of offence and trouble, which my mind Knew never till this irksome night: Methought, Close at mine ear one called me forth to walk With gentle voice; I thought it thine: It said, 'Why sleepest thou, Eve? now is the pleasant time, 'The cool, the silent, save where silence yields 'To the night-warbling bird, that now awake 'Tunes sweetest his love-laboured song; now reigns 'Full-orbed the moon, and with more pleasing light 'Shadowy sets off the face of things; in vain, 'If none regard; Heaven wakes with all his eyes, 'Whom to behold but thee, Nature's desire? 'In whose sight all things joy, with ravishment 'Attracted by thy beauty still to gaze.' I rose as at thy call, but found thee not; To find thee I directed then my walk; And on, methought, alone I passed through ways That brought me on a sudden to the tree Of interdicted knowledge: fair it seemed, Much fairer to my fancy than by day: And, as I wondering looked, beside it stood One shaped and winged like one of those from Heaven By us oft seen; his dewy locks distilled Ambrosia; on that tree he also gazed; And 'O fair plant,' said he, 'with fruit surcharged, 'Deigns none to ease thy load, and taste thy sweet, 'Nor God, nor Man? Is knowledge so despised? 'Or envy, or what reserve forbids to taste? 'Forbid who will, none shall from me withhold 'Longer thy offered good; why else set here? This said, he paused not, but with venturous arm He plucked, he tasted; me damp horrour chilled At such bold words vouched with a deed so bold: But he thus, overjoyed; 'O fruit divine, 'Sweet of thyself, but much more sweet thus cropt, 'Forbidden here, it seems, as only fit 'For Gods, yet able to make Gods of Men: 'And why not Gods of Men; since good, the more 'Communicated, more abundant grows, 'The author not impaired, but honoured more? 'Here, happy creature, fair angelick Eve! 'Partake thou also; happy though thou art, 'Happier thou mayest be, worthier canst not be: 'Taste this, and be henceforth among the Gods 'Thyself a Goddess, not to earth confined, 'But sometimes in the air, as we, sometimes 'Ascend to Heaven, by merit thine, and see 'What life the Gods live there, and such live thou!' So saying, he drew nigh, and to me held, Even to my mouth of that same fruit held part Which he had plucked; the pleasant savoury smell So quickened appetite, that I, methought, Could not but taste. Forthwith up to the clouds With him I flew, and underneath beheld The earth outstretched immense, a prospect wide And various: Wondering at my flight and change To this high exaltation; suddenly My guide was gone, and I, methought, sunk down, And fell asleep; but O, how glad I waked To find this but a dream! Thus Eve her night Related, and thus Adam answered sad. Best image of myself, and dearer half, The trouble of thy thoughts this night in sleep Affects me equally; nor can I like This uncouth dream, of evil sprung, I fear; Yet evil whence? in thee can harbour none, Created pure. But know that in the soul Are many lesser faculties, that serve Reason as chief; among these Fancy next Her office holds; of all external things Which the five watchful senses represent, She forms imaginations, aery shapes, Which Reason, joining or disjoining, frames All what we affirm or what deny, and call Our knowledge or opinion; then retires Into her private cell, when nature rests. Oft in her absence mimick Fancy wakes To imitate her; but, misjoining shapes, Wild work produces oft, and most in dreams; Ill matching words and deeds long past or late. Some such resemblances, methinks, I find Of our last evening's talk, in this thy dream, But with addition strange; yet be not sad. Evil into the mind of God or Man May come and go, so unreproved, and leave No spot or blame behind: Which gives me hope That what in sleep thou didst abhor to dream, Waking thou never will consent to do. Be not disheartened then, nor cloud those looks, That wont to be more cheerful and serene, Than when fair morning first smiles on the world; And let us to our fresh employments rise Among the groves, the fountains, and the flowers That open now their choisest bosomed smells, Reserved from night, and kept for thee in store. So cheered he his fair spouse, and she was cheered; But silently a gentle tear let fall From either eye, and wiped them with her hair; Two other precious drops that ready stood, Each in their crystal sluice, he ere they fell Kissed, as the gracious signs of sweet remorse And pious awe, that feared to have offended. So all was cleared, and to the field they haste. But first, from under shady arborous roof Soon as they forth were come to open sight Of day-spring, and the sun, who, scarce up-risen, With wheels yet hovering o'er the ocean-brim, Shot parallel to the earth his dewy ray, Discovering in wide landskip all the east Of Paradise and Eden's happy plains, Lowly they bowed adoring, and began Their orisons, each morning duly paid In various style; for neither various style Nor holy rapture wanted they to praise Their Maker, in fit strains pronounced, or sung Unmeditated; such prompt eloquence Flowed from their lips, in prose or numerous verse, More tuneable than needed lute or harp To add more sweetness; and they thus began. These are thy glorious works, Parent of good, Almighty! Thine this universal frame, Thus wonderous fair; Thyself how wonderous then! Unspeakable, who sitst above these heavens To us invisible, or dimly seen In these thy lowest works; yet these declare Thy goodness beyond thought, and power divine. Speak, ye who best can tell, ye sons of light, Angels; for ye behold him, and with songs And choral symphonies, day without night, Circle his throne rejoicing; ye in Heaven On Earth join all ye Creatures to extol Him first, him last, him midst, and without end. Fairest of stars, last in the train of night, If better thou belong not to the dawn, Sure pledge of day, that crownest the smiling morn With thy bright circlet, praise him in thy sphere, While day arises, that sweet hour of prime. Thou Sun, of this great world both eye and soul, Acknowledge him thy greater; sound his praise In thy eternal course, both when thou climbest, And when high noon hast gained, and when thou fallest. Moon, that now meetest the orient sun, now flyest, With the fixed Stars, fixed in their orb that flies; And ye five other wandering Fires, that move In mystick dance not without song, resound His praise, who out of darkness called up light. Air, and ye Elements, the eldest birth Of Nature's womb, that in quaternion run Perpetual circle, multiform; and mix And nourish all things; let your ceaseless change Vary to our great Maker still new praise. Ye Mists and Exhalations, that now rise From hill or steaming lake, dusky or gray, Till the sun paint your fleecy skirts with gold, In honour to the world's great Author rise; Whether to deck with clouds the uncoloured sky, Or wet the thirsty earth with falling showers, Rising or falling still advance his praise. His praise, ye Winds, that from four quarters blow, Breathe soft or loud; and, wave your tops, ye Pines, With every plant, in sign of worship wave. Fountains, and ye that warble, as ye flow, Melodious murmurs, warbling tune his praise. Join voices, all ye living Souls: Ye Birds, That singing up to Heaven-gate ascend, Bear on your wings and in your notes his praise. Ye that in waters glide, and ye that walk The earth, and stately tread, or lowly creep; Witness if I be silent, morn or even, To hill, or valley, fountain, or fresh shade, Made vocal by my song, and taught his praise. Hail, universal Lord, be bounteous still To give us only good; and if the night Have gathered aught of evil, or concealed, Disperse it, as now light dispels the dark! So prayed they innocent, and to their thoughts Firm peace recovered soon, and wonted calm. On to their morning's rural work they haste, Among sweet dews and flowers; where any row Of fruit-trees over-woody reached too far Their pampered boughs, and needed hands to check Fruitless embraces: or they led the vine To wed her elm; she, spoused, about him twines Her marriageable arms, and with him brings Her dower, the adopted clusters, to adorn His barren leaves. Them thus employed beheld With pity Heaven's high King, and to him called Raphael, the sociable Spirit, that deigned To travel with Tobias, and secured His marriage with the seventimes-wedded maid. Raphael, said he, thou hearest what stir on Earth Satan, from Hell 'scaped through the darksome gulf, Hath raised in Paradise; and how disturbed This night the human pair; how he designs In them at once to ruin all mankind. Go therefore, half this day as friend with friend Converse with Adam, in what bower or shade Thou findest him from the heat of noon retired, To respite his day-labour with repast, Or with repose; and such discourse bring on, As may advise him of his happy state, Happiness in his power left free to will, Left to his own free will, his will though free, Yet mutable; whence warn him to beware He swerve not, too secure: Tell him withal His danger, and from whom; what enemy, Late fallen himself from Heaven, is plotting now The fall of others from like state of bliss; By violence? no, for that shall be withstood; But by deceit and lies: This let him know, Lest, wilfully transgressing, he pretend Surprisal, unadmonished, unforewarned. So spake the Eternal Father, and fulfilled All justice: Nor delayed the winged Saint After his charge received; but from among Thousand celestial Ardours, where he stood Veiled with his gorgeous wings, up springing light, Flew through the midst of Heaven; the angelick quires, On each hand parting, to his speed gave way Through all the empyreal road; till, at the gate Of Heaven arrived, the gate self-opened wide On golden hinges turning, as by work Divine the sovran Architect had framed. From hence no cloud, or, to obstruct his sight, Star interposed, however small he sees, Not unconformed to other shining globes, Earth, and the garden of God, with cedars crowned Above all hills. As when by night the glass Of Galileo, less assured, observes Imagined lands and regions in the moon: Or pilot, from amidst the Cyclades Delos or Samos first appearing, kens A cloudy spot. Down thither prone in flight He speeds, and through the vast ethereal sky Sails between worlds and worlds, with steady wing Now on the polar winds, then with quick fan Winnows the buxom air; till, within soar Of towering eagles, to all the fowls he seems A phoenix, gazed by all as that sole bird, When, to enshrine his reliques in the Sun's Bright temple, to Egyptian Thebes he flies. At once on the eastern cliff of Paradise He lights, and to his proper shape returns A Seraph winged: Six wings he wore, to shade His lineaments divine; the pair that clad Each shoulder broad, came mantling o'er his breast With regal ornament; the middle pair Girt like a starry zone his waist, and round Skirted his loins and thighs with downy gold And colours dipt in Heaven; the third his feet Shadowed from either heel with feathered mail, Sky-tinctured grain. Like Maia's son he stood, And shook his plumes, that heavenly fragrance filled The circuit wide. Straight knew him all the bands Of Angels under watch; and to his state, And to his message high, in honour rise; For on some message high they guessed him bound. Their glittering tents he passed, and now is come Into the blissful field, through groves of myrrh, And flowering odours, cassia, nard, and balm; A wilderness of sweets; for Nature here Wantoned as in her prime, and played at will Her virgin fancies pouring forth more sweet, Wild above rule or art, enormous bliss. Him through the spicy forest onward come Adam discerned, as in the door he sat Of his cool bower, while now the mounted sun Shot down direct his fervid rays to warm Earth's inmost womb, more warmth than Adam needs: And Eve within, due at her hour prepared For dinner savoury fruits, of taste to please True appetite, and not disrelish thirst Of nectarous draughts between, from milky stream, Berry or grape: To whom thus Adam called. Haste hither, Eve, and worth thy sight behold Eastward among those trees, what glorious shape Comes this way moving; seems another morn Risen on mid-noon; some great behest from Heaven To us perhaps he brings, and will vouchsafe This day to be our guest. But go with speed, And, what thy stores contain, bring forth, and pour Abundance, fit to honour and receive Our heavenly stranger: Well we may afford Our givers their own gifts, and large bestow From large bestowed, where Nature multiplies Her fertile growth, and by disburthening grows More fruitful, which instructs us not to spare. To whom thus Eve. Adam, earth's hallowed mould, Of God inspired! small store will serve, where store, All seasons, ripe for use hangs on the stalk; Save what by frugal storing firmness gains To nourish, and superfluous moist consumes: But I will haste, and from each bough and brake, Each plant and juciest gourd, will pluck such choice To entertain our Angel-guest, as he Beholding shall confess, that here on Earth God hath dispensed his bounties as in Heaven. So saying, with dispatchful looks in haste She turns, on hospitable thoughts intent What choice to choose for delicacy best, What order, so contrived as not to mix Tastes, not well joined, inelegant, but bring Taste after taste upheld with kindliest change; Bestirs her then, and from each tender stalk Whatever Earth, all-bearing mother, yields In India East or West, or middle shore In Pontus or the Punick coast, or where Alcinous reigned, fruit of all kinds, in coat Rough, or smooth rind, or bearded husk, or shell, She gathers, tribute large, and on the board Heaps with unsparing hand; for drink the grape She crushes, inoffensive must, and meaths From many a berry, and from sweet kernels pressed She tempers dulcet creams; nor these to hold Wants her fit vessels pure; then strows the ground With rose and odours from the shrub unfumed. Mean while our primitive great sire, to meet His God-like guest, walks forth, without more train Accompanied than with his own complete Perfections; in himself was all his state, More solemn than the tedious pomp that waits On princes, when their rich retinue long Of horses led, and grooms besmeared with gold, Dazzles the croud, and sets them all agape. Nearer his presence Adam, though not awed, Yet with submiss approach and reverence meek, As to a superiour nature bowing low, Thus said. Native of Heaven, for other place None can than Heaven such glorious shape contain; Since, by descending from the thrones above, Those happy places thou hast deigned a while To want, and honour these, vouchsafe with us Two only, who yet by sovran gift possess This spacious ground, in yonder shady bower To rest; and what the garden choicest bears To sit and taste, till this meridian heat Be over, and the sun more cool decline. Whom thus the angelick Virtue answered mild. Adam, I therefore came; nor art thou such Created, or such place hast here to dwell, As may not oft invite, though Spirits of Heaven, To visit thee; lead on then where thy bower O'ershades; for these mid-hours, till evening rise, I have at will. So to the sylvan lodge They came, that like Pomona's arbour smiled, With flowerets decked, and fragrant smells; but Eve, Undecked save with herself, more lovely fair Than Wood-Nymph, or the fairest Goddess feigned Of three that in mount Ida naked strove, Stood to entertain her guest from Heaven; no veil She needed, virtue-proof; no thought infirm Altered her cheek. On whom the Angel Hail Bestowed, the holy salutation used Long after to blest Mary, second Eve. Hail, Mother of Mankind, whose fruitful womb Shall fill the world more numerous with thy sons, Than with these various fruits the trees of God Have heaped this table!--Raised of grassy turf Their table was, and mossy seats had round, And on her ample square from side to side All autumn piled, though spring and autumn here Danced hand in hand. A while discourse they hold; No fear lest dinner cool; when thus began Our author. Heavenly stranger, please to taste These bounties, which our Nourisher, from whom All perfect good, unmeasured out, descends, To us for food and for delight hath caused The earth to yield; unsavoury food perhaps To spiritual natures; only this I know, That one celestial Father gives to all. To whom the Angel. Therefore what he gives (Whose praise be ever sung) to Man in part Spiritual, may of purest Spirits be found No ingrateful food: And food alike those pure Intelligential substances require, As doth your rational; and both contain Within them every lower faculty Of sense, whereby they hear, see, smell, touch, taste, Tasting concoct, digest, assimilate, And corporeal to incorporeal turn. For know, whatever was created, needs To be sustained and fed: Of elements The grosser feeds the purer, earth the sea, Earth and the sea feed air, the air those fires Ethereal, and as lowest first the moon; Whence in her visage round those spots, unpurged Vapours not yet into her substance turned. Nor doth the moon no nourishment exhale From her moist continent to higher orbs. The sun that light imparts to all, receives From all his alimental recompence In humid exhalations, and at even Sups with the ocean. Though in Heaven the trees Of life ambrosial fruitage bear, and vines Yield nectar; though from off the boughs each morn We brush mellifluous dews, and find the ground Covered with pearly grain: Yet God hath here Varied his bounty so with new delights, As may compare with Heaven; and to taste Think not I shall be nice. So down they sat, And to their viands fell; nor seemingly The Angel, nor in mist, the common gloss Of Theologians; but with keen dispatch Of real hunger, and concoctive heat To transubstantiate: What redounds, transpires Through Spirits with ease; nor wonder;if by fire Of sooty coal the empirick alchemist Can turn, or holds it possible to turn, Metals of drossiest ore to perfect gold, As from the mine. Mean while at table Eve Ministered naked, and their flowing cups With pleasant liquours crowned: O innocence Deserving Paradise! if ever, then, Then had the sons of God excuse to have been Enamoured at that sight; but in those hearts Love unlibidinous reigned, nor jealousy Was understood, the injured lover's hell. Thus when with meats and drinks they had sufficed, Not burdened nature, sudden mind arose In Adam, not to let the occasion pass Given him by this great conference to know Of things above his world, and of their being Who dwell in Heaven, whose excellence he saw Transcend his own so far; whose radiant forms, Divine effulgence, whose high power, so far Exceeded human; and his wary speech Thus to the empyreal minister he framed. Inhabitant with God, now know I well Thy favour, in this honour done to Man; Under whose lowly roof thou hast vouchsafed To enter, and these earthly fruits to taste, Food not of Angels, yet accepted so, As that more willingly thou couldst not seem At Heaven's high feasts to have fed: yet what compare To whom the winged Hierarch replied. O Adam, One Almighty is, from whom All things proceed, and up to him return, If not depraved from good, created all Such to perfection, one first matter all, Endued with various forms, various degrees Of substance, and, in things that live, of life; But more refined, more spiritous, and pure, As nearer to him placed, or nearer tending Each in their several active spheres assigned, Till body up to spirit work, in bounds Proportioned to each kind. So from the root Springs lighter the green stalk, from thence the leaves More aery, last the bright consummate flower Spirits odorous breathes: flowers and their fruit, Man's nourishment, by gradual scale sublimed, To vital spirits aspire, to animal, To intellectual; give both life and sense, Fancy and understanding; whence the soul Reason receives, and reason is her being, Discursive, or intuitive; discourse Is oftest yours, the latter most is ours, Differing but in degree, of kind the same. Wonder not then, what God for you saw good If I refuse not, but convert, as you To proper substance. Time may come, when Men With Angels may participate, and find No inconvenient diet, nor too light fare; And from these corporal nutriments perhaps Your bodies may at last turn all to spirit, Improved by tract of time, and, winged, ascend Ethereal, as we; or may, at choice, Here or in heavenly Paradises dwell; If ye be found obedient, and retain Unalterably firm his love entire, Whose progeny you are. Mean while enjoy Your fill what happiness this happy state Can comprehend, incapable of more. To whom the patriarch of mankind replied. O favourable Spirit, propitious guest, Well hast thou taught the way that might direct Our knowledge, and the scale of nature set From center to circumference; whereon, In contemplation of created things, By steps we may ascend to God. But say, What meant that caution joined, If ye be found Obedient? Can we want obedience then To him, or possibly his love desert, Who formed us from the dust and placed us here Full to the utmost measure of what bliss Human desires can seek or apprehend? To whom the Angel. Son of Heaven and Earth, Attend! That thou art happy, owe to God; That thou continuest such, owe to thyself, That is, to thy obedience; therein stand. This was that caution given thee; be advised. God made thee perfect, not immutable; And good he made thee, but to persevere He left it in thy power; ordained thy will By nature free, not over-ruled by fate Inextricable, or strict necessity: Our voluntary service he requires, Not our necessitated; such with him Finds no acceptance, nor can find; for how Can hearts, not free, be tried whether they serve Willing or no, who will but what they must By destiny, and can no other choose? Myself, and all the angelick host, that stand In sight of God, enthroned, our happy state Hold, as you yours, while our obedience holds; On other surety none: Freely we serve, Because we freely love, as in our will To love or not; in this we stand or fall: And some are fallen, to disobedience fallen, And so from Heaven to deepest Hell; O fall From what high state of bliss, into what woe! To whom our great progenitor. Thy words Attentive, and with more delighted ear, Divine instructer, I have heard, than when Cherubick songs by night from neighbouring hills Aereal musick send: Nor knew I not To be both will and deed created free; Yet that we never shall forget to love Our Maker, and obey him whose command Single is yet so just, my constant thoughts Assured me, and still assure: Though what thou tellest Hath passed in Heaven, some doubt within me move, But more desire to hear, if thou consent, The full relation, which must needs be strange, Worthy of sacred silence to be heard; And we have yet large day, for scarce the sun Hath finished half his journey, and scarce begins His other half in the great zone of Heaven. Thus Adam made request; and Raphael, After short pause assenting, thus began. High matter thou enjoinest me, O prime of men, Sad task and hard: For how shall I relate To human sense the invisible exploits Of warring Spirits? how, without remorse, The ruin of so many glorious once And perfect while they stood? how last unfold The secrets of another world, perhaps Not lawful to reveal? yet for thy good This is dispensed; and what surmounts the reach Of human sense, I shall delineate so, By likening spiritual to corporal forms, As may express them best; though what if Earth Be but a shadow of Heaven, and things therein Each to other like, more than on earth is thought? As yet this world was not, and Chaos wild Reigned where these Heavens now roll, where Earth now rests Upon her center poised; when on a day (For time, though in eternity, applied To motion, measures all things durable By present, past, and future,) on such day As Heaven's great year brings forth, the empyreal host Of Angels by imperial summons called, Innumerable before the Almighty's throne Forthwith, from all the ends of Heaven, appeared Under their Hierarchs in orders bright: Ten thousand thousand ensigns high advanced, Standards and gonfalons 'twixt van and rear Stream in the air, and for distinction serve Of hierarchies, of orders, and degrees; Or in their glittering tissues bear imblazed Holy memorials, acts of zeal and love Recorded eminent. Thus when in orbs Of circuit inexpressible they stood, Orb within orb, the Father Infinite, By whom in bliss imbosomed sat the Son, Amidst as from a flaming mount, whose top Brightness had made invisible, thus spake. Hear, all ye Angels, progeny of light, Thrones, Dominations, Princedoms, Virtues, Powers; Hear my decree, which unrevoked shall stand. This day I have begot whom I declare My only Son, and on this holy hill Him have anointed, whom ye now behold At my right hand; your head I him appoint; And by myself have sworn, to him shall bow All knees in Heaven, and shall confess him Lord: Under his great vice-gerent reign abide United, as one individual soul, For ever happy: Him who disobeys, Me disobeys, breaks union, and that day, Cast out from God and blessed vision, falls Into utter darkness, deep ingulfed, his place Ordained without redemption, without end. So spake the Omnipotent, and with his words All seemed well pleased; all seemed, but were not all. That day, as other solemn days, they spent In song and dance about the sacred hill; Mystical dance, which yonder starry sphere Of planets, and of fixed, in all her wheels Resembles nearest, mazes intricate, Eccentrick, intervolved, yet regular Then most, when most irregular they seem; And in their motions harmony divine So smooths her charming tones, that God's own ear Listens delighted. Evening now approached, (For we have also our evening and our morn, We ours for change delectable, not need;) Forthwith from dance to sweet repast they turn Desirous; all in circles as they stood, Tables are set, and on a sudden piled With Angels food, and rubied nectar flows In pearl, in diamond, and massy gold, Fruit of delicious vines, the growth of Heaven. On flowers reposed, and with fresh flowerets crowned, They eat, they drink, and in communion sweet Quaff immortality and joy, secure Of surfeit, where full measure only bounds Excess, before the all-bounteous King, who showered With copious hand, rejoicing in their joy. Now when ambrosial night with clouds exhaled From that high mount of God, whence light and shade Spring both, the face of brightest Heaven had changed To grateful twilight, (for night comes not there In darker veil,) and roseat dews disposed All but the unsleeping eyes of God to rest; Wide over all the plain, and wider far Than all this globous earth in plain outspread, (Such are the courts of God) the angelick throng, Dispersed in bands and files, their camp extend By living streams among the trees of life, Pavilions numberless, and sudden reared, Celestial tabernacles, where they slept Fanned with cool winds; save those, who, in their course, Melodious hymns about the sovran throne Alternate all night long: but not so waked Satan; so call him now, his former name Is heard no more in Heaven; he of the first, If not the first Arch-Angel, great in power, In favour and pre-eminence, yet fraught With envy against the Son of God, that day Honoured by his great Father, and proclaimed Messiah King anointed, could not bear Through pride that sight, and thought himself impaired. Deep malice thence conceiving and disdain, Soon as midnight brought on the dusky hour Friendliest to sleep and silence, he resolved With all his legions to dislodge, and leave Unworshipt, unobeyed, the throne supreme, Contemptuous; and his next subordinate Awakening, thus to him in secret spake. Sleepest thou, Companion dear? What sleep can close Thy eye-lids? and rememberest what decree Of yesterday, so late hath passed the lips Of Heaven's Almighty. Thou to me thy thoughts Wast wont, I mine to thee was wont to impart; Both waking we were one; how then can now Thy sleep dissent? New laws thou seest imposed; New laws from him who reigns, new minds may raise In us who serve, new counsels to debate What doubtful may ensue: More in this place To utter is not safe. Assemble thou Of all those myriads which we lead the chief; Tell them, that by command, ere yet dim night Her shadowy cloud withdraws, I am to haste, And all who under me their banners wave, Homeward, with flying march, where we possess The quarters of the north; there to prepare Fit entertainment to receive our King, The great Messiah, and his new commands, Who speedily through all the hierarchies Intends to pass triumphant, and give laws. So spake the false Arch-Angel, and infused Bad influence into the unwary breast Of his associate: He together calls, Or several one by one, the regent Powers, Under him Regent; tells, as he was taught, That the Most High commanding, now ere night, Now ere dim night had disincumbered Heaven, The great hierarchal standard was to move; Tells the suggested cause, and casts between Ambiguous words and jealousies, to sound Or taint integrity: But all obeyed The wonted signal, and superiour voice Of their great Potentate; for great indeed His name, and high was his degree in Heaven; His countenance, as the morning-star that guides The starry flock, allured them, and with lies Drew after him the third part of Heaven's host. Mean while the Eternal eye, whose sight discerns Abstrusest thoughts, from forth his holy mount, And from within the golden lamps that burn Nightly before him, saw without their light Rebellion rising; saw in whom, how spread Among the sons of morn, what multitudes Were banded to oppose his high decree; And, smiling, to his only Son thus said. Son, thou in whom my glory I behold In full resplendence, Heir of all my might, Nearly it now concerns us to be sure Of our Omnipotence, and with what arms We mean to hold what anciently we claim Of deity or empire: Such a foe Is rising, who intends to erect his throne Equal to ours, throughout the spacious north; Nor so content, hath in his thought to try In battle, what our power is, or our right. Let us advise, and to this hazard draw With speed what force is left, and all employ In our defence; lest unawares we lose This our high place, our sanctuary, our hill. To whom the Son with calm aspect and clear, Lightning divine, ineffable, serene, Made answer. Mighty Father, thou thy foes Justly hast in derision, and, secure, Laughest at their vain designs and tumults vain, Matter to me of glory, whom their hate Illustrates, when they see all regal power Given me to quell their pride, and in event Know whether I be dextrous to subdue Thy rebels, or be found the worst in Heaven. So spake the Son; but Satan, with his Powers, Far was advanced on winged speed; an host Innumerable as the stars of night, Or stars of morning, dew-drops, which the sun Impearls on every leaf and every flower. Regions they passed, the mighty regencies Of Seraphim, and Potentates, and Thrones, In their triple degrees; regions to which All thy dominion, Adam, is no more Than what this garden is to all the earth, And all the sea, from one entire globose Stretched into longitude; which having passed, At length into the limits of the north They came; and Satan to his royal seat High on a hill, far blazing, as a mount Raised on a mount, with pyramids and towers From diamond quarries hewn, and rocks of gold; The palace of great Lucifer, (so call That structure in the dialect of men Interpreted,) which not long after, he Affecting all equality with God, In imitation of that mount whereon Messiah was declared in sight of Heaven, The Mountain of the Congregation called; For thither he assembled all his train, Pretending so commanded to consult About the great reception of their King, Thither to come, and with calumnious art Of counterfeited truth thus held their ears. Thrones, Dominations, Princedoms, Virtues, Powers; If these magnifick titles yet remain Not merely titular, since by decree Another now hath to himself engrossed All power, and us eclipsed under the name Of King anointed, for whom all this haste Of midnight-march, and hurried meeting here, This only to consult how we may best, With what may be devised of honours new, Receive him coming to receive from us Knee-tribute yet unpaid, prostration vile! Too much to one! but double how endured, To one, and to his image now proclaimed? But what if better counsels might erect Our minds, and teach us to cast off this yoke? Will ye submit your necks, and choose to bend The supple knee? Ye will not, if I trust To know ye right, or if ye know yourselves Natives and sons of Heaven possessed before By none; and if not equal all, yet free, Equally free; for orders and degrees Jar not with liberty, but well consist. Who can in reason then, or right, assume Monarchy over such as live by right His equals, if in power and splendour less, In freedom equal? or can introduce Law and edict on us, who without law Err not? much less for this to be our Lord, And look for adoration, to the abuse Of those imperial titles, which assert Our being ordained to govern, not to serve. Thus far his bold discourse without controul Had audience; when among the Seraphim Abdiel, than whom none with more zeal adored The Deity, and divine commands obeyed, Stood up, and in a flame of zeal severe The current of his fury thus opposed. O argument blasphemous, false, and proud! Words which no ear ever to hear in Heaven Expected, least of all from thee, Ingrate, In place thyself so high above thy peers. Canst thou with impious obloquy condemn The just decree of God, pronounced and sworn, That to his only Son, by right endued With regal scepter, every soul in Heaven Shall bend the knee, and in that honour due Confess him rightful King? unjust, thou sayest, Flatly unjust, to bind with laws the free, And equal over equals to let reign, One over all with unsucceeded power. Shalt thou give law to God? shalt thou dispute With him the points of liberty, who made Thee what thou art, and formed the Powers of Heaven Such as he pleased, and circumscribed their being? Yet, by experience taught, we know how good, And of our good and of our dignity How provident he is; how far from thought To make us less, bent rather to exalt Our happy state, under one head more near United. But to grant it thee unjust, That equal over equals monarch reign: Thyself, though great and glorious, dost thou count, Or all angelick nature joined in one, Equal to him begotten Son? by whom, As by his Word, the Mighty Father made All things, even thee; and all the Spirits of Heaven By him created in their bright degrees, Crowned them with glory, and to their glory named Thrones, Dominations, Princedoms, Virtues, Powers, Essential Powers; nor by his reign obscured, But more illustrious made; since he the head One of our number thus reduced becomes; His laws our laws; all honour to him done Returns our own. Cease then this impious rage, And tempt not these; but hasten to appease The incensed Father, and the incensed Son, While pardon may be found in time besought. So spake the fervent Angel; but his zeal None seconded, as out of season judged, Or singular and rash: Whereat rejoiced The Apostate, and, more haughty, thus replied. That we were formed then sayest thou? and the work Of secondary hands, by task transferred From Father to his Son? strange point and new! Doctrine which we would know whence learned: who saw When this creation was? rememberest thou Thy making, while the Maker gave thee being? We know no time when we were not as now; Know none before us, self-begot, self-raised By our own quickening power, when fatal course Had circled his full orb, the birth mature Of this our native Heaven, ethereal sons. Our puissance is our own; our own right hand Shall teach us highest deeds, by proof to try Who is our equal: Then thou shalt behold Whether by supplication we intend Address, and to begirt the almighty throne Beseeching or besieging. This report, These tidings carry to the anointed King; And fly, ere evil intercept thy flight. He said; and, as the sound of waters deep, Hoarse murmur echoed to his words applause Through the infinite host; nor less for that The flaming Seraph fearless, though alone Encompassed round with foes, thus answered bold. O alienate from God, O Spirit accursed, Forsaken of all good! I see thy fall Determined, and thy hapless crew involved In this perfidious fraud, contagion spread Both of thy crime and punishment: Henceforth No more be troubled how to quit the yoke Of God's Messiah; those indulgent laws Will not be now vouchsafed; other decrees Against thee are gone forth without recall; That golden scepter, which thou didst reject, Is now an iron rod to bruise and break Thy disobedience. Well thou didst advise; Yet not for thy advice or threats I fly These wicked tents devoted, lest the wrath Impendent, raging into sudden flame, Distinguish not: For soon expect to feel His thunder on thy head, devouring fire. Then who created thee lamenting learn, When who can uncreate thee thou shalt know. So spake the Seraph Abdiel, faithful found Among the faithless, faithful only he; Among innumerable false, unmoved, Unshaken, unseduced, unterrified, His loyalty he kept, his love, his zeal; Nor number, nor example, with him wrought To swerve from truth, or change his constant mind, Though single. From amidst them forth he passed, Long way through hostile scorn, which he sustained Superiour, nor of violence feared aught; And, with retorted scorn, his back he turned On those proud towers to swift destruction doomed. Book VI All night the dreadless Angel, unpursued, Through Heaven's wide champain held his way; till Morn, Waked by the circling Hours, with rosy hand Unbarred the gates of light. There is a cave Within the mount of God, fast by his throne, Where light and darkness in perpetual round Lodge and dislodge by turns, which makes through Heaven Grateful vicissitude, like day and night; Light issues forth, and at the other door Obsequious darkness enters, till her hour To veil the Heaven, though darkness there might well Seem twilight here: And now went forth the Morn Such as in highest Heaven arrayed in gold Empyreal; from before her vanished Night, Shot through with orient beams; when all the plain Covered with thick embattled squadrons bright, Chariots, and flaming arms, and fiery steeds, Reflecting blaze on blaze, first met his view: War he perceived, war in procinct; and found Already known what he for news had thought To have reported: Gladly then he mixed Among those friendly Powers, who him received With joy and acclamations loud, that one, That of so many myriads fallen, yet one Returned not lost. On to the sacred hill They led him high applauded, and present Before the seat supreme; from whence a voice, From midst a golden cloud, thus mild was heard. Servant of God. Well done; well hast thou fought The better fight, who single hast maintained Against revolted multitudes the cause Of truth, in word mightier than they in arms; And for the testimony of truth hast borne Universal reproach, far worse to bear Than violence; for this was all thy care To stand approved in sight of God, though worlds Judged thee perverse: The easier conquest now Remains thee, aided by this host of friends, Back on thy foes more glorious to return, Than scorned thou didst depart; and to subdue By force, who reason for their law refuse, Right reason for their law, and for their King Messiah, who by right of merit reigns. Go, Michael, of celestial armies prince, And thou, in military prowess next, Gabriel, lead forth to battle these my sons Invincible; lead forth my armed Saints, By thousands and by millions, ranged for fight, Equal in number to that Godless crew Rebellious: Them with fire and hostile arms Fearless assault; and, to the brow of Heaven Pursuing, drive them out from God and bliss, Into their place of punishment, the gulf Of Tartarus, which ready opens wide His fiery Chaos to receive their fall. So spake the Sovran Voice, and clouds began To darken all the hill, and smoke to roll In dusky wreaths, reluctant flames, the sign Of wrath awaked; nor with less dread the loud Ethereal trumpet from on high 'gan blow: At which command the Powers militant, That stood for Heaven, in mighty quadrate joined Of union irresistible, moved on In silence their bright legions, to the sound Of instrumental harmony, that breathed Heroick ardour to adventurous deeds Under their God-like leaders, in the cause Of God and his Messiah. On they move Indissolubly firm; nor obvious hill, Nor straitening vale, nor wood, nor stream, divides Their perfect ranks; for high above the ground Their march was, and the passive air upbore Their nimble tread; as when the total kind Of birds, in orderly array on wing, Came summoned over Eden to receive Their names of thee; so over many a tract Of Heaven they marched, and many a province wide, Tenfold the length of this terrene: At last, Far in the horizon to the north appeared From skirt to skirt a fiery region, stretched In battailous aspect, and nearer view Bristled with upright beams innumerable Of rigid spears, and helmets thronged, and shields Various, with boastful argument portrayed, The banded Powers of Satan hasting on With furious expedition; for they weened That self-same day, by fight or by surprise, To win the mount of God, and on his throne To set the Envier of his state, the proud Aspirer; but their thoughts proved fond and vain In the mid way: Though strange to us it seemed At first, that Angel should with Angel war, And in fierce hosting meet, who wont to meet So oft in festivals of joy and love Unanimous, as sons of one great Sire, Hymning the Eternal Father: But the shout Of battle now began, and rushing sound Of onset ended soon each milder thought. High in the midst, exalted as a God, The Apostate in his sun-bright chariot sat, Idol of majesty divine, enclosed With flaming Cherubim, and golden shields; Then lighted from his gorgeous throne, for now "twixt host and host but narrow space was left, A dreadful interval, and front to front Presented stood in terrible array Of hideous length: Before the cloudy van, On the rough edge of battle ere it joined, Satan, with vast and haughty strides advanced, Came towering, armed in adamant and gold; Abdiel that sight endured not, where he stood Among the mightiest, bent on highest deeds, And thus his own undaunted heart explores. O Heaven! that such resemblance of the Highest Should yet remain, where faith and realty Remain not: Wherefore should not strength and might There fail where virtue fails, or weakest prove Where boldest, though to fight unconquerable? His puissance, trusting in the Almighty's aid, I mean to try, whose reason I have tried Unsound and false; nor is it aught but just, That he, who in debate of truth hath won, Should win in arms, in both disputes alike Victor; though brutish that contest and foul, When reason hath to deal with force, yet so Most reason is that reason overcome. So pondering, and from his armed peers Forth stepping opposite, half-way he met His daring foe, at this prevention more Incensed, and thus securely him defied. Proud, art thou met? thy hope was to have reached The highth of thy aspiring unopposed, The throne of God unguarded, and his side Abandoned, at the terrour of thy power Or potent tongue: Fool!not to think how vain Against the Omnipotent to rise in arms; Who out of smallest things could, without end, Have raised incessant armies to defeat Thy folly; or with solitary hand Reaching beyond all limit, at one blow, Unaided, could have finished thee, and whelmed Thy legions under darkness: But thou seest All are not of thy train; there be, who faith Prefer, and piety to God, though then To thee not visible, when I alone Seemed in thy world erroneous to dissent From all: My sect thou seest;now learn too late How few sometimes may know, when thousands err. Whom the grand foe, with scornful eye askance, Thus answered. Ill for thee, but in wished hour Of my revenge, first sought for, thou returnest From flight, seditious Angel! to receive Thy merited reward, the first assay Of this right hand provoked, since first that tongue, Inspired with contradiction, durst oppose A third part of the Gods, in synod met Their deities to assert; who, while they feel Vigour divine within them, can allow Omnipotence to none. But well thou comest Before thy fellows, ambitious to win From me some plume, that thy success may show Destruction to the rest: This pause between, (Unanswered lest thou boast) to let thee know, At first I thought that Liberty and Heaven To heavenly souls had been all one; but now I see that most through sloth had rather serve, Ministring Spirits, trained up in feast and song! Such hast thou armed, the minstrelsy of Heaven, Servility with freedom to contend, As both their deeds compared this day shall prove. To whom in brief thus Abdiel stern replied. Apostate! still thou errest, nor end wilt find Of erring, from the path of truth remote: Unjustly thou depravest it with the name Of servitude, to serve whom God ordains, Or Nature: God and Nature bid the same, When he who rules is worthiest, and excels Them whom he governs. This is servitude, To serve the unwise, or him who hath rebelled Against his worthier, as thine now serve thee, Thyself not free, but to thyself enthralled; Yet lewdly darest our ministring upbraid. Reign thou in Hell, thy kingdom; let me serve In Heaven God ever blest, and his divine Behests obey, worthiest to be obeyed; Yet chains in Hell, not realms, expect: Mean while From me returned, as erst thou saidst, from flight, This greeting on thy impious crest receive. So saying, a noble stroke he lifted high, Which hung not, but so swift with tempest fell On the proud crest of Satan, that no sight, Nor motion of swift thought, less could his shield, Such ruin intercept: Ten paces huge He back recoiled; the tenth on bended knee His massy spear upstaid; as if on earth Winds under ground, or waters forcing way, Sidelong had pushed a mountain from his seat, Half sunk with all his pines. Amazement seised The rebel Thrones, but greater rage, to see Thus foiled their mightiest; ours joy filled, and shout, Presage of victory, and fierce desire Of battle: Whereat Michael bid sound The Arch-Angel trumpet; through the vast of Heaven It sounded, and the faithful armies rung Hosanna to the Highest: Nor stood at gaze The adverse legions, nor less hideous joined The horrid shock. Now storming fury rose, And clamour such as heard in Heaven till now Was never; arms on armour clashing brayed Horrible discord, and the madding wheels Of brazen chariots raged; dire was the noise Of conflict; over head the dismal hiss Of fiery darts in flaming vollies flew, And flying vaulted either host with fire. So under fiery cope together rushed Both battles main, with ruinous assault And inextinguishable rage. All Heaven Resounded; and had Earth been then, all Earth Had to her center shook. What wonder? when Millions of fierce encountering Angels fought On either side, the least of whom could wield These elements, and arm him with the force Of all their regions: How much more of power Army against army numberless to raise Dreadful combustion warring, and disturb, Though not destroy, their happy native seat; Had not the Eternal King Omnipotent, From his strong hold of Heaven, high over-ruled And limited their might; though numbered such As each divided legion might have seemed A numerous host; in strength each armed hand A legion; led in fight, yet leader seemed Each warriour single as in chief, expert When to advance, or stand, or turn the sway Of battle, open when, and when to close The ridges of grim war: No thought of flight, None of retreat, no unbecoming deed That argued fear; each on himself relied, As only in his arm the moment lay Of victory: Deeds of eternal fame Were done, but infinite; for wide was spread That war and various; sometimes on firm ground A standing fight, then, soaring on main wing, Tormented all the air; all air seemed then Conflicting fire. Long time in even scale The battle hung; till Satan, who that day Prodigious power had shown, and met in arms No equal, ranging through the dire attack Of fighting Seraphim confused, at length Saw where the sword of Michael smote, and felled Squadrons at once; with huge two-handed sway Brandished aloft, the horrid edge came down Wide-wasting; such destruction to withstand He hasted, and opposed the rocky orb Of tenfold adamant, his ample shield, A vast circumference. At his approach The great Arch-Angel from his warlike toil Surceased, and glad, as hoping here to end Intestine war in Heaven, the arch-foe subdued Or captive dragged in chains, with hostile frown And visage all inflamed first thus began. Author of evil, unknown till thy revolt, Unnamed in Heaven, now plenteous as thou seest These acts of hateful strife, hateful to all, Though heaviest by just measure on thyself, And thy adherents: How hast thou disturbed Heaven's blessed peace, and into nature brought Misery, uncreated till the crime Of thy rebellion! how hast thou instilled Thy malice into thousands, once upright And faithful, now proved false! But think not here To trouble holy rest; Heaven casts thee out From all her confines. Heaven, the seat of bliss, Brooks not the works of violence and war. Hence then, and evil go with thee along, Thy offspring, to the place of evil, Hell; Thou and thy wicked crew! there mingle broils, Ere this avenging sword begin thy doom, Or some more sudden vengeance, winged from God, Precipitate thee with augmented pain. So spake the Prince of Angels; to whom thus The Adversary. Nor think thou with wind Of aery threats to awe whom yet with deeds Thou canst not. Hast thou turned the least of these To flight, or if to fall, but that they rise Unvanquished, easier to transact with me That thou shouldst hope, imperious, and with threats To chase me hence? err not, that so shall end The strife which thou callest evil, but we style The strife of glory; which we mean to win, Or turn this Heaven itself into the Hell Thou fablest; here however to dwell free, If not to reign: Mean while thy utmost force, And join him named Almighty to thy aid, I fly not, but have sought thee far and nigh. They ended parle, and both addressed for fight Unspeakable; for who, though with the tongue Of Angels, can relate, or to what things Liken on earth conspicuous, that may lift Human imagination to such highth Of Godlike power? for likest Gods they seemed, Stood they or moved, in stature, motion, arms, Fit to decide the empire of great Heaven. Now waved their fiery swords, and in the air Made horrid circles; two broad suns their shields Blazed opposite, while Expectation stood In horrour: From each hand with speed retired, Where erst was thickest fight, the angelick throng, And left large field, unsafe within the wind Of such commotion; such as, to set forth Great things by small, if, nature's concord broke, Among the constellations war were sprung, Two planets, rushing from aspect malign Of fiercest opposition, in mid sky Should combat, and their jarring spheres confound. Together both with next to almighty arm Up-lifted imminent, one stroke they aimed That might determine, and not need repeat, As not of power at once; nor odds appeared In might or swift prevention: But the sword Of Michael from the armoury of God Was given him tempered so, that neither keen Nor solid might resist that edge: it met The sword of Satan, with steep force to smite Descending, and in half cut sheer; nor staid, But with swift wheel reverse, deep entering, shared All his right side: Then Satan first knew pain, And writhed him to and fro convolved; so sore The griding sword with discontinuous wound Passed through him: But the ethereal substance closed, Not long divisible; and from the gash A stream of necturous humour issuing flowed Sanguine, such as celestial Spirits may bleed, And all his armour stained, ere while so bright. Forthwith on all sides to his aid was run By Angels many and strong, who interposed Defence, while others bore him on their shields Back to his chariot, where it stood retired From off the files of war: There they him laid Gnashing for anguish, and despite, and shame, To find himself not matchless, and his pride Humbled by such rebuke, so far beneath His confidence to equal God in power. Yet soon he healed; for Spirits that live throughout Vital in every part, not as frail man In entrails, heart of head, liver or reins, Cannot but by annihilating die; Nor in their liquid texture mortal wound Receive, no more than can the fluid air: All heart they live, all head, all eye, all ear, All intellect, all sense; and, as they please, They limb themselves, and colour, shape, or size Assume, as?kikes them best, condense or rare. Mean while in other parts like deeds deserved Memorial, where the might of Gabriel fought, And with fierce ensigns pierced the deep array Of Moloch, furious king; who him defied, And at his chariot-wheels to drag him bound Threatened, nor from the Holy One of Heaven Refrained his tongue blasphemous; but anon Down cloven to the waist, with shattered arms And uncouth pain fled bellowing. On each wing Uriel, and Raphael, his vaunting foe, Though huge, and in a rock of diamond armed, Vanquished Adramelech, and Asmadai, Two potent Thrones, that to be less than Gods Disdained, but meaner thoughts learned in their flight, Mangled with ghastly wounds through plate and mail. Nor stood unmindful Abdiel to annoy The atheist crew, but with redoubled blow Ariel, and Arioch, and the violence Of Ramiel scorched and blasted, overthrew. I might relate of thousands, and their names Eternize here on earth; but those elect Angels, contented with their fame in Heaven, Seek not the praise of men: The other sort, In might though wonderous and in acts of war, Nor of renown less eager, yet by doom Cancelled from Heaven and sacred memory, Nameless in dark oblivion let them dwell. For strength from truth divided, and from just, Illaudable, nought merits but dispraise And ignominy; yet to glory aspires Vain-glorious, and through infamy seeks fame: Therefore eternal silence be their doom. And now, their mightiest quelled, the battle swerved, With many an inroad gored; deformed rout Entered, and foul disorder; all the ground With shivered armour strown, and on a heap Chariot and charioteer lay overturned, And fiery-foaming steeds; what stood, recoiled O'er-wearied, through the faint Satanick host Defensive scarce, or with pale fear surprised, Then first with fear surprised, and sense of pain, Fled ignominious, to such evil brought By sin of disobedience; till that hour Not liable to fear, or flight, or pain. Far otherwise the inviolable Saints, In cubick phalanx firm, advanced entire, Invulnerable, impenetrably armed; Such high advantages their innocence Gave them above their foes; not to have sinned, Not to have disobeyed; in fight they stood Unwearied, unobnoxious to be pained By wound, though from their place by violence moved, Now Night her course began, and, over Heaven Inducing darkness, grateful truce imposed, And silence on the odious din of war: Under her cloudy covert both retired, Victor and vanquished: On the foughten field Michael and his Angels prevalent Encamping, placed in guard their watches round, Cherubick waving fires: On the other part, Satan with his rebellious disappeared, Far in the dark dislodged; and, void of rest, His potentates to council called by night; And in the midst thus undismayed began. O now in danger tried, now known in arms Not to be overpowered, Companions dear, Found worthy not of liberty alone, Too mean pretence! but what we more affect, Honour, dominion, glory, and renown; Who have sustained one day in doubtful fight, (And if one day, why not eternal days?) What Heaven's Lord had powerfullest to send Against us from about his throne, and judged Sufficient to subdue us to his will, But proves not so: Then fallible, it seems, Of future we may deem him, though till now Omniscient thought. True is, less firmly armed, Some disadvantage we endured and pain, Till now not known, but, known, as soon contemned; Since now we find this our empyreal form Incapable of mortal injury, Imperishable, and, though pierced with wound, Soon closing, and by native vigour healed. Of evil then so small as easy think The remedy; perhaps more valid arms, Weapons more violent, when next we meet, May serve to better us, and worse our foes, Or equal what between us made the odds, In nature none: If other hidden cause Left them superiour, while we can preserve Unhurt our minds, and understanding sound, Due search and consultation will disclose. He sat; and in the assembly next upstood Nisroch, of Principalities the prime; As one he stood escaped from cruel fight, Sore toiled, his riven arms to havock hewn, And cloudy in aspect thus answering spake. Deliverer from new Lords, leader to free Enjoyment of our right as Gods; yet hard For Gods, and too unequal work we find, Against unequal arms to fight in pain, Against unpained, impassive; from which evil Ruin must needs ensue; for what avails Valour or strength, though matchless, quelled with pain Which all subdues, and makes remiss the hands Of mightiest? Sense of pleasure we may well Spare out of life perhaps, and not repine, But live content, which is the calmest life: But pain is perfect misery, the worst Of evils, and, excessive, overturns All patience. He, who therefore can invent With what more forcible we may offend Our yet unwounded enemies, or arm Ourselves with like defence, to me deserves No less than for deliverance what we owe. Whereto with look composed Satan replied. Not uninvented that, which thou aright Believest so main to our success, I bring. Which of us who beholds the bright surface Of this ethereous mould whereon we stand, This continent of spacious Heaven, adorned With plant, fruit, flower ambrosial, gems, and gold; Whose eye so superficially surveys These things, as not to mind from whence they grow Deep under ground, materials dark and crude, Of spiritous and fiery spume, till touched With Heaven's ray, and tempered, they shoot forth So beauteous, opening to the ambient light? These in their dark nativity the deep Shall yield us, pregnant with infernal flame; Which, into hollow engines, long and round, Thick rammed, at the other bore with touch of fire Dilated and infuriate, shall send forth From far, with thundering noise, among our foes Such implements of mischief, as shall dash To pieces, and o'erwhelm whatever stands Adverse, that they shall fear we have disarmed The Thunderer of his only dreaded bolt. Nor long shall be our labour; yet ere dawn, Effect shall end our wish. Mean while revive; Abandon fear; to strength and counsel joined Think nothing hard, much less to be despaired. He ended, and his words their drooping cheer Enlightened, and their languished hope revived. The invention all admired, and each, how he To be the inventer missed; so easy it seemed Once found, which yet unfound most would have thought Impossible: Yet, haply, of thy race In future days, if malice should abound, Some one intent on mischief, or inspired With devilish machination, might devise Like instrument to plague the sons of men For sin, on war and mutual slaughter bent. Forthwith from council to the work they flew; None arguing stood; innumerable hands Were ready; in a moment up they turned Wide the celestial soil, and saw beneath The originals of nature in their crude Conception; sulphurous and nitrous foam They found, they mingled, and, with subtle art, Concocted and adusted they reduced To blackest grain, and into store conveyed: Part hidden veins digged up (nor hath this earth Entrails unlike) of mineral and stone, Whereof to found their engines and their balls Of missive ruin; part incentive reed Provide, pernicious with one touch to fire. So all ere day-spring, under conscious night, Secret they finished, and in order set, With silent circumspection, unespied. Now when fair morn orient in Heaven appeared, Up rose the victor-Angels, and to arms The matin trumpet sung: In arms they stood Of golden panoply, refulgent host, Soon banded; others from the dawning hills Look round, and scouts each coast light-armed scour, Each quarter to descry the distant foe, Where lodged, or whither fled, or if for fight, In motion or in halt: Him soon they met Under spread ensigns moving nigh, in slow But firm battalion; back with speediest sail Zophiel, of Cherubim the swiftest wing, Came flying, and in mid air aloud thus cried. Arm, Warriours, arm for fight; the foe at hand, Whom fled we thought, will save us long pursuit This day; fear not his flight;so thick a cloud He comes, and settled in his face I see Sad resolution, and secure: Let each His adamantine coat gird well, and each Fit well his helm, gripe fast his orbed shield, Borne even or high; for this day will pour down, If I conjecture aught, no drizzling shower, But rattling storm of arrows barbed with fire. So warned he them, aware themselves, and soon In order, quit of all impediment; Instant without disturb they took alarm, And onward moved embattled: When behold! Not distant far with heavy pace the foe Approaching gross and huge, in hollow cube Training his devilish enginery, impaled On every side with shadowing squadrons deep, To hide the fraud. At interview both stood A while; but suddenly at head appeared Satan, and thus was heard commanding loud. Vanguard, to right and left the front unfold; That all may see who hate us, how we seek Peace and composure, and with open breast Stand ready to receive them, if they like Our overture; and turn not back perverse: But that I doubt; however witness, Heaven! Heaven, witness thou anon! while we discharge Freely our part: ye, who appointed stand Do as you have in charge, and briefly touch What we propound, and loud that all may hear! So scoffing in ambiguous words, he scarce Had ended; when to right and left the front Divided, and to either flank retired: Which to our eyes discovered, new and strange, A triple mounted row of pillars laid On wheels (for like to pillars most they seemed, Or hollowed bodies made of oak or fir, With branches lopt, in wood or mountain felled,) Brass, iron, stony mould, had not their mouths With hideous orifice gaped on us wide, Portending hollow truce: At each behind A Seraph stood, and in his hand a reed Stood waving tipt with fire; while we, suspense, Collected stood within our thoughts amused, Not long; for sudden all at once their reeds Put forth, and to a narrow vent applied With nicest touch. Immediate in a flame, But soon obscured with smoke, all Heaven appeared, From those deep-throated engines belched, whose roar Embowelled with outrageous noise the air, And all her entrails tore, disgorging foul Their devilish glut, chained thunderbolts and hail Of iron globes; which, on the victor host Levelled, with such impetuous fury smote, That, whom they hit, none on their feet might stand, Though standing else as rocks, but down they fell By thousands, Angel on Arch-Angel rolled; The sooner for their arms; unarmed, they might Have easily, as Spirits, evaded swift By quick contraction or remove; but now Foul dissipation followed, and forced rout; Nor served it to relax their serried files. What should they do? if on they rushed, repulse Repeated, and indecent overthrow Doubled, would render them yet more despised, And to their foes a laughter; for in view Stood ranked of Seraphim another row, In posture to displode their second tire Of thunder: Back defeated to return They worse abhorred. Satan beheld their plight, And to his mates thus in derision called. O Friends! why come not on these victors proud Ere while they fierce were coming; and when we, To entertain them fair with open front And breast, (what could we more?) propounded terms Of composition, straight they changed their minds, Flew off, and into strange vagaries fell, As they would dance; yet for a dance they seemed Somewhat extravagant and wild; perhaps For joy of offered peace: But I suppose, If our proposals once again were heard, We should compel them to a quick result. To whom thus Belial, in like gamesome mood. Leader! the terms we sent were terms of weight, Of hard contents, and full of force urged home; Such as we might perceive amused them all, And stumbled many: Who receives them right, Had need from head to foot well understand; Not understood, this gift they have besides, They show us when our foes walk not upright. So they among themselves in pleasant vein Stood scoffing, hightened in their thoughts beyond All doubt of victory: Eternal Might To match with their inventions they presumed So easy, and of his thunder made a scorn, And all his host derided, while they stood A while in trouble: But they stood not long; Rage prompted them at length, and found them arms Against such hellish mischief fit to oppose. Forthwith (behold the excellence, the power, Which God hath in his mighty Angels placed!) Their arms away they threw, and to the hills (For Earth hath this variety from Heaven Of pleasure situate in hill and dale,) Light as the lightning glimpse they ran, they flew; From their foundations loosening to and fro, They plucked the seated hills, with all their load, Rocks, waters, woods, and by the shaggy tops Up-lifting bore them in their hands: Amaze, Be sure, and terrour, seized the rebel host, When coming towards them so dread they saw The bottom of the mountains upward turned; Till on those cursed engines' triple-row They saw them whelmed, and all their confidence Under the weight of mountains buried deep; Themselves invaded next, and on their heads Main promontories flung, which in the air Came shadowing, and oppressed whole legions armed; Their armour helped their harm, crushed in and bruised Into their substance pent, which wrought them pain Implacable, and many a dolorous groan; Long struggling underneath, ere they could wind Out of such prison, though Spirits of purest light, Purest at first, now gross by sinning grown. The rest, in imitation, to like arms Betook them, and the neighbouring hills uptore: So hills amid the air encountered hills, Hurled to and fro with jaculation dire; That under ground they fought in dismal shade; Infernal noise! war seemed a civil game To this uproar; horrid confusion heaped Upon confusion rose: And now all Heaven Had gone to wrack, with ruin overspread; Had not the Almighty Father, where he sits Shrined in his sanctuary of Heaven secure, Consulting on the sum of things, foreseen This tumult, and permitted all, advised: That his great purpose he might so fulfil, To honour his anointed Son avenged Upon his enemies, and to declare All power on him transferred: Whence to his Son, The Assessour of his throne, he thus began. Effulgence of my glory, Son beloved, Son, in whose face invisible is beheld Visibly, what by Deity I am; And in whose hand what by decree I do, Second Omnipotence! two days are past, Two days, as we compute the days of Heaven, Since Michael and his Powers went forth to tame These disobedient: Sore hath been their fight, As likeliest was, when two such foes met armed; For to themselves I left them; and thou knowest, Equal in their creation they were formed, Save what sin hath impaired; which yet hath wrought Insensibly, for I suspend their doom; Whence in perpetual fight they needs must last Endless, and no solution will be found: War wearied hath performed what war can do, And to disordered rage let loose the reins With mountains, as with weapons, armed; which makes Wild work in Heaven, and dangerous to the main. Two days are therefore past, the third is thine; For thee I have ordained it; and thus far Have suffered, that the glory may be thine Of ending this great war, since none but Thou Can end it. Into thee such virtue and grace Immense I have transfused, that all may know In Heaven and Hell thy power above compare; And, this perverse commotion governed thus, To manifest thee worthiest to be Heir Of all things; to be Heir, and to be King By sacred unction, thy deserved right. Go then, Thou Mightiest, in thy Father's might; Ascend my chariot, guide the rapid wheels That shake Heaven's basis, bring forth all my war, My bow and thunder, my almighty arms Gird on, and sword upon thy puissant thigh; Pursue these sons of darkness, drive them out From all Heaven's bounds into the utter deep: There let them learn, as likes them, to despise God, and Messiah his anointed King. He said, and on his Son with rays direct Shone full; he all his Father full expressed Ineffably into his face received; And thus the Filial Godhead answering spake. O Father, O Supreme of heavenly Thrones, First, Highest, Holiest, Best; thou always seek'st To glorify thy Son, I always thee, As is most just: This I my glory account, My exaltation, and my whole delight, That thou, in me well pleased, declarest thy will Fulfilled, which to fulfil is all my bliss. Scepter and power, thy giving, I assume, And gladlier shall resign, when in the end Thou shalt be all in all, and I in thee For ever; and in me all whom thou lovest: But whom thou hatest, I hate, and can put on Thy terrours, as I put thy mildness on, Image of thee in all things; and shall soon, Armed with thy might, rid Heaven of these rebelled; To their prepared ill mansion driven down, To chains of darkness, and the undying worm; That from thy just obedience could revolt, Whom to obey is happiness entire. Then shall thy Saints unmixed, and from the impure Far separate, circling thy holy mount, Unfeigned Halleluiahs to thee sing, Hymns of high praise, and I among them Chief. So said, he, o'er his scepter bowing, rose From the right hand of Glory where he sat; And the third sacred morn began to shine, Dawning through Heaven. Forth rushed with whirlwind sound The chariot of Paternal Deity, Flashing thick flames, wheel within wheel undrawn, Itself instinct with Spirit, but convoyed By four Cherubick shapes; four faces each Had wonderous; as with stars, their bodies all And wings were set with eyes; with eyes the wheels Of beryl, and careering fires between; Over their heads a crystal firmament, Whereon a sapphire throne, inlaid with pure Amber, and colours of the showery arch. He, in celestial panoply all armed Of radiant Urim, work divinely wrought, Ascended; at his right hand Victory Sat eagle-winged; beside him hung his bow And quiver with three-bolted thunder stored; And from about him fierce effusion rolled Of smoke, and bickering flame, and sparkles dire: Attended with ten thousand thousand Saints, He onward came; far off his coming shone; And twenty thousand (I their number heard) Chariots of God, half on each hand, were seen; He on the wings of Cherub rode sublime On the crystalline sky, in sapphire throned, Illustrious far and wide; but by his own First seen: Them unexpected joy surprised, When the great ensign of Messiah blazed Aloft by Angels borne, his sign in Heaven; Under whose conduct Michael soon reduced His army, circumfused on either wing, Under their Head imbodied all in one. Before him Power Divine his way prepared; At his command the uprooted hills retired Each to his place; they heard his voice, and went Obsequious; Heaven his wonted face renewed, And with fresh flowerets hill and valley smiled. This saw his hapless foes, but stood obdured, And to rebellious fight rallied their Powers, Insensate, hope conceiving from despair. In heavenly Spirits could such perverseness dwell? But to convince the proud what signs avail, Or wonders move the obdurate to relent? They, hardened more by what might most reclaim, Grieving to see his glory, at the sight Took envy; and, aspiring to his highth, Stood re-embattled fierce, by force or fraud Weening to prosper, and at length prevail Against God and Messiah, or to fall In universal ruin last; and now To final battle drew, disdaining flight, Or faint retreat; when the great Son of God To all his host on either hand thus spake. Stand still in bright array, ye Saints; here stand, Ye Angels armed; this day from battle rest: Faithful hath been your warfare, and of God Accepted, fearless in his righteous cause; And as ye have received, so have ye done, Invincibly: But of this cursed crew The punishment to other hand belongs; Vengeance is his, or whose he sole appoints: Number to this day's work is not ordained, Nor multitude; stand only, and behold God's indignation on these godless poured By me; not you, but me, they have despised, Yet envied; against me is all their rage, Because the Father, to whom in Heaven s'preme Kingdom, and power, and glory appertains, Hath honoured me, according to his will. Therefore to me their doom he hath assigned; That they may have their wish, to try with me In battle which the stronger proves; they all, Or I alone against them; since by strength They measure all, of other excellence Not emulous, nor care who them excels; Nor other strife with them do I vouchsafe. So spake the Son, and into terrour changed His countenance too severe to be beheld, And full of wrath bent on his enemies. At once the Four spread out their starry wings With dreadful shade contiguous, and the orbs Of his fierce chariot rolled, as with the sound Of torrent floods, or of a numerous host. He on his impious foes right onward drove, Gloomy as night; under his burning wheels The stedfast empyrean shook throughout, All but the throne itself of God. Full soon Among them he arrived; in his right hand Grasping ten thousand thunders, which he sent Before him, such as in their souls infixed Plagues: They, astonished, all resistance lost, All courage; down their idle weapons dropt: O'er shields, and helms, and helmed heads he rode Of Thrones and mighty Seraphim prostrate, That wished the mountains now might be again Thrown on them, as a shelter from his ire. Nor less on either side tempestuous fell His arrows, from the fourfold-visaged Four Distinct with eyes, and from the living wheels Distinct alike with multitude of eyes; One Spirit in them ruled; and every eye Glared lightning, and shot forth pernicious fire Among the accursed, that withered all their strength, And of their wonted vigour left them drained, Exhausted, spiritless, afflicted, fallen. Yet half his strength he put not forth, but checked His thunder in mid volley; for he meant Not to destroy, but root them out of Heaven: The overthrown he raised, and as a herd Of goats or timorous flock together thronged Drove them before him thunder-struck, pursued With terrours, and with furies, to the bounds And crystal wall of Heaven; which, opening wide, Rolled inward, and a spacious gap disclosed Into the wasteful deep: The monstrous sight Struck them with horrour backward, but far worse Urged them behind: Headlong themselves they threw Down from the verge of Heaven; eternal wrath Burnt after them to the bottomless pit. Hell heard the unsufferable noise, Hell saw Heaven ruining from Heaven, and would have fled Affrighted; but strict Fate had cast too deep Her dark foundations, and too fast had bound. Nine days they fell: Confounded Chaos roared, And felt tenfold confusion in their fall Through his wild anarchy, so huge a rout Incumbered him with ruin: Hell at last Yawning received them whole, and on them closed; Hell, their fit habitation, fraught with fire Unquenchable, the house of woe and pain. Disburdened Heaven rejoiced, and soon repaired Her mural breach, returning whence it rolled. Sole victor, from the expulsion of his foes, Messiah his triumphal chariot turned: To meet him all his Saints, who silent stood Eye-witnesses of his almighty acts, With jubilee advanced; and, as they went, Shaded with branching palm, each Order bright, Sung triumph, and him sung victorious King, Son, Heir, and Lord, to him dominion given, Worthiest to reign: He, celebrated, rode Triumphant through mid Heaven, into the courts And temple of his Mighty Father throned On high; who into glory him received, Where now he sits at the right hand of bliss. Thus, measuring things in Heaven by things on Earth, At thy request, and that thou mayest beware By what is past, to thee I have revealed What might have else to human race been hid; The discord which befel, and war in Heaven Among the angelick Powers, and the deep fall Of those too high aspiring, who rebelled With Satan; he who envies now thy state, Who now is plotting how he may seduce Thee also from obedience, that, with him Bereaved of happiness, thou mayest partake His punishment, eternal misery; Which would be all his solace and revenge, As a despite done against the Most High, Thee once to gain companion of his woe. But listen not to his temptations, warn Thy weaker; let it profit thee to have heard, By terrible example, the reward Of disobedience; firm they might have stood, Yet fell; remember, and fear to transgress. Book VII Descend from Heaven, Urania, by that name If rightly thou art called, whose voice divine Following, above the Olympian hill I soar, Above the flight of Pegasean wing! The meaning, not the name, I call: for thou Nor of the Muses nine, nor on the top Of old Olympus dwellest; but, heavenly-born, Before the hills appeared, or fountain flowed, Thou with eternal Wisdom didst converse, Wisdom thy sister, and with her didst play In presence of the Almighty Father, pleased With thy celestial song. Up led by thee Into the Heaven of Heavens I have presumed, An earthly guest, and drawn empyreal air, Thy tempering: with like safety guided down Return me to my native element: Lest from this flying steed unreined, (as once Bellerophon, though from a lower clime,) Dismounted, on the Aleian field I fall, Erroneous there to wander, and forlorn. Half yet remains unsung, but narrower bound Within the visible diurnal sphere; Standing on earth, not rapt above the pole, More safe I sing with mortal voice, unchanged To hoarse or mute, though fallen on evil days, On evil days though fallen, and evil tongues; In darkness, and with dangers compassed round, And solitude; yet not alone, while thou Visitest my slumbers nightly, or when morn Purples the east: still govern thou my song, Urania, and fit audience find, though few. But drive far off the barbarous dissonance Of Bacchus and his revellers, the race Of that wild rout that tore the Thracian bard In Rhodope, where woods and rocks had ears To rapture, till the savage clamour drowned Both harp and voice; nor could the Muse defend Her son. So fail not thou, who thee implores: For thou art heavenly, she an empty dream. Say, Goddess, what ensued when Raphael, The affable Arch-Angel, had forewarned Adam, by dire example, to beware Apostasy, by what befel in Heaven To those apostates; lest the like befall In Paradise to Adam or his race, Charged not to touch the interdicted tree, If they transgress, and slight that sole command, So easily obeyed amid the choice Of all tastes else to please their appetite, Though wandering. He, with his consorted Eve, The story heard attentive, and was filled With admiration and deep muse, to hear Of things so high and strange; things, to their thought So unimaginable, as hate in Heaven, And war so near the peace of God in bliss, With such confusion: but the evil, soon Driven back, redounded as a flood on those From whom it sprung; impossible to mix With blessedness. Whence Adam soon repealed The doubts that in his heart arose: and now Led on, yet sinless, with desire to know What nearer might concern him, how this world Of Heaven and Earth conspicuous first began; When, and whereof created; for what cause; What within Eden, or without, was done Before his memory; as one whose drouth Yet scarce allayed still eyes the current stream, Whose liquid murmur heard new thirst excites, Proceeded thus to ask his heavenly guest. Great things, and full of wonder in our ears, Far differing from this world, thou hast revealed, Divine interpreter! by favour sent Down from the empyrean, to forewarn Us timely of what might else have been our loss, Unknown, which human knowledge could not reach; For which to the infinitely Good we owe Immortal thanks, and his admonishment Receive, with solemn purpose to observe Immutably his sovran will, the end Of what we are. But since thou hast vouchsafed Gently, for our instruction, to impart Things above earthly thought, which yet concerned Our knowing, as to highest wisdom seemed, Deign to descend now lower, and relate What may no less perhaps avail us known, How first began this Heaven which we behold Distant so high, with moving fires adorned Innumerable; and this which yields or fills All space, the ambient air wide interfused Embracing round this floried Earth; what cause Moved the Creator, in his holy rest Through all eternity, so late to build In Chaos; and the work begun, how soon Absolved; if unforbid thou mayest unfold What we, not to explore the secrets ask Of his eternal empire, but the more To magnify his works, the more we know. And the great light of day yet wants to run Much of his race though steep; suspense in Heaven, Held by thy voice, thy potent voice, he hears, And longer will delay to hear thee tell His generation, and the rising birth Of Nature from the unapparent Deep: Or if the star of evening and the moon Haste to thy audience, Night with her will bring, Silence; and Sleep, listening to thee, will watch; Or we can bid his absence, till thy song End, and dismiss thee ere the morning shine. Thus Adam his illustrious guest besought: And thus the Godlike Angel answered mild. This also thy request, with caution asked, Obtain; though to recount almighty works What words or tongue of Seraph can suffice, Or heart of man suffice to comprehend? Yet what thou canst attain, which best may serve To glorify the Maker, and infer Thee also happier, shall not be withheld Thy hearing; such commission from above I have received, to answer thy desire Of knowledge within bounds; beyond, abstain To ask; nor let thine own inventions hope Things not revealed, which the invisible King, Only Omniscient, hath suppressed in night; To none communicable in Earth or Heaven: Enough is left besides to search and know. But knowledge is as food, and needs no less Her temperance over appetite, to know In measure what the mind may well contain; Oppresses else with surfeit, and soon turns Wisdom to folly, as nourishment to wind. Know then, that, after Lucifer from Heaven (So call him, brighter once amidst the host Of Angels, than that star the stars among,) Fell with his flaming legions through the deep Into his place, and the great Son returned Victorious with his Saints, the Omnipotent Eternal Father from his throne beheld Their multitude, and to his Son thus spake. At least our envious Foe hath failed, who thought All like himself rebellious, by whose aid This inaccessible high strength, the seat Of Deity supreme, us dispossessed, He trusted to have seised, and into fraud Drew many, whom their place knows here no more: Yet far the greater part have kept, I see, Their station; Heaven, yet populous, retains Number sufficient to possess her realms Though wide, and this high temple to frequent With ministeries due, and solemn rites: But, lest his heart exalt him in the harm Already done, to have dispeopled Heaven, My damage fondly deemed, I can repair That detriment, if such it be to lose Self-lost; and in a moment will create Another world, out of one man a race Of men innumerable, there to dwell, Not here; till, by degrees of merit raised, They open to themselves at length the way Up hither, under long obedience tried; And Earth be changed to Heaven, and Heaven to Earth, One kingdom, joy and union without end. Mean while inhabit lax, ye Powers of Heaven; And thou my Word, begotten Son, by thee This I perform; speak thou, and be it done! My overshadowing Spirit and Might with thee I send along; ride forth, and bid the Deep Within appointed bounds be Heaven and Earth; Boundless the Deep, because I Am who fill Infinitude, nor vacuous the space. Though I, uncircumscribed myself, retire, And put not forth my goodness, which is free To act or not, Necessity and Chance Approach not me, and what I will is Fate. So spake the Almighty, and to what he spake His Word, the Filial Godhead, gave effect. Immediate are the acts of God, more swift Than time or motion, but to human ears Cannot without process of speech be told, So told as earthly notion can receive. Great triumph and rejoicing was in Heaven, When such was heard declared the Almighty's will; Glory they sung to the Most High, good will To future men, and in their dwellings peace; Glory to Him, whose just avenging ire Had driven out the ungodly from his sight And the habitations of the just; to Him Glory and praise, whose wisdom had ordained Good out of evil to create; instead Of Spirits malign, a better race to bring Into their vacant room, and thence diffuse His good to worlds and ages infinite. So sang the Hierarchies: Mean while the Son On his great expedition now appeared, Girt with Omnipotence, with radiance crowned Of Majesty Divine; sapience and love Immense, and all his Father in him shone. About his chariot numberless were poured Cherub, and Seraph, Potentates, and Thrones, And Virtues, winged Spirits, and chariots winged From the armoury of God; where stand of old Myriads, between two brazen mountains lodged Against a solemn day, harnessed at hand, Celestial equipage; and now came forth Spontaneous, for within them Spirit lived, Attendant on their Lord: Heaven opened wide Her ever-during gates, harmonious sound On golden hinges moving, to let forth The King of Glory, in his powerful Word And Spirit, coming to create new worlds. On heavenly ground they stood; and from the shore They viewed the vast immeasurable abyss Outrageous as a sea, dark, wasteful, wild, Up from the bottom turned by furious winds And surging waves, as mountains, to assault Heaven's highth, and with the center mix the pole. Silence, ye troubled Waves, and thou Deep, peace, Said then the Omnifick Word; your discord end! Nor staid; but, on the wings of Cherubim Uplifted, in paternal glory rode Far into Chaos, and the world unborn; For Chaos heard his voice: Him all his train Followed in bright procession, to behold Creation, and the wonders of his might. Then staid the fervid wheels, and in his hand He took the golden compasses, prepared In God's eternal store, to circumscribe This universe, and all created things: One foot he centered, and the other turned Round through the vast profundity obscure; And said, Thus far extend, thus far thy bounds, This be thy just circumference, O World! Thus God the Heaven created, thus the Earth, Matter unformed and void: Darkness profound Covered the abyss: but on the watery calm His brooding wings the Spirit of God outspread, And vital virtue infused, and vital warmth Throughout the fluid mass; but downward purged The black tartareous cold infernal dregs, Adverse to life: then founded, then conglobed Like things to like; the rest to several place Disparted, and between spun out the air; And Earth self-balanced on her center hung. Let there be light, said God; and forthwith Light Ethereal, first of things, quintessence pure, Sprung from the deep; and from her native east To journey through the aery gloom began, Sphered in a radiant cloud, for yet the sun Was not; she in a cloudy tabernacle Sojourned the while. God saw the light was good; And light from darkness by the hemisphere Divided: light the Day, and darkness Night, He named. Thus was the first day even and morn: Nor past uncelebrated, nor unsung By the celestial quires, when orient light Exhaling first from darkness they beheld; Birth-day of Heaven and Earth; with joy and shout The hollow universal orb they filled, And touched their golden harps, and hymning praised God and his works; Creator him they sung, Both when first evening was, and when first morn. Again, God said, Let there be firmament Amid the waters, and let it divide The waters from the waters; and God made The firmament, expanse of liquid, pure, Transparent, elemental air, diffused In circuit to the uttermost convex Of this great round; partition firm and sure, The waters underneath from those above Dividing: for as earth, so he the world Built on circumfluous waters calm, in wide Crystalline ocean, and the loud misrule Of Chaos far removed; lest fierce extremes Contiguous might distemper the whole frame: And Heaven he named the Firmament: So even And morning chorus sung the second day. The Earth was formed, but in the womb as yet Of waters, embryon immature involved, Appeared not: over all the face of Earth Main ocean flowed, not idle; but, with warm Prolifick humour softening all her globe, Fermented the great mother to conceive, Satiate with genial moisture; when God said, Be gathered now ye waters under Heaven Into one place, and let dry land appear. Immediately the mountains huge appear Emergent, and their broad bare backs upheave Into the clouds; their tops ascend the sky: So high as heaved the tumid hills, so low Down sunk a hollow bottom broad and deep, Capacious bed of waters: Thither they Hasted with glad precipitance, uprolled, As drops on dust conglobing from the dry: Part rise in crystal wall, or ridge direct, For haste; such flight the great command impressed On the swift floods: As armies at the call Of trumpet (for of armies thou hast heard) Troop to their standard; so the watery throng, Wave rolling after wave, where way they found, If steep, with torrent rapture, if through plain, Soft-ebbing; nor withstood them rock or hill; But they, or under ground, or circuit wide With serpent errour wandering, found their way, And on the washy oose deep channels wore; Easy, ere God had bid the ground be dry, All but within those banks, where rivers now Stream, and perpetual draw their humid train. The dry land, Earth; and the great receptacle Of congregated waters, he called Seas: And saw that it was good; and said, Let the Earth Put forth the verdant grass, herb yielding seed, And fruit-tree yielding fruit after her kind, Whose seed is in herself upon the Earth. He scarce had said, when the bare Earth, till then Desart and bare, unsightly, unadorned, Brought forth the tender grass, whose verdure clad Her universal face with pleasant green; Then herbs of every leaf, that sudden flowered Opening their various colours, and made gay Her bosom, smelling sweet: and, these scarce blown, Forth flourished thick the clustering vine, forth crept The swelling gourd, up stood the corny reed Embattled in her field, and the humble shrub, And bush with frizzled hair implicit: Last Rose, as in dance, the stately trees, and spread Their branches hung with copious fruit, or gemmed Their blossoms: With high woods the hills were crowned; With tufts the valleys, and each fountain side; With borders long the rivers: that Earth now Seemed like to Heaven, a seat where Gods might dwell, Or wander with delight, and love to haunt Her sacred shades: though God had yet not rained Upon the Earth, and man to till the ground None was; but from the Earth a dewy mist Went up, and watered all the ground, and each Plant of the field; which, ere it was in the Earth, God made, and every herb, before it grew On the green stem: God saw that it was good: So even and morn recorded the third day. Again the Almighty spake, Let there be lights High in the expanse of Heaven, to divide The day from night; and let them be for signs, For seasons, and for days, and circling years; And let them be for lights, as I ordain Their office in the firmament of Heaven, To give light on the Earth; and it was so. And God made two great lights, great for their use To Man, the greater to have rule by day, The less by night, altern; and made the stars, And set them in the firmament of Heaven To illuminate the Earth, and rule the day In their vicissitude, and rule the night, And light from darkness to divide. God saw, Surveying his great work, that it was good: For of celestial bodies first the sun A mighty sphere he framed, unlightsome first, Though of ethereal mould: then formed the moon Globose, and every magnitude of stars, And sowed with stars the Heaven, thick as a field: Of light by far the greater part he took, Transplanted from her cloudy shrine, and placed In the sun's orb, made porous to receive And drink the liquid light; firm to retain Her gathered beams, great palace now of light. Hither, as to their fountain, other stars Repairing, in their golden urns draw light, And hence the morning-planet gilds her horns; By tincture or reflection they augment Their small peculiar, though from human sight So far remote, with diminution seen, First in his east the glorious lamp was seen, Regent of day, and all the horizon round Invested with bright rays, jocund to run His longitude through Heaven's high road; the gray Dawn, and the Pleiades, before him danced, Shedding sweet influence: Less bright the moon, But opposite in levelled west was set, His mirrour, with full face borrowing her light From him; for other light she needed none In that aspect, and still that distance keeps Till night; then in the east her turn she shines, Revolved on Heaven's great axle, and her reign With thousand lesser lights dividual holds, With thousand thousand stars, that then appeared Spangling the hemisphere: Then first adorned With their bright luminaries that set and rose, Glad evening and glad morn crowned the fourth day. And God said, Let the waters generate Reptile with spawn abundant, living soul: And let fowl fly above the Earth, with wings Displayed on the open firmament of Heaven. And God created the great whales, and each Soul living, each that crept, which plenteously The waters generated by their kinds; And every bird of wing after his kind; And saw that it was good, and blessed them, saying. Be fruitful, multiply, and in the seas, And lakes, and running streams, the waters fill; And let the fowl be multiplied, on the Earth. Forthwith the sounds and seas, each creek and bay, With fry innumerable swarm, and shoals Of fish that with their fins, and shining scales, Glide under the green wave, in sculls that oft Bank the mid sea: part single, or with mate, Graze the sea-weed their pasture, and through groves Of coral stray; or, sporting with quick glance, Show to the sun their waved coats dropt with gold; Or, in their pearly shells at ease, attend Moist nutriment; or under rocks their food In jointed armour watch: on smooth the seal And bended dolphins play: part huge of bulk Wallowing unwieldy, enormous in their gait, Tempest the ocean: there leviathan, Hugest of living creatures, on the deep Stretched like a promontory sleeps or swims, And seems a moving land; and at his gills Draws in, and at his trunk spouts out, a sea. Mean while the tepid caves, and fens, and shores, Their brood as numerous hatch, from the egg that soon Bursting with kindly rupture forth disclosed Their callow young; but feathered soon and fledge They summed their pens; and, soaring the air sublime, With clang despised the ground, under a cloud In prospect; there the eagle and the stork On cliffs and cedar tops their eyries build: Part loosely wing the region, part more wise In common, ranged in figure, wedge their way, Intelligent of seasons, and set forth Their aery caravan, high over seas Flying, and over lands, with mutual wing Easing their flight; so steers the prudent crane Her annual voyage, borne on winds; the air Floats as they pass, fanned with unnumbered plumes: From branch to branch the smaller birds with song Solaced the woods, and spread their painted wings Till even; nor then the solemn nightingale Ceased warbling, but all night tun'd her soft lays: Others, on silver lakes and rivers, bathed Their downy breast; the swan with arched neck, Between her white wings mantling proudly, rows Her state with oary feet; yet oft they quit The dank, and, rising on stiff pennons, tower The mid aereal sky: Others on ground Walked firm; the crested cock whose clarion sounds The silent hours, and the other whose gay train Adorns him, coloured with the florid hue Of rainbows and starry eyes. The waters thus With fish replenished, and the air with fowl, Evening and morn solemnized the fifth day. The sixth, and of creation last, arose With evening harps and matin; when God said, Let the Earth bring forth soul living in her kind, Cattle, and creeping things, and beast of the Earth, Each in their kind. The Earth obeyed, and straight Opening her fertile womb teemed at a birth Innumerous living creatures, perfect forms, Limbed and full grown: Out of the ground up rose, As from his lair, the wild beast where he wons In forest wild, in thicket, brake, or den; Among the trees in pairs they rose, they walked: The cattle in the fields and meadows green: Those rare and solitary, these in flocks Pasturing at once, and in broad herds upsprung. The grassy clods now calved; now half appeared The tawny lion, pawing to get free His hinder parts, then springs as broke from bonds, And rampant shakes his brinded mane; the ounce, The libbard, and the tiger, as the mole Rising, the crumbled earth above them threw In hillocks: The swift stag from under ground Bore up his branching head: Scarce from his mould Behemoth biggest born of earth upheaved His vastness: Fleeced the flocks and bleating rose, As plants: Ambiguous between sea and land The river-horse, and scaly crocodile. At once came forth whatever creeps the ground, Insect or worm: those waved their limber fans For wings, and smallest lineaments exact In all the liveries decked of summer's pride With spots of gold and purple, azure and green: These, as a line, their long dimension drew, Streaking the ground with sinuous trace; not all Minims of nature; some of serpent-kind, Wonderous in length and corpulence, involved Their snaky folds, and added wings. First crept The parsimonious emmet, provident Of future; in small room large heart enclosed; Pattern of just equality perhaps Hereafter, joined in her popular tribes Of commonalty: Swarming next appeared The female bee, that feeds her husband drone Deliciously, and builds her waxen cells With honey stored: The rest are numberless, And thou their natures knowest, and gavest them names, Needless to thee repeated; nor unknown The serpent, subtlest beast of all the field, Of huge extent sometimes, with brazen eyes And hairy mane terrifick, though to thee Not noxious, but obedient at thy call. Now Heaven in all her glory shone, and rolled Her motions, as the great first Mover's hand First wheeled their course: Earth in her rich attire Consummate lovely smiled; air, water, earth, By fowl, fish, beast, was flown, was swum, was walked, Frequent; and of the sixth day yet remained: There wanted yet the master-work, the end Of all yet done; a creature, who, not prone And brute as other creatures, but endued With sanctity of reason, might erect His stature, and upright with front serene Govern the rest, self-knowing; and from thence Magnanimous to correspond with Heaven, But grateful to acknowledge whence his good Descends, thither with heart, and voice, and eyes Directed in devotion, to adore And worship God Supreme, who made him chief Of all his works: therefore the Omnipotent Eternal Father (for where is not he Present?) thus to his Son audibly spake. Let us make now Man in our image, Man In our similitude, and let them rule Over the fish and fowl of sea and air, Beast of the field, and over all the Earth, And every creeping thing that creeps the ground. This said, he formed thee, Adam, thee, O Man, Dust of the ground, and in thy nostrils breathed The breath of life; in his own image he Created thee, in the image of God Express; and thou becamest a living soul. Male he created thee; but thy consort Female, for race; then blessed mankind, and said, Be fruitful, multiply, and fill the Earth; Subdue it, and throughout dominion hold Over fish of the sea, and fowl of the air, And every living thing that moves on the Earth. Wherever thus created, for no place Is yet distinct by name, thence, as thou knowest, He brought thee into this delicious grove, This garden, planted with the trees of God, Delectable both to behold and taste; And freely all their pleasant fruit for food Gave thee; all sorts are here that all the Earth yields, Variety without end; but of the tree, Which, tasted, works knowledge of good and evil, Thou mayest not; in the day thou eatest, thou diest; Death is the penalty imposed; beware, And govern well thy appetite; lest Sin Surprise thee, and her black attendant Death. Here finished he, and all that he had made Viewed, and behold all was entirely good; So even and morn accomplished the sixth day: Yet not till the Creator from his work Desisting, though unwearied, up returned, Up to the Heaven of Heavens, his high abode; Thence to behold this new created world, The addition of his empire, how it showed In prospect from his throne, how good, how fair, Answering his great idea. Up he rode Followed with acclamation, and the sound Symphonious of ten thousand harps, that tuned Angelick harmonies: The earth, the air Resounded, (thou rememberest, for thou heardst,) The heavens and all the constellations rung, The planets in their station listening stood, While the bright pomp ascended jubilant. Open, ye everlasting gates! they sung, Open, ye Heavens! your living doors;let in The great Creator from his work returned Magnificent, his six days work, a World; Open, and henceforth oft; for God will deign To visit oft the dwellings of just men, Delighted; and with frequent intercourse Thither will send his winged messengers On errands of supernal grace. So sung The glorious train ascending: He through Heaven, That opened wide her blazing portals, led To God's eternal house direct the way; A broad and ample road, whose dust is gold And pavement stars, as stars to thee appear, Seen in the galaxy, that milky way, Which nightly, as a circling zone, thou seest Powdered with stars. And now on Earth the seventh Evening arose in Eden, for the sun Was set, and twilight from the east came on, Forerunning night; when at the holy mount Of Heaven's high-seated top, the imperial throne Of Godhead, fixed for ever firm and sure, The Filial Power arrived, and sat him down With his great Father; for he also went Invisible, yet staid, (such privilege Hath Omnipresence) and the work ordained, Author and End of all things; and, from work Now resting, blessed and hallowed the seventh day, As resting on that day from all his work, But not in silence holy kept: the harp Had work and rested not; the solemn pipe, And dulcimer, all organs of sweet stop, All sounds on fret by string or golden wire, Tempered soft tunings, intermixed with voice Choral or unison: of incense clouds, Fuming from golden censers, hid the mount. Creation and the six days acts they sung: Great are thy works, Jehovah! infinite Thy power! what thought can measure thee, or tongue Relate thee! Greater now in thy return Than from the giant Angels: Thee that day Thy thunders magnified; but to create Is greater than created to destroy. Who can impair thee, Mighty King, or bound Thy empire! Easily the proud attempt Of Spirits apostate, and their counsels vain, Thou hast repelled; while impiously they thought Thee to diminish, and from thee withdraw The number of thy worshippers. Who seeks To lessen thee, against his purpose serves To manifest the more thy might: his evil Thou usest, and from thence createst more good. Witness this new-made world, another Heaven From Heaven-gate not far, founded in view On the clear hyaline, the glassy sea; Of amplitude almost immense, with stars Numerous, and every star perhaps a world Of destined habitation; but thou knowest Their seasons: among these the seat of Men, Earth, with her nether ocean circumfused, Their pleasant dwelling-place. Thrice happy Men, And sons of Men, whom God hath thus advanced! Created in his image, there to dwell And worship him; and in reward to rule Over his works, on earth, in sea, or air, And multiply a race of worshippers Holy and just: Thrice happy, if they know Their happiness, and persevere upright! So sung they, and the empyrean rung With halleluiahs: Thus was sabbath kept. And thy request think now fulfilled, that asked How first this world and face of things began, And what before thy memory was done From the beginning; that posterity, Informed by thee, might know: If else thou seekest Aught, not surpassing human measure, say. Book VIII The Angel ended, and in Adam's ear So charming left his voice, that he a while Thought him still speaking, still stood fixed to hear; Then, as new waked, thus gratefully replied. What thanks sufficient, or what recompence Equal, have I to render thee, divine Historian, who thus largely hast allayed The thirst I had of knowledge, and vouchsafed This friendly condescension to relate Things, else by me unsearchable; now heard With wonder, but delight, and, as is due, With glory attributed to the high Creator! Something yet of doubt remains, Which only thy solution can resolve. When I behold this goodly frame, this world, Of Heaven and Earth consisting; and compute Their magnitudes; this Earth, a spot, a grain, An atom, with the firmament compared And all her numbered stars, that seem to roll Spaces incomprehensible, (for such Their distance argues, and their swift return Diurnal,) merely to officiate light Round this opacous Earth, this punctual spot, One day and night; in all her vast survey Useless besides; reasoning I oft admire, How Nature wise and frugal could commit Such disproportions, with superfluous hand So many nobler bodies to create, Greater so manifold, to this one use, For aught appears, and on their orbs impose Such restless revolution day by day Repeated; while the sedentary Earth, That better might with far less compass move, Served by more noble than herself, attains Her end without least motion, and receives, As tribute, such a sumless journey brought Of incorporeal speed, her warmth and light; Speed, to describe whose swiftness number fails. So spake our sire, and by his countenance seemed Entering on studious thoughts abstruse; which Eve Perceiving, where she sat retired in sight, With lowliness majestick from her seat, And grace that won who saw to wish her stay, Rose, and went forth among her fruits and flowers, To visit how they prospered, bud and bloom, Her nursery; they at her coming sprung, And, touched by her fair tendance, gladlier grew. Yet went she not, as not with such discourse Delighted, or not capable her ear Of what was high: such pleasure she reserved, Adam relating, she sole auditress; Her husband the relater she preferred Before the Angel, and of him to ask Chose rather; he, she knew, would intermix Grateful digressions, and solve high dispute With conjugal caresses: from his lip Not words alone pleased her. O! when meet now Such pairs, in love and mutual honour joined? With Goddess-like demeanour forth she went, Not unattended; for on her, as Queen, A pomp of winning Graces waited still, And from about her shot darts of desire Into all eyes, to wish her still in sight. And Raphael now, to Adam's doubt proposed, Benevolent and facile thus replied. To ask or search, I blame thee not; for Heaven Is as the book of God before thee set, Wherein to read his wonderous works, and learn His seasons, hours, or days, or months, or years: This to attain, whether Heaven move or Earth, Imports not, if thou reckon right; the rest From Man or Angel the great Architect Did wisely to conceal, and not divulge His secrets to be scanned by them who ought Rather admire; or, if they list to try Conjecture, he his fabrick of the Heavens Hath left to their disputes, perhaps to move His laughter at their quaint opinions wide Hereafter; when they come to model Heaven And calculate the stars, how they will wield The mighty frame; how build, unbuild, contrive To save appearances; how gird the sphere With centrick and eccentrick scribbled o'er, Cycle and epicycle, orb in orb: Already by thy reasoning this I guess, Who art to lead thy offspring, and supposest That bodies bright and greater should not serve The less not bright, nor Heaven such journeys run, Earth sitting still, when she alone receives The benefit: Consider first, that great Or bright infers not excellence: the Earth Though, in comparison of Heaven, so small, Nor glistering, may of solid good contain More plenty than the sun that barren shines; Whose virtue on itself works no effect, But in the fruitful Earth; there first received, His beams, unactive else, their vigour find. Yet not to Earth are those bright luminaries Officious; but to thee, Earth's habitant. And for the Heaven's wide circuit, let it speak The Maker's high magnificence, who built So spacious, and his line stretched out so far; That Man may know he dwells not in his own; An edifice too large for him to fill, Lodged in a small partition; and the rest Ordained for uses to his Lord best known. The swiftness of those circles attribute, Though numberless, to his Omnipotence, That to corporeal substances could add Speed almost spiritual: Me thou thinkest not slow, Who since the morning-hour set out from Heaven Where God resides, and ere mid-day arrived In Eden; distance inexpressible By numbers that have name. But this I urge, Admitting motion in the Heavens, to show Invalid that which thee to doubt it moved; Not that I so affirm, though so it seem To thee who hast thy dwelling here on Earth. God, to remove his ways from human sense, Placed Heaven from Earth so far, that earthly sight, If it presume, might err in things too high, And no advantage gain. What if the sun Be center to the world; and other stars, By his attractive virtue and their own Incited, dance about him various rounds? Their wandering course now high, now low, then hid, Progressive, retrograde, or standing still, In six thou seest; and what if seventh to these The planet earth, so stedfast though she seem, Insensibly three different motions move? Which else to several spheres thou must ascribe, Moved contrary with thwart obliquities; Or save the sun his labour, and that swift Nocturnal and diurnal rhomb supposed, Invisible else above all stars, the wheel Of day and night; which needs not thy belief, If earth, industrious of herself, fetch day Travelling east, and with her part averse From the sun's beam meet night, her other part Still luminous by his ray. What if that light, Sent from her through the wide transpicuous air, To the terrestrial moon be as a star, Enlightening her by day, as she by night This earth? reciprocal, if land be there, Fields and inhabitants: Her spots thou seest As clouds, and clouds may rain, and rain produce Fruits in her softened soil for some to eat Allotted there; and other suns perhaps, With their attendant moons, thou wilt descry, Communicating male and female light; Which two great sexes animate the world, Stored in each orb perhaps with some that live. For such vast room in Nature unpossessed By living soul, desart and desolate, Only to shine, yet scarce to contribute Each orb a glimpse of light, conveyed so far Down to this habitable, which returns Light back to them, is obvious to dispute. But whether thus these things, or whether not; But whether the sun, predominant in Heaven, Rise on the earth; or earth rise on the sun; He from the east his flaming road begin; Or she from west her silent course advance, With inoffensive pace that spinning sleeps On her soft axle, while she paces even, And bears thee soft with the smooth hair along; Sollicit not thy thoughts with matters hid; Leave them to God above; him serve, and fear! Of other creatures, as him pleases best, Wherever placed, let him dispose; joy thou In what he gives to thee, this Paradise And thy fair Eve; Heaven is for thee too high To know what passes there; be lowly wise: Think only what concerns thee, and thy being; Dream not of other worlds, what creatures there Live, in what state, condition, or degree; Contented that thus far hath been revealed Not of Earth only, but of highest Heaven. To whom thus Adam, cleared of doubt, replied. How fully hast thou satisfied me, pure Intelligence of Heaven, Angel serene! And, freed from intricacies, taught to live The easiest way; nor with perplexing thoughts To interrupt the sweet of life, from which God hath bid dwell far off all anxious cares, And not molest us; unless we ourselves Seek them with wandering thoughts, and notions vain. But apt the mind or fancy is to rove Unchecked, and of her roving is no end; Till warned, or by experience taught, she learn, That, not to know at large of things remote From use, obscure and subtle; but, to know That which before us lies in daily life, Is the prime wisdom: What is more, is fume, Or emptiness, or fond impertinence: And renders us, in things that most concern, Unpractised, unprepared, and still to seek. Therefore from this high pitch let us descend A lower flight, and speak of things at hand Useful; whence, haply, mention may arise Of something not unseasonable to ask, By sufferance, and thy wonted favour, deigned. Thee I have heard relating what was done Ere my remembrance: now, hear me relate My story, which perhaps thou hast not heard; And day is not yet spent; till then thou seest How subtly to detain thee I devise; Inviting thee to hear while I relate; Fond! were it not in hope of thy reply: For, while I sit with thee, I seem in Heaven; And sweeter thy discourse is to my ear Than fruits of palm-tree pleasantest to thirst And hunger both, from labour, at the hour Of sweet repast; they satiate, and soon fill, Though pleasant; but thy words, with grace divine Imbued, bring to their sweetness no satiety. To whom thus Raphael answered heavenly meek. Nor are thy lips ungraceful, Sire of men, Nor tongue ineloquent; for God on thee Abundantly his gifts hath also poured Inward and outward both, his image fair: Speaking, or mute, all comeliness and grace Attends thee; and each word, each motion, forms; Nor less think we in Heaven of thee on Earth Than of our fellow-servant, and inquire Gladly into the ways of God with Man: For God, we see, hath honoured thee, and set On Man his equal love: Say therefore on; For I that day was absent, as befel, Bound on a voyage uncouth and obscure, Far on excursion toward the gates of Hell; Squared in full legion (such command we had) To see that none thence issued forth a spy, Or enemy, while God was in his work; Lest he, incensed at such eruption bold, Destruction with creation might have mixed. Not that they durst without his leave attempt; But us he sends upon his high behests For state, as Sovran King; and to inure Our prompt obedience. Fast we found, fast shut, The dismal gates, and barricadoed strong; But long ere our approaching heard within Noise, other than the sound of dance or song, Torment, and loud lament, and furious rage. Glad we returned up to the coasts of light Ere sabbath-evening: so we had in charge. But thy relation now; for I attend, Pleased with thy words no less than thou with mine. So spake the Godlike Power, and thus our Sire. For Man to tell how human life began Is hard; for who himself beginning knew Desire with thee still longer to converse Induced me. As new waked from soundest sleep, Soft on the flowery herb I found me laid, In balmy sweat; which with his beams the sun Soon dried, and on the reeking moisture fed. Straight toward Heaven my wondering eyes I turned, And gazed a while the ample sky; till, raised By quick instinctive motion, up I sprung, As thitherward endeavouring, and upright Stood on my feet: about me round I saw Hill, dale, and shady woods, and sunny plains, And liquid lapse of murmuring streams; by these, Creatures that lived and moved, and walked, or flew; Birds on the branches warbling; all things smiled; With fragrance and with joy my heart o'erflowed. Myself I then perused, and limb by limb Surveyed, and sometimes went, and sometimes ran With supple joints, as lively vigour led: But who I was, or where, or from what cause, Knew not; to speak I tried, and forthwith spake; My tongue obeyed, and readily could name Whate'er I saw. Thou Sun, said I, fair light, And thou enlightened Earth, so fresh and gay, Ye Hills, and Dales, ye Rivers, Woods, and Plains, And ye that live and move, fair Creatures, tell, Tell, if ye saw, how I came thus, how here?-- Not of myself;--by some great Maker then, In goodness and in power pre-eminent: Tell me, how may I know him, how adore, From whom I have that thus I move and live, And feel that I am happier than I know.-- While thus I called, and strayed I knew not whither, From where I first drew air, and first beheld This happy light; when, answer none returned, On a green shady bank, profuse of flowers, Pensive I sat me down: There gentle sleep First found me, and with soft oppression seised My droused sense, untroubled, though I thought I then was passing to my former state Insensible, and forthwith to dissolve: When suddenly stood at my head a dream, Whose inward apparition gently moved My fancy to believe I yet had being, And lived: One came, methought, of shape divine, And said, 'Thy mansion wants thee, Adam; rise, 'First Man, of men innumerable ordained 'First Father! called by thee, I come thy guide 'To the garden of bliss, thy seat prepared.' So saying, by the hand he took me raised, And over fields and waters, as in air Smooth-sliding without step, last led me up A woody mountain; whose high top was plain, A circuit wide, enclosed, with goodliest trees Planted, with walks, and bowers; that what I saw Of Earth before scarce pleasant seemed. Each tree, Loaden with fairest fruit that hung to the eye Tempting, stirred in me sudden appetite To pluck and eat; whereat I waked, and found Before mine eyes all real, as the dream Had lively shadowed: Here had new begun My wandering, had not he, who was my guide Up hither, from among the trees appeared, Presence Divine. Rejoicing, but with awe, In adoration at his feet I fell Submiss: He reared me, and 'Whom thou soughtest I am,' Said mildly, 'Author of all this thou seest 'Above, or round about thee, or beneath. 'This Paradise I give thee, count it thine 'To till and keep, and of the fruit to eat: 'Of every tree that in the garden grows 'Eat freely with glad heart; fear here no dearth: 'But of the tree whose operation brings 'Knowledge of good and ill, which I have set 'The pledge of thy obedience and thy faith, 'Amid the garden by the tree of life, 'Remember what I warn thee, shun to taste, 'And shun the bitter consequence: for know, 'The day thou eatest thereof, my sole command 'Transgressed, inevitably thou shalt die, 'From that day mortal; and this happy state 'Shalt lose, expelled from hence into a world 'Of woe and sorrow.' Sternly he pronounced The rigid interdiction, which resounds Yet dreadful in mine ear, though in my choice Not to incur; but soon his clear aspect Returned, and gracious purpose thus renewed. 'Not only these fair bounds, but all the Earth 'To thee and to thy race I give; as lords 'Possess it, and all things that therein live, 'Or live in sea, or air; beast, fish, and fowl. 'In sign whereof, each bird and beast behold 'After their kinds; I bring them to receive 'From thee their names, and pay thee fealty 'With low subjection; understand the same 'Of fish within their watery residence, 'Not hither summoned, since they cannot change 'Their element, to draw the thinner air.' As thus he spake, each bird and beast behold Approaching two and two; these cowering low With blandishment; each bird stooped on his wing. I named them, as they passed, and understood Their nature, with such knowledge God endued My sudden apprehension: But in these I found not what methought I wanted still; And to the heavenly Vision thus presumed. O, by what name, for thou above all these, Above mankind, or aught than mankind higher, Surpassest far my naming; how may I Adore thee, Author of this universe, And all this good to man? for whose well being So amply, and with hands so liberal, Thou hast provided all things: But with me I see not who partakes. In solitude What happiness, who can enjoy alone, Or, all enjoying, what contentment find? Thus I presumptuous; and the Vision bright, As with a smile more brightened, thus replied. What callest thou solitude? Is not the Earth With various living creatures, and the air Replenished, and all these at thy command To come and play before thee? Knowest thou not Their language and their ways? They also know, And reason not contemptibly: With these Find pastime, and bear rule; thy realm is large. So spake the Universal Lord, and seemed So ordering: I, with leave of speech implored, And humble deprecation, thus replied. Let not my words offend thee, Heavenly Power; My Maker, be propitious while I speak. Hast thou not made me here thy substitute, And these inferiour far beneath me set? Among unequals what society Can sort, what harmony, or true delight? Which must be mutual, in proportion due Given and received; but, in disparity The one intense, the other still remiss, Cannot well suit with either, but soon prove Tedious alike: Of fellowship I speak Such as I seek, fit to participate All rational delight: wherein the brute Cannot be human consort: They rejoice Each with their kind, lion with lioness; So fitly them in pairs thou hast combined: Much less can bird with beast, or fish with fowl So well converse, nor with the ox the ape; Worse then can man with beast, and least of all. Whereto the Almighty answered, not displeased. A nice and subtle happiness, I see, Thou to thyself proposest, in the choice Of thy associates, Adam! and wilt taste No pleasure, though in pleasure, solitary. What thinkest thou then of me, and this my state? Seem I to thee sufficiently possessed Of happiness, or not? who am alone From all eternity; for none I know Second to me or like, equal much less. How have I then with whom to hold converse, Save with the creatures which I made, and those To me inferiour, infinite descents Beneath what other creatures are to thee? He ceased; I lowly answered. To attain The highth and depth of thy eternal ways All human thoughts come short, Supreme of things! Thou in thyself art perfect, and in thee Is no deficience found: Not so is Man, But in degree; the cause of his desire By conversation with his like to help Or solace his defects. No need that thou Shouldst propagate, already Infinite; And through all numbers absolute, though One: But Man by number is to manifest His single imperfection, and beget Like of his like, his image multiplied, In unity defective; which requires Collateral love, and dearest amity. Thou in thy secresy although alone, Best with thyself accompanied, seekest not Social communication; yet, so pleased, Canst raise thy creature to what highth thou wilt Of union or communion, deified: I, by conversing, cannot these erect From prone; nor in their ways complacence find. Thus I emboldened spake, and freedom used Permissive, and acceptance found; which gained This answer from the gracious Voice Divine. Thus far to try thee, Adam, I was pleased; And find thee knowing, not of beasts alone, Which thou hast rightly named, but of thyself; Expressing well the spirit within thee free, My image, not imparted to the brute; Whose fellowship therefore unmeet for thee Good reason was thou freely shouldst dislike; And be so minded still: I, ere thou spakest, Knew it not good for Man to be alone; And no such company as then thou sawest Intended thee; for trial only brought, To see how thou couldest judge of fit and meet: What next I bring shall please thee, be assured, Thy likeness, thy fit help, thy other self, Thy wish exactly to thy heart's desire. He ended, or I heard no more; for now My earthly by his heavenly overpowered, Which it had long stood under, strained to the highth In that celestial colloquy sublime, As with an object that excels the sense Dazzled and spent, sunk down; and sought repair Of sleep, which instantly fell on me, called By Nature as in aid, and closed mine eyes. Mine eyes he closed, but open left the cell Of fancy, my internal sight; by which, Abstract as in a trance, methought I saw, Though sleeping, where I lay, and saw the shape Still glorious before whom awake I stood: Who stooping opened my left side, and took From thence a rib, with cordial spirits warm, And life-blood streaming fresh; wide was the wound, But suddenly with flesh filled up and healed: The rib he formed and fashioned with his hands; Under his forming hands a creature grew, Man-like, but different sex; so lovely fair, That what seemed fair in all the world, seemed now Mean, or in her summed up, in her contained And in her looks; which from that time infused Sweetness into my heart, unfelt before, And into all things from her air inspired The spirit of love and amorous delight. She disappeared, and left me dark; I waked To find her, or for ever to deplore Her loss, and other pleasures all abjure: When out of hope, behold her, not far off, Such as I saw her in my dream, adorned With what all Earth or Heaven could bestow To make her amiable: On she came, Led by her heavenly Maker, though unseen, And guided by his voice; nor uninformed Of nuptial sanctity, and marriage rites: Grace was in all her steps, Heaven in her eye, In every gesture dignity and love. I, overjoyed, could not forbear aloud. This turn hath made amends; thou hast fulfilled Thy words, Creator bounteous and benign, Giver of all things fair! but fairest this Of all thy gifts! nor enviest. I now see Bone of my bone, flesh of my flesh, myself Before me: Woman is her name;of Man Extracted: for this cause he shall forego Father and mother, and to his wife adhere; And they shall be one flesh, one heart, one soul. She heard me thus; and though divinely brought, Yet innocence, and virgin modesty, Her virtue, and the conscience of her worth, That would be wooed, and not unsought be won, Not obvious, not obtrusive, but, retired, The more desirable; or, to say all, Nature herself, though pure of sinful thought, Wrought in her so, that, seeing me, she turned: I followed her; she what was honour knew, And with obsequious majesty approved My pleaded reason. To the nuptial bower I led her blushing like the morn: All Heaven, And happy constellations, on that hour Shed their selectest influence; the Earth Gave sign of gratulation, and each hill; Joyous the birds; fresh gales and gentle airs Whispered it to the woods, and from their wings Flung rose, flung odours from the spicy shrub, Disporting, till the amorous bird of night Sung spousal, and bid haste the evening-star On his hill top, to light the bridal lamp. Thus have I told thee all my state, and brought My story to the sum of earthly bliss, Which I enjoy; and must confess to find In all things else delight indeed, but such As, used or not, works in the mind no change, Nor vehement desire; these delicacies I mean of taste, sight, smell, herbs, fruits, and flowers, Walks, and the melody of birds: but here Far otherwise, transported I behold, Transported touch; here passion first I felt, Commotion strange! in all enjoyments else Superiour and unmoved; here only weak Against the charm of Beauty's powerful glance. Or Nature failed in me, and left some part Not proof enough such object to sustain; Or, from my side subducting, took perhaps More than enough; at least on her bestowed Too much of ornament, in outward show Elaborate, of inward less exact. For well I understand in the prime end Of Nature her the inferiour, in the mind And inward faculties, which most excel; In outward also her resembling less His image who made both, and less expressing The character of that dominion given O'er other creatures: Yet when I approach Her loveliness, so absolute she seems And in herself complete, so well to know Her own, that what she wills to do or say, Seems wisest, virtuousest, discreetest, best: All higher knowledge in her presence falls Degraded; Wisdom in discourse with her Loses discountenanced, and like Folly shows; Authority and Reason on her wait, As one intended first, not after made Occasionally; and, to consummate all, Greatness of mind and Nobleness their seat Build in her loveliest, and create an awe About her, as a guard angelick placed. To whom the Angel with contracted brow. Accuse not Nature, she hath done her part; Do thou but thine; and be not diffident Of Wisdom; she deserts thee not, if thou Dismiss not her, when most thou needest her nigh, By attributing overmuch to things Less excellent, as thou thyself perceivest. For, what admirest thou, what transports thee so, An outside? fair, no doubt, and worthy well Thy cherishing, thy honouring, and thy love; Not thy subjection: Weigh with her thyself; Then value: Oft-times nothing profits more Than self-esteem, grounded on just and right Well managed; of that skill the more thou knowest, The more she will acknowledge thee her head, And to realities yield all her shows: Made so adorn for thy delight the more, So awful, that with honour thou mayest love Thy mate, who sees when thou art seen least wise. But if the sense of touch, whereby mankind Is propagated, seem such dear delight Beyond all other; think the same vouchsafed To cattle and each beast; which would not be To them made common and divulged, if aught Therein enjoyed were worthy to subdue The soul of man, or passion in him move. What higher in her society thou findest Attractive, human, rational, love still; In loving thou dost well, in passion not, Wherein true love consists not: Love refines The thoughts, and heart enlarges; hath his seat In reason, and is judicious; is the scale By which to heavenly love thou mayest ascend, Not sunk in carnal pleasure; for which cause, Among the beasts no mate for thee was found. To whom thus, half abashed, Adam replied. Neither her outside formed so fair, nor aught In procreation common to all kinds, (Though higher of the genial bed by far, And with mysterious reverence I deem,) So much delights me, as those graceful acts, Those thousand decencies, that daily flow From all her words and actions mixed with love And sweet compliance, which declare unfeigned Union of mind, or in us both one soul; Harmony to behold in wedded pair More grateful than harmonious sound to the ear. Yet these subject not; I to thee disclose What inward thence I feel, not therefore foiled, Who meet with various objects, from the sense Variously representing; yet, still free, Approve the best, and follow what I approve. To love, thou blamest me not; for Love, thou sayest, Leads up to Heaven, is both the way and guide; Bear with me then, if lawful what I ask: Love not the heavenly Spirits, and how their love Express they? by looks only? or do they mix Irradiance, virtual or immediate touch? To whom the Angel, with a smile that glowed Celestial rosy red, Love's proper hue, Answered. Let it suffice thee that thou knowest Us happy, and without love no happiness. Whatever pure thou in the body enjoyest, (And pure thou wert created) we enjoy In eminence; and obstacle find none Of membrane, joint, or limb, exclusive bars; Easier than air with air, if Spirits embrace, Total they mix, union of pure with pure Desiring, nor restrained conveyance need, As flesh to mix with flesh, or soul with soul. But I can now no more; the parting sun Beyond the Earth's green Cape and verdant Isles Hesperian sets, my signal to depart. Be strong, live happy, and love! But, first of all, Him, whom to love is to obey, and keep His great command; take heed lest passion sway Thy judgement to do aught, which else free will Would not admit: thine, and of all thy sons, The weal or woe in thee is placed; beware! I in thy persevering shall rejoice, And all the Blest: Stand fast;to stand or fall Free in thine own arbitrement it lies. Perfect within, no outward aid require; And all temptation to transgress repel. So saying, he arose; whom Adam thus Followed with benediction. Since to part, Go, heavenly guest, ethereal Messenger, Sent from whose sovran goodness I adore! Gentle to me and affable hath been Thy condescension, and shall be honoured ever With grateful memory: Thou to mankind Be good and friendly still, and oft return! So parted they; the Angel up to Heaven From the thick shade, and Adam to his bower. Book IX No more of talk where God or Angel guest With Man, as with his friend, familiar us'd, To sit indulgent, and with him partake Rural repast; permitting him the while Venial discourse unblam'd. I now must change Those notes to tragick; foul distrust, and breach Disloyal on the part of Man, revolt, And disobedience: on the part of Heaven Now alienated, distance and distaste, Anger and just rebuke, and judgement given, That brought into this world a world of woe, Sin and her shadow Death, and Misery Death's harbinger: Sad talk!yet argument Not less but more heroick than the wrath Of stern Achilles on his foe pursued Thrice fugitive about Troy wall; or rage Of Turnus for Lavinia disespous'd; Or Neptune's ire, or Juno's, that so long Perplexed the Greek, and Cytherea's son: 00482129 If answerable style I can obtain Of my celestial patroness, who deigns Her nightly visitation unimplor'd, And dictates to me slumbering; or inspires Easy my unpremeditated verse: Since first this subject for heroick song Pleas'd me long choosing, and beginning late; Not sedulous by nature to indite Wars, hitherto the only argument Heroick deem'd chief mastery to dissect With long and tedious havock fabled knights In battles feign'd; the better fortitude Of patience and heroick martyrdom Unsung; or to describe races and games, Or tilting furniture, imblazon'd shields, Impresses quaint, caparisons and steeds, Bases and tinsel trappings, gorgeous knights At joust and tournament; then marshall'd feast Serv'd up in hall with sewers and seneshals; The skill of artifice or office mean, Not that which justly gives heroick name To person, or to poem. Me, of these Nor skill'd nor studious, higher argument Remains; sufficient of itself to raise That name, unless an age too late, or cold Climate, or years, damp my intended wing Depress'd; and much they may, if all be mine, Not hers, who brings it nightly to my ear. The sun was sunk, and after him the star Of Hesperus, whose office is to bring Twilight upon the earth, short arbiter "twixt day and night, and now from end to end Night's hemisphere had veil'd the horizon round: When satan, who late fled before the threats Of Gabriel out of Eden, now improv'd In meditated fraud and malice, bent On Man's destruction, maugre what might hap Of heavier on himself, fearless returned From compassing the earth; cautious of day, Since Uriel, regent of the sun, descried His entrance, and foreworned the Cherubim That kept their watch; thence full of anguish driven, The space of seven continued nights he rode With darkness; thrice the equinoctial line He circled; four times crossed the car of night From pole to pole, traversing each colure; On the eighth returned; and, on the coast averse From entrance or Cherubick watch, by stealth Found unsuspected way. There was a place, Now not, though sin, not time, first wrought the change, Where Tigris, at the foot of Paradise, Into a gulf shot under ground, till part Rose up a fountain by the tree of life: In with the river sunk, and with it rose Satan, involved in rising mist; then sought Where to lie hid; sea he had searched, and land, From Eden over Pontus and the pool Maeotis, up beyond the river Ob; Downward as far antarctick; and in length, West from Orontes to the ocean barred At Darien ; thence to the land where flows Ganges and Indus: Thus the orb he roamed With narrow search; and with inspection deep Considered every creature, which of all Most opportune might serve his wiles; and found The Serpent subtlest beast of all the field. Him after long debate, irresolute Of thoughts revolved, his final sentence chose Fit vessel, fittest imp of fraud, in whom To enter, and his dark suggestions hide From sharpest sight: for, in the wily snake Whatever sleights, none would suspicious mark, As from his wit and native subtlety Proceeding; which, in other beasts observed, Doubt might beget of diabolick power Active within, beyond the sense of brute. Thus he resolved, but first from inward grief His bursting passion into plaints thus poured. More justly, seat worthier of Gods, as built With second thoughts, reforming what was old! O Earth, how like to Heaven, if not preferred For what God, after better, worse would build? Terrestrial Heaven, danced round by other Heavens That shine, yet bear their bright officious lamps, Light above light, for thee alone, as seems, In thee concentring all their precious beams Of sacred influence! As God in Heaven Is center, yet extends to all; so thou, Centring, receivest from all those orbs: in thee, Not in themselves, all their known virtue appears Productive in herb, plant, and nobler birth Of creatures animate with gradual life Of growth, sense, reason, all summed up in Man. With what delight could I have walked thee round, If I could joy in aught, sweet interchange Of hill, and valley, rivers, woods, and plains, Now land, now sea and shores with forest crowned, Rocks, dens, and caves! But I in none of these Find place or refuge; and the more I see Pleasures about me, so much more I feel Torment within me, as from the hateful siege Of contraries: all good to me becomes Bane, and in Heaven much worse would be my state. But neither here seek I, no nor in Heaven To dwell, unless by mastering Heaven's Supreme; Nor hope to be myself less miserable By what I seek, but others to make such As I, though thereby worse to me redound: For only in destroying I find ease To my relentless thoughts; and, him destroyed, Or won to what may work his utter loss, For whom all this was made, all this will soon Follow, as to him linked in weal or woe; In woe then; that destruction wide may range: To me shall be the glory sole among The infernal Powers, in one day to have marred What he, Almighty styled, six nights and days Continued making; and who knows how long Before had been contriving? though perhaps Not longer than since I, in one night, freed From servitude inglorious well nigh half The angelick name, and thinner left the throng Of his adorers: He, to be avenged, And to repair his numbers thus impaired, Whether such virtue spent of old now failed More Angels to create, if they at least Are his created, or, to spite us more, Determined to advance into our room A creature formed of earth, and him endow, Exalted from so base original, With heavenly spoils, our spoils: What he decreed, He effected; Man he made, and for him built Magnificent this world, and earth his seat, Him lord pronounced; and, O indignity! Subjected to his service angel-wings, And flaming ministers to watch and tend Their earthly charge: Of these the vigilance I dread; and, to elude, thus wrapt in mist Of midnight vapour glide obscure, and pry In every bush and brake, where hap may find The serpent sleeping; in whose mazy folds To hide me, and the dark intent I bring. O foul descent! that I, who erst contended With Gods to sit the highest, am now constrained Into a beast; and, mixed with bestial slime, This essence to incarnate and imbrute, That to the highth of Deity aspired! But what will not ambition and revenge Descend to? Who aspires, must down as low As high he soared; obnoxious, first or last, To basest things. Revenge, at first though sweet, Bitter ere long, back on itself recoils: Let it; I reck not, so it light well aimed, Since higher I fall short, on him who next Provokes my envy, this new favourite Of Heaven, this man of clay, son of despite, Whom, us the more to spite, his Maker raised From dust: Spite then with spite is best repaid. So saying, through each thicket dank or dry, Like a black mist low-creeping, he held on His midnight-search, where soonest he might find The serpent; him fast-sleeping soon he found In labyrinth of many a round self-rolled, His head the midst, well stored with subtile wiles: Not yet in horrid shade or dismal den, Nor nocent yet; but, on the grassy herb, Fearless unfeared he slept: in at his mouth The Devil entered; and his brutal sense, In heart or head, possessing, soon inspired With act intelligential; but his sleep Disturbed not, waiting close the approach of morn. Now, when as sacred light began to dawn In Eden on the humid flowers, that breathed Their morning incense, when all things, that breathe, From the Earth's great altar send up silent praise To the Creator, and his nostrils fill With grateful smell, forth came the human pair, And joined their vocal worship to the quire Of creatures wanting voice; that done, partake The season prime for sweetest scents and airs: Then commune, how that day they best may ply Their growing work: for much their work out-grew The hands' dispatch of two gardening so wide, And Eve first to her husband thus began. Adam, well may we labour still to dress This garden, still to tend plant, herb, and flower, Our pleasant task enjoined; but, till more hands Aid us, the work under our labour grows, Luxurious by restraint; what we by day Lop overgrown, or prune, or prop, or bind, One night or two with wanton growth derides Tending to wild. Thou therefore now advise, Or bear what to my mind first thoughts present: Let us divide our labours; thou, where choice Leads thee, or where most needs, whether to wind The woodbine round this arbour, or direct The clasping ivy where to climb; while I, In yonder spring of roses intermixed With myrtle, find what to redress till noon: For, while so near each other thus all day Our task we choose, what wonder if so near Looks intervene and smiles, or object new Casual discourse draw on; which intermits Our day's work, brought to little, though begun Early, and the hour of supper comes unearned? To whom mild answer Adam thus returned. Sole Eve, associate sole, to me beyond Compare above all living creatures dear! Well hast thou motioned, well thy thoughts employed, How we might best fulfil the work which here God hath assigned us; nor of me shalt pass Unpraised: for nothing lovelier can be found In woman, than to study houshold good, And good works in her husband to promote. Yet not so strictly hath our Lord imposed Labour, as to debar us when we need Refreshment, whether food, or talk between, Food of the mind, or this sweet intercourse Of looks and smiles; for smiles from reason flow, To brute denied, and are of love the food; Love, not the lowest end of human life. For not to irksome toil, but to delight, He made us, and delight to reason joined. These paths and bowers doubt not but our joint hands Will keep from wilderness with ease, as wide As we need walk, till younger hands ere long Assist us; But, if much converse perhaps Thee satiate, to short absence I could yield: For solitude sometimes is best society, And short retirement urges sweet return. But other doubt possesses me, lest harm Befall thee severed from me; for thou knowest What hath been warned us, what malicious foe Envying our happiness, and of his own Despairing, seeks to work us woe and shame By sly assault; and somewhere nigh at hand Watches, no doubt, with greedy hope to find His wish and best advantage, us asunder; Hopeless to circumvent us joined, where each To other speedy aid might lend at need: Whether his first design be to withdraw Our fealty from God, or to disturb Conjugal love, than which perhaps no bliss Enjoyed by us excites his envy more; Or this, or worse, leave not the faithful side That gave thee being, still shades thee, and protects. The wife, where danger or dishonour lurks, Safest and seemliest by her husband stays, Who guards her, or with her the worst endures. To whom the virgin majesty of Eve, As one who loves, and some unkindness meets, With sweet austere composure thus replied. Offspring of Heaven and Earth, and all Earth's Lord! That such an enemy we have, who seeks Our ruin, both by thee informed I learn, And from the parting Angel over-heard, As in a shady nook I stood behind, Just then returned at shut of evening flowers. But, that thou shouldst my firmness therefore doubt To God or thee, because we have a foe May tempt it, I expected not to hear. His violence thou fearest not, being such As we, not capable of death or pain, Can either not receive, or can repel. His fraud is then thy fear; which plain infers Thy equal fear, that my firm faith and love Can by his fraud be shaken or seduced; Thoughts, which how found they harbour in thy breast, Adam, mis-thought of her to thee so dear? To whom with healing words Adam replied. Daughter of God and Man, immortal Eve! For such thou art; from sin and blame entire: Not diffident of thee do I dissuade Thy absence from my sight, but to avoid The attempt itself, intended by our foe. For he who tempts, though in vain, at least asperses The tempted with dishonour foul; supposed Not incorruptible of faith, not proof Against temptation: Thou thyself with scorn And anger wouldst resent the offered wrong, Though ineffectual found: misdeem not then, If such affront I labour to avert From thee alone, which on us both at once The enemy, though bold, will hardly dare; Or daring, first on me the assault shall light. Nor thou his malice and false guile contemn; Subtle he needs must be, who could seduce Angels; nor think superfluous other's aid. I, from the influence of thy looks, receive Access in every virtue; in thy sight More wise, more watchful, stronger, if need were Of outward strength; while shame, thou looking on, Shame to be overcome or over-reached, Would utmost vigour raise, and raised unite. Why shouldst not thou like sense within thee feel When I am present, and thy trial choose With me, best witness of thy virtue tried? So spake domestick Adam in his care And matrimonial love; but Eve, who thought Less attributed to her faith sincere, Thus her reply with accent sweet renewed. If this be our condition, thus to dwell In narrow circuit straitened by a foe, Subtle or violent, we not endued Single with like defence, wherever met; How are we happy, still in fear of harm? But harm precedes not sin: only our foe, Tempting, affronts us with his foul esteem Of our integrity: his foul esteem Sticks no dishonour on our front, but turns Foul on himself; then wherefore shunned or feared By us? who rather double honour gain From his surmise proved false; find peace within, Favour from Heaven, our witness, from the event. And what is faith, love, virtue, unassayed Alone, without exteriour help sustained? Let us not then suspect our happy state Left so imperfect by the Maker wise, As not secure to single or combined. Frail is our happiness, if this be so, And Eden were no Eden, thus exposed. To whom thus Adam fervently replied. O Woman, best are all things as the will Of God ordained them: His creating hand Nothing imperfect or deficient left Of all that he created, much less Man, Or aught that might his happy state secure, Secure from outward force; within himself The danger lies, yet lies within his power: Against his will he can receive no harm. But God left free the will; for what obeys Reason, is free; and Reason he made right, But bid her well be ware, and still erect; Lest, by some fair-appearing good surprised, She dictate false; and mis-inform the will To do what God expressly hath forbid. Not then mistrust, but tender love, enjoins, That I should mind thee oft; and mind thou me. Firm we subsist, yet possible to swerve; Since Reason not impossibly may meet Some specious object by the foe suborned, And fall into deception unaware, Not keeping strictest watch, as she was warned. Seek not temptation then, which to avoid Were better, and most likely if from me Thou sever not: Trial will come unsought. Wouldst thou approve thy constancy, approve First thy obedience; the other who can know, Not seeing thee attempted, who attest? But, if thou think, trial unsought may find Us both securer than thus warned thou seemest, Go; for thy stay, not free, absents thee more; Go in thy native innocence, rely On what thou hast of virtue; summon all! For God towards thee hath done his part, do thine. So spake the patriarch of mankind; but Eve Persisted; yet submiss, though last, replied. With thy permission then, and thus forewarned Chiefly by what thy own last reasoning words Touched only; that our trial, when least sought, May find us both perhaps far less prepared, The willinger I go, nor much expect A foe so proud will first the weaker seek; So bent, the more shall shame him his repulse. Thus saying, from her husband's hand her hand Soft she withdrew; and, like a Wood-Nymph light, Oread or Dryad, or of Delia's train, Betook her to the groves; but Delia's self In gait surpassed, and Goddess-like deport, Though not as she with bow and quiver armed, But with such gardening tools as Art yet rude, Guiltless of fire, had formed, or Angels brought. To Pales, or Pomona, thus adorned, Likest she seemed, Pomona when she fled Vertumnus, or to Ceres in her prime, Yet virgin of Proserpina from Jove. Her long with ardent look his eye pursued Delighted, but desiring more her stay. Oft he to her his charge of quick return Repeated; she to him as oft engaged To be returned by noon amid the bower, And all things in best order to invite Noontide repast, or afternoon's repose. O much deceived, much failing, hapless Eve, Of thy presumed return! event perverse! Thou never from that hour in Paradise Foundst either sweet repast, or sound repose; Such ambush, hid among sweet flowers and shades, Waited with hellish rancour imminent To intercept thy way, or send thee back Despoiled of innocence, of faith, of bliss! For now, and since first break of dawn, the Fiend, Mere serpent in appearance, forth was come; And on his quest, where likeliest he might find The only two of mankind, but in them The whole included race, his purposed prey. In bower and field he sought, where any tuft Of grove or garden-plot more pleasant lay, Their tendance, or plantation for delight; By fountain or by shady rivulet He sought them both, but wished his hap might find Eve separate; he wished, but not with hope Of what so seldom chanced; when to his wish, Beyond his hope, Eve separate he spies, Veiled in a cloud of fragrance, where she stood, Half spied, so thick the roses blushing round About her glowed, oft stooping to support Each flower of slender stalk, whose head, though gay Carnation, purple, azure, or specked with gold, Hung drooping unsustained; them she upstays Gently with myrtle band, mindless the while Herself, though fairest unsupported flower, From her best prop so far, and storm so nigh. Nearer he drew, and many a walk traversed Of stateliest covert, cedar, pine, or palm; Then voluble and bold, now hid, now seen, Among thick-woven arborets, and flowers Imbordered on each bank, the hand of Eve: Spot more delicious than those gardens feigned Or of revived Adonis, or renowned Alcinous, host of old Laertes' son; Or that, not mystick, where the sapient king Held dalliance with his fair Egyptian spouse. Much he the place admired, the person more. As one who long in populous city pent, Where houses thick and sewers annoy the air, Forth issuing on a summer's morn, to breathe Among the pleasant villages and farms Adjoined, from each thing met conceives delight; The smell of grain, or tedded grass, or kine, Or dairy, each rural sight, each rural sound; If chance, with nymph-like step, fair virgin pass, What pleasing seemed, for her now pleases more; She most, and in her look sums all delight: Such pleasure took the Serpent to behold This flowery plat, the sweet recess of Eve Thus early, thus alone: Her heavenly form Angelick, but more soft, and feminine, Her graceful innocence, her every air Of gesture, or least action, overawed His malice, and with rapine sweet bereaved His fierceness of the fierce intent it brought: That space the Evil-one abstracted stood From his own evil, and for the time remained Stupidly good; of enmity disarmed, Of guile, of hate, of envy, of revenge: But the hot Hell that always in him burns, Though in mid Heaven, soon ended his delight, And tortures him now more, the more he sees Of pleasure, not for him ordained: then soon Fierce hate he recollects, and all his thoughts Of mischief, gratulating, thus excites. Thoughts, whither have ye led me! with what sweet Compulsion thus transported, to forget What hither brought us! hate, not love;nor hope Of Paradise for Hell, hope here to taste Of pleasure; but all pleasure to destroy, Save what is in destroying; other joy To me is lost. Then, let me not let pass Occasion which now smiles; behold alone The woman, opportune to all attempts, Her husband, for I view far round, not nigh, Whose higher intellectual more I shun, And strength, of courage haughty, and of limb Heroick built, though of terrestrial mould; Foe not informidable! exempt from wound, I not; so much hath Hell debased, and pain Enfeebled me, to what I was in Heaven. She fair, divinely fair, fit love for Gods! Not terrible, though terrour be in love And beauty, not approached by stronger hate, Hate stronger, under show of love well feigned; The way which to her ruin now I tend. So spake the enemy of mankind, enclosed In serpent, inmate bad! and toward Eve Addressed his way: not with indented wave, Prone on the ground, as since; but on his rear, Circular base of rising folds, that towered Fold above fold, a surging maze! his head Crested aloft, and carbuncle his eyes; With burnished neck of verdant gold, erect Amidst his circling spires, that on the grass Floated redundant: pleasing was his shape And lovely; never since of serpent-kind Lovelier, not those that in Illyria changed, Hermione and Cadmus, or the god In Epidaurus; nor to which transformed Ammonian Jove, or Capitoline, was seen; He with Olympias; this with her who bore Scipio, the highth of Rome. With tract oblique At first, as one who sought access, but feared To interrupt, side-long he works his way. As when a ship, by skilful steersmen wrought Nigh river's mouth or foreland, where the wind Veers oft, as oft so steers, and shifts her sail: So varied he, and of his tortuous train Curled many a wanton wreath in sight of Eve, To lure her eye; she, busied, heard the sound Of rusling leaves, but minded not, as used To such disport before her through the field, From every beast; more duteous at her call, Than at Circean call the herd disguised. He, bolder now, uncalled before her stood, But as in gaze admiring: oft he bowed His turret crest, and sleek enamelled neck, Fawning; and licked the ground whereon she trod. His gentle dumb expression turned at length The eye of Eve to mark his play; he, glad Of her attention gained, with serpent-tongue Organick, or impulse of vocal air, His fraudulent temptation thus began. Wonder not, sovran Mistress, if perhaps Thou canst, who art sole wonder! much less arm Thy looks, the Heaven of mildness, with disdain, Displeased that I approach thee thus, and gaze Insatiate; I thus single;nor have feared Thy awful brow, more awful thus retired. Fairest resemblance of thy Maker fair, Thee all things living gaze on, all things thine By gift, and thy celestial beauty adore With ravishment beheld! there best beheld, Where universally admired; but here In this enclosure wild, these beasts among, Beholders rude, and shallow to discern Half what in thee is fair, one man except, Who sees thee? and what is one? who should be seen A Goddess among Gods, adored and served By Angels numberless, thy daily train. So glozed the Tempter, and his proem tuned: Into the heart of Eve his words made way, Though at the voice much marvelling; at length, Not unamazed, she thus in answer spake. What may this mean? language of man pronounced By tongue of brute, and human sense expressed? The first, at least, of these I thought denied To beasts; whom God, on their creation-day, Created mute to all articulate sound: The latter I demur; for in their looks Much reason, and in their actions, oft appears. Thee, Serpent, subtlest beast of all the field I knew, but not with human voice endued; Redouble then this miracle, and say, How camest thou speakable of mute, and how To me so friendly grown above the rest Of brutal kind, that daily are in sight? Say, for such wonder claims attention due. To whom the guileful Tempter thus replied. Empress of this fair world, resplendent Eve! Easy to me it is to tell thee all What thou commandest; and right thou shouldst be obeyed: I was at first as other beasts that graze The trodden herb, of abject thoughts and low, As was my food; nor aught but food discerned Or sex, and apprehended nothing high: Till, on a day roving the field, I chanced A goodly tree far distant to behold Loaden with fruit of fairest colours mixed, Ruddy and gold: I nearer drew to gaze; When from the boughs a savoury odour blown, Grateful to appetite, more pleased my sense Than smell of sweetest fennel, or the teats Of ewe or goat dropping with milk at even, Unsucked of lamb or kid, that tend their play. To satisfy the sharp desire I had Of tasting those fair apples, I resolved Not to defer; hunger and thirst at once, Powerful persuaders, quickened at the scent Of that alluring fruit, urged me so keen. About the mossy trunk I wound me soon; For, high from ground, the branches would require Thy utmost reach or Adam's: Round the tree All other beasts that saw, with like desire Longing and envying stood, but could not reach. Amid the tree now got, where plenty hung Tempting so nigh, to pluck and eat my fill I spared not; for, such pleasure till that hour, At feed or fountain, never had I found. Sated at length, ere long I might perceive Strange alteration in me, to degree Of reason in my inward powers; and speech Wanted not long; though to this shape retained. Thenceforth to speculations high or deep I turned my thoughts, and with capacious mind Considered all things visible in Heaven, Or Earth, or Middle; all things fair and good: But all that fair and good in thy divine Semblance, and in thy beauty's heavenly ray, United I beheld; no fair to thine Equivalent or second! which compelled Me thus, though importune perhaps, to come And gaze, and worship thee of right declared Sovran of creatures, universal Dame! So talked the spirited sly Snake; and Eve, Yet more amazed, unwary thus replied. Serpent, thy overpraising leaves in doubt The virtue of that fruit, in thee first proved: But say, where grows the tree? from hence how far? For many are the trees of God that grow In Paradise, and various, yet unknown To us; in such abundance lies our choice, As leaves a greater store of fruit untouched, Still hanging incorruptible, till men Grow up to their provision, and more hands Help to disburden Nature of her birth. To whom the wily Adder, blithe and glad. Empress, the way is ready, and not long; Beyond a row of myrtles, on a flat, Fast by a fountain, one small thicket past Of blowing myrrh and balm: if thou accept My conduct, I can bring thee thither soon Lead then, said Eve. He, leading, swiftly rolled In tangles, and made intricate seem straight, To mischief swift. Hope elevates, and joy Brightens his crest; as when a wandering fire, Compact of unctuous vapour, which the night Condenses, and the cold environs round, Kindled through agitation to a flame, Which oft, they say, some evil Spirit attends, Hovering and blazing with delusive light, Misleads the amazed night-wanderer from his way To bogs and mires, and oft through pond or pool; There swallowed up and lost, from succour far. So glistered the dire Snake, and into fraud Led Eve, our credulous mother, to the tree Of prohibition, root of all our woe; Which when she saw, thus to her guide she spake. Serpent, we might have spared our coming hither, Fruitless to me, though fruit be here to excess, The credit of whose virtue rest with thee; Wonderous indeed, if cause of such effects. But of this tree we may not taste nor touch; God so commanded, and left that command Sole daughter of his voice; the rest, we live Law to ourselves; our reason is our law. To whom the Tempter guilefully replied. Indeed! hath God then said that of the fruit Of all these garden-trees ye shall not eat, Yet Lords declared of all in earth or air$? To whom thus Eve, yet sinless. Of the fruit Of each tree in the garden we may eat; But of the fruit of this fair tree amidst The garden, God hath said, Ye shall not eat Thereof, nor shall ye touch it, lest ye die. She scarce had said, though brief, when now more bold The Tempter, but with show of zeal and love To Man, and indignation at his wrong, New part puts on; and, as to passion moved, Fluctuates disturbed, yet comely and in act Raised, as of some great matter to begin. As when of old some orator renowned, In Athens or free Rome, where eloquence Flourished, since mute! to some great cause addressed, Stood in himself collected; while each part, Motion, each act, won audience ere the tongue; Sometimes in highth began, as no delay Of preface brooking, through his zeal of right: So standing, moving, or to highth up grown, The Tempter, all impassioned, thus began. O sacred, wise, and wisdom-giving Plant, Mother of science! now I feel thy power Within me clear; not only to discern Things in their causes, but to trace the ways Of highest agents, deemed however wise. Queen of this universe! do not believe Those rigid threats of death: ye shall not die: How should you? by the fruit? it gives you life To knowledge; by the threatener? look on me, Me, who have touched and tasted; yet both live, And life more perfect have attained than Fate Meant me, by venturing higher than my lot. Shall that be shut to Man, which to the Beast Is open? or will God incense his ire For such a petty trespass? and not praise Rather your dauntless virtue, whom the pain Of death denounced, whatever thing death be, Deterred not from achieving what might lead To happier life, knowledge of good and evil; Of good, how just? of evil, if what is evil Be real, why not known, since easier shunned? God therefore cannot hurt ye, and be just; Not just, not God; not feared then, nor obeyed: Your fear itself of death removes the fear. Why then was this forbid? Why, but to awe; Why, but to keep ye low and ignorant, His worshippers? He knows that in the day Ye eat thereof, your eyes that seem so clear, Yet are but dim, shall perfectly be then Opened and cleared, and ye shall be as Gods, Knowing both good and evil, as they know. That ye shall be as Gods, since I as Man, Internal Man, is but proportion meet; I, of brute, human; ye, of human, Gods. So ye shall die perhaps, by putting off Human, to put on Gods; death to be wished, Though threatened, which no worse than this can bring. And what are Gods, that Man may not become As they, participating God-like food? The Gods are first, and that advantage use On our belief, that all from them proceeds: I question it; for this fair earth I see, Warmed by the sun, producing every kind; Them, nothing: if they all things, who enclosed Knowledge of good and evil in this tree, That whoso eats thereof, forthwith attains Wisdom without their leave? and wherein lies The offence, that Man should thus attain to know? What can your knowledge hurt him, or this tree Impart against his will, if all be his? Or is it envy? and can envy dwell In heavenly breasts? These, these, and many more Causes import your need of this fair fruit. Goddess humane, reach then, and freely taste! He ended; and his words, replete with guile, Into her heart too easy entrance won: Fixed on the fruit she gazed, which to behold Might tempt alone; and in her ears the sound Yet rung of his persuasive words, impregned With reason, to her seeming, and with truth: Mean while the hour of noon drew on, and waked An eager appetite, raised by the smell So savoury of that fruit, which with desire, Inclinable now grown to touch or taste, Solicited her longing eye; yet first Pausing a while, thus to herself she mused. Great are thy virtues, doubtless, best of fruits, Though kept from man, and worthy to be admired; Whose taste, too long forborn, at first assay Gave elocution to the mute, and taught The tongue not made for speech to speak thy praise: Thy praise he also, who forbids thy use, Conceals not from us, naming thee the tree Of knowledge, knowledge both of good and evil; Forbids us then to taste! but his forbidding Commends thee more, while it infers the good By thee communicated, and our want: For good unknown sure is not had; or, had And yet unknown, is as not had at all. In plain then, what forbids he but to know, Forbids us good, forbids us to be wise? Such prohibitions bind not. But, if death Bind us with after-bands, what profits then Our inward freedom? In the day we eat Of this fair fruit, our doom is, we shall die! How dies the Serpent? he hath eaten and lives, And knows, and speaks, and reasons, and discerns, Irrational till then. For us alone Was death invented? or to us denied This intellectual food, for beasts reserved? For beasts it seems: yet that one beast which first Hath tasted envies not, but brings with joy The good befallen him, author unsuspect, Friendly to man, far from deceit or guile. What fear I then? rather, what know to fear Under this ignorance of good and evil, Of God or death, of law or penalty? Here grows the cure of all, this fruit divine, Fair to the eye, inviting to the taste, Of virtue to make wise: What hinders then To reach, and feed at once both body and mind? So saying, her rash hand in evil hour Forth reaching to the fruit, she plucked, she eat! Earth felt the wound; and Nature from her seat, Sighing through all her works, gave signs of woe, That all was lost. Back to the thicket slunk The guilty Serpent; and well might;for Eve, Intent now wholly on her taste, nought else Regarded; such delight till then, as seemed, In fruit she never tasted, whether true Or fancied so, through expectation high Of knowledge; not was Godhead from her thought. Greedily she ingorged without restraint, And knew not eating death: Satiate at length, And hightened as with wine, jocund and boon, Thus to herself she pleasingly began. O sovran, virtuous, precious of all trees In Paradise! of operation blest To sapience, hitherto obscured, infamed. And thy fair fruit let hang, as to no end Created; but henceforth my early care, Not without song, each morning, and due praise, Shall tend thee, and the fertile burden ease Of thy full branches offered free to all; Till, dieted by thee, I grow mature In knowledge, as the Gods, who all things know; Though others envy what they cannot give: For, had the gift been theirs, it had not here Thus grown. Experience, next, to thee I owe, Best guide; not following thee, I had remained In ignorance; thou openest wisdom's way, And givest access, though secret she retire. And I perhaps am secret: Heaven is high, High, and remote to see from thence distinct Each thing on Earth; and other care perhaps May have diverted from continual watch Our great Forbidder, safe with all his spies About him. But to Adam in what sort Shall I appear? shall I to him make known As yet my change, and give him to partake Full happiness with me, or rather not, But keeps the odds of knowledge in my power Without copartner? so to add what wants In female sex, the more to draw his love, And render me more equal; and perhaps, A thing not undesirable, sometime Superiour; for, inferiour, who is free This may be well: But what if God have seen, And death ensue? then I shall be no more! And Adam, wedded to another Eve, Shall live with her enjoying, I extinct; A death to think! Confirmed then I resolve, Adam shall share with me in bliss or woe: So dear I love him, that with him all deaths I could endure, without him live no life. So saying, from the tree her step she turned; But first low reverence done, as to the Power That dwelt within, whose presence had infused Into the plant sciential sap, derived From nectar, drink of Gods. Adam the while, Waiting desirous her return, had wove Of choicest flowers a garland, to adorn Her tresses, and her rural labours crown; As reapers oft are wont their harvest-queen. Great joy he promised to his thoughts, and new Solace in her return, so long delayed: Yet oft his heart, divine of something ill, Misgave him; he the faltering measure felt; And forth to meet her went, the way she took That morn when first they parted: by the tree Of knowledge he must pass; there he her met, Scarce from the tree returning; in her hand A bough of fairest fruit, that downy smiled, New gathered, and ambrosial smell diffused. To him she hasted; in her face excuse Came prologue, and apology too prompt; Which, with bland words at will, she thus addressed. Hast thou not wondered, Adam, at my stay? Thee I have missed, and thought it long, deprived Thy presence; agony of love till now Not felt, nor shall be twice; for never more Mean I to try, what rash untried I sought, The pain of absence from thy sight. But strange Hath been the cause, and wonderful to hear: This tree is not, as we are told, a tree Of danger tasted, nor to evil unknown Opening the way, but of divine effect To open eyes, and make them Gods who taste; And hath been tasted such: The serpent wise, Or not restrained as we, or not obeying, Hath eaten of the fruit; and is become, Not dead, as we are threatened, but thenceforth Endued with human voice and human sense, Reasoning to admiration; and with me Persuasively hath so prevailed, that I Have also tasted, and have also found The effects to correspond; opener mine eyes, Dim erst, dilated spirits, ampler heart, And growing up to Godhead; which for thee Chiefly I sought, without thee can despise. For bliss, as thou hast part, to me is bliss; Tedious, unshared with thee, and odious soon. Thou therefore also taste, that equal lot May join us, equal joy, as equal love; Lest, thou not tasting, different degree Disjoin us, and I then too late renounce Deity for thee, when Fate will not permit. Thus Eve with countenance blithe her story told; But in her cheek distemper flushing glowed. On the other side Adam, soon as he heard The fatal trespass done by Eve, amazed, Astonied stood and blank, while horrour chill Ran through his veins, and all his joints relaxed; From his slack hand the garland wreathed for Eve Down dropt, and all the faded roses shed: Speechless he stood and pale, till thus at length First to himself he inward silence broke. O fairest of Creation, last and best Of all God's works, Creature in whom excelled Whatever can to sight or thought be formed, Holy, divine, good, amiable, or sweet! How art thou lost! how on a sudden lost, Defaced, deflowered, and now to death devote! Rather, how hast thou yielded to transgress The strict forbiddance, how to violate The sacred fruit forbidden! Some cursed fraud Of enemy hath beguiled thee, yet unknown, And me with thee hath ruined; for with thee Certain my resolution is to die: How can I live without thee! how forego Thy sweet converse, and love so dearly joined, To live again in these wild woods forlorn! Should God create another Eve, and I Another rib afford, yet loss of thee Would never from my heart: no, no!I feel The link of Nature draw me: flesh of flesh, Bone of my bone thou art, and from thy state Mine never shall be parted, bliss or woe. So having said, as one from sad dismay Recomforted, and after thoughts disturbed Submitting to what seemed remediless, Thus in calm mood his words to Eve he turned. Bold deed thou hast presumed, adventurous Eve, And peril great provoked, who thus hast dared, Had it been only coveting to eye That sacred fruit, sacred to abstinence, Much more to taste it under ban to touch. But past who can recall, or done undo? Not God Omnipotent, nor Fate; yet so Perhaps thou shalt not die, perhaps the fact Is not so heinous now, foretasted fruit, Profaned first by the serpent, by him first Made common, and unhallowed, ere our taste; Nor yet on him found deadly; yet he lives; Lives, as thou saidst, and gains to live, as Man, Higher degree of life; inducement strong To us, as likely tasting to attain Proportional ascent; which cannot be But to be Gods, or Angels, demi-Gods. Nor can I think that God, Creator wise, Though threatening, will in earnest so destroy Us his prime creatures, dignified so high, Set over all his works; which in our fall, For us created, needs with us must fail, Dependant made; so God shall uncreate, Be frustrate, do, undo, and labour lose; Not well conceived of God, who, though his power Creation could repeat, yet would be loth Us to abolish, lest the Adversary Triumph, and say; "Fickle their state whom God "Most favours; who can please him long? Me first "He ruined, now Mankind; whom will he next?" Matter of scorn, not to be given the Foe. However I with thee have fixed my lot, Certain to undergo like doom: If death Consort with thee, death is to me as life; So forcible within my heart I feel The bond of Nature draw me to my own; My own in thee, for what thou art is mine; Our state cannot be severed; we are one, One flesh; to lose thee were to lose myself. So Adam; and thus Eve to him replied. O glorious trial of exceeding love, Illustrious evidence, example high! Engaging me to emulate; but, short Of thy perfection, how shall I attain, Adam, from whose dear side I boast me sprung, And gladly of our union hear thee speak, One heart, one soul in both; whereof good proof This day affords, declaring thee resolved, Rather than death, or aught than death more dread, Shall separate us, linked in love so dear, To undergo with me one guilt, one crime, If any be, of tasting this fair fruit; Whose virtue for of good still good proceeds, Direct, or by occasion, hath presented This happy trial of thy love, which else So eminently never had been known? Were it I thought death menaced would ensue This my attempt, I would sustain alone The worst, and not persuade thee, rather die Deserted, than oblige thee with a fact Pernicious to thy peace; chiefly assured Remarkably so late of thy so true, So faithful, love unequalled: but I feel Far otherwise the event; not death, but life Augmented, opened eyes, new hopes, new joys, Taste so divine, that what of sweet before Hath touched my sense, flat seems to this, and harsh. On my experience, Adam, freely taste, And fear of death deliver to the winds. So saying, she embraced him, and for joy Tenderly wept; much won, that he his love Had so ennobled, as of choice to incur Divine displeasure for her sake, or death. In recompence for such compliance bad Such recompence best merits from the bough She gave him of that fair enticing fruit With liberal hand: he scrupled not to eat, Against his better knowledge; not deceived, But fondly overcome with female charm. Earth trembled from her entrails, as again In pangs; and Nature gave a second groan; Sky loured; and, muttering thunder, some sad drops Wept at completing of the mortal sin Original: while Adam took no thought, Eating his fill; nor Eve to iterate Her former trespass feared, the more to sooth Him with her loved society; that now, As with new wine intoxicated both, They swim in mirth, and fancy that they feel Divinity within them breeding wings, Wherewith to scorn the earth: But that false fruit Far other operation first displayed, Carnal desire inflaming; he on Eve Began to cast lascivious eyes; she him As wantonly repaid; in lust they burn: Till Adam thus 'gan Eve to dalliance move. Eve, now I see thou art exact of taste, And elegant, of sapience no small part; Since to each meaning savour we apply, And palate call judicious; I the praise Yield thee, so well this day thou hast purveyed. Much pleasure we have lost, while we abstained From this delightful fruit, nor known till now True relish, tasting; if such pleasure be In things to us forbidden, it might be wished, For this one tree had been forbidden ten. But come, so well refreshed, now let us play, As meet is, after such delicious fare; For never did thy beauty, since the day I saw thee first and wedded thee, adorned With all perfections, so inflame my sense With ardour to enjoy thee, fairer now Than ever; bounty of this virtuous tree! So said he, and forbore not glance or toy Of amorous intent; well understood Of Eve, whose eye darted contagious fire. Her hand he seised; and to a shady bank, Thick over-head with verdant roof imbowered, He led her nothing loth; flowers were the couch, Pansies, and violets, and asphodel, And hyacinth; Earth's freshest softest lap. There they their fill of love and love's disport Took largely, of their mutual guilt the seal, The solace of their sin; till dewy sleep Oppressed them, wearied with their amorous play, Soon as the force of that fallacious fruit, That with exhilarating vapour bland About their spirits had played, and inmost powers Made err, was now exhaled; and grosser sleep, Bred of unkindly fumes, with conscious dreams Incumbered, now had left them; up they rose As from unrest; and, each the other viewing, Soon found their eyes how opened, and their minds How darkened; innocence, that as a veil Had shadowed them from knowing ill, was gone; Just confidence, and native righteousness, And honour, from about them, naked left To guilty Shame; he covered, but his robe Uncovered more. So rose the Danite strong, Herculean Samson, from the harlot-lap Of Philistean Dalilah, and waked Shorn of his strength. They destitute and bare Of all their virtue: Silent, and in face Confounded, long they sat, as strucken mute: Till Adam, though not less than Eve abashed, At length gave utterance to these words constrained. O Eve, in evil hour thou didst give ear To that false worm, of whomsoever taught To counterfeit Man's voice; true in our fall, False in our promised rising; since our eyes Opened we find indeed, and find we know Both good and evil; good lost, and evil got; Bad fruit of knowledge, if this be to know; Which leaves us naked thus, of honour void, Of innocence, of faith, of purity, Our wonted ornaments now soiled and stained, And in our faces evident the signs Of foul concupiscence; whence evil store; Even shame, the last of evils; of the first Be sure then.--How shall I behold the face Henceforth of God or Angel, erst with joy And rapture so oft beheld? Those heavenly shapes Will dazzle now this earthly with their blaze Insufferably bright. O! might I here In solitude live savage; in some glade Obscured, where highest woods, impenetrable To star or sun-light, spread their umbrage broad And brown as evening: Cover me, ye Pines! Ye Cedars, with innumerable boughs Hide me, where I may never see them more!-- But let us now, as in bad plight, devise What best may for the present serve to hide The parts of each from other, that seem most To shame obnoxious, and unseemliest seen; Some tree, whose broad smooth leaves together sewed, And girded on our loins, may cover round Those middle parts; that this new comer, Shame, There sit not, and reproach us as unclean. So counselled he, and both together went Into the thickest wood; there soon they chose The fig-tree; not that kind for fruit renowned, But such as at this day, to Indians known, In Malabar or Decan spreads her arms Branching so broad and long, that in the ground The bended twigs take root, and daughters grow About the mother tree, a pillared shade High over-arched, and echoing walks between: There oft the Indian herdsman, shunning heat, Shelters in cool, and tends his pasturing herds At loop-holes cut through thickest shade: Those leaves They gathered, broad as Amazonian targe; And, with what skill they had, together sewed, To gird their waist; vain covering, if to hide Their guilt and dreaded shame! O, how unlike To that first naked glory! Such of late Columbus found the American, so girt With feathered cincture; naked else, and wild Among the trees on isles and woody shores. Thus fenced, and, as they thought, their shame in part Covered, but not at rest or ease of mind, They sat them down to weep; nor only tears Rained at their eyes, but high winds worse within Began to rise, high passions, anger, hate, Mistrust, suspicion, discord; and shook sore Their inward state of mind, calm region once And full of peace, now tost and turbulent: For Understanding ruled not, and the Will Heard not her lore; both in subjection now To sensual Appetite, who from beneath Usurping over sovran Reason claimed Superiour sway: From thus distempered breast, Adam, estranged in look and altered style, Speech intermitted thus to Eve renewed. Would thou hadst hearkened to my words, and staid With me, as I besought thee, when that strange Desire of wandering, this unhappy morn, I know not whence possessed thee; we had then Remained still happy; not, as now, despoiled Of all our good; shamed, naked, miserable! Let none henceforth seek needless cause to approve The faith they owe; when earnestly they seek Such proof, conclude, they then begin to fail. To whom, soon moved with touch of blame, thus Eve. What words have passed thy lips, Adam severe! Imputest thou that to my default, or will Of wandering, as thou callest it, which who knows But might as ill have happened thou being by, Or to thyself perhaps? Hadst thou been there, Or here the attempt, thou couldst not have discerned Fraud in the Serpent, speaking as he spake; No ground of enmity between us known, Why he should mean me ill, or seek to harm. Was I to have never parted from thy side? As good have grown there still a lifeless rib. Being as I am, why didst not thou, the head, Command me absolutely not to go, Going into such danger, as thou saidst? Too facile then, thou didst not much gainsay; Nay, didst permit, approve, and fair dismiss. Hadst thou been firm and fixed in thy dissent, Neither had I transgressed, nor thou with me. To whom, then first incensed, Adam replied. Is this the love, is this the recompence Of mine to thee, ingrateful Eve! expressed Immutable, when thou wert lost, not I; Who might have lived, and joyed immortal bliss, Yet willingly chose rather death with thee? And am I now upbraided as the cause Of thy transgressing? Not enough severe, It seems, in thy restraint: What could I more I warned thee, I admonished thee, foretold The danger, and the lurking enemy That lay in wait; beyond this, had been force; And force upon free will hath here no place. But confidence then bore thee on; secure Either to meet no danger, or to find Matter of glorious trial; and perhaps I also erred, in overmuch admiring What seemed in thee so perfect, that I thought No evil durst attempt thee; but I rue The errour now, which is become my crime, And thou the accuser. Thus it shall befall Him, who, to worth in women overtrusting, Lets her will rule: restraint she will not brook; And, left to herself, if evil thence ensue, She first his weak indulgence will accuse. Thus they in mutual accusation spent The fruitless hours, but neither self-condemning; And of their vain contest appeared no end. Book X Mean while the heinous and despiteful act Of Satan, done in Paradise; and how He, in the serpent, had perverted Eve, Her husband she, to taste the fatal fruit, Was known in Heaven; for what can 'scape the eye Of God all-seeing, or deceive his heart Omniscient? who, in all things wise and just, Hindered not Satan to attempt the mind Of Man, with strength entire and free will armed, Complete to have discovered and repulsed Whatever wiles of foe or seeming friend. For still they knew, and ought to have still remembered, The high injunction, not to taste that fruit, Whoever tempted; which they not obeying, (Incurred what could they less?) the penalty; And, manifold in sin, deserved to fall. Up into Heaven from Paradise in haste The angelick guards ascended, mute, and sad, For Man; for of his state by this they knew, Much wondering how the subtle Fiend had stolen Entrance unseen. Soon as the unwelcome news From Earth arrived at Heaven-gate, displeased All were who heard; dim sadness did not spare That time celestial visages, yet, mixed With pity, violated not their bliss. About the new-arrived, in multitudes The ethereal people ran, to hear and know How all befel: They towards the throne supreme, Accountable, made haste, to make appear, With righteous plea, their utmost vigilance And easily approved; when the Most High Eternal Father, from his secret cloud, Amidst in thunder uttered thus his voice. Assembled Angels, and ye Powers returned From unsuccessful charge; be not dismayed, Nor troubled at these tidings from the earth, Which your sincerest care could not prevent; Foretold so lately what would come to pass, When first this tempter crossed the gulf from Hell. I told ye then he should prevail, and speed On his bad errand; Man should be seduced, And flattered out of all, believing lies Against his Maker; no decree of mine Concurring to necessitate his fall, Or touch with lightest moment of impulse His free will, to her own inclining left In even scale. But fallen he is; and now What rests, but that the mortal sentence pass On his transgression,--death denounced that day? Which he presumes already vain and void, Because not yet inflicted, as he feared, By some immediate stroke; but soon shall find Forbearance no acquittance, ere day end. Justice shall not return as bounty scorned. But whom send I to judge them? whom but thee, Vicegerent Son? To thee I have transferred All judgement, whether in Heaven, or Earth, or Hell. Easy it may be seen that I intend Mercy colleague with justice, sending thee Man's friend, his Mediator, his designed Both ransom and Redeemer voluntary, And destined Man himself to judge Man fallen. So spake the Father; and, unfolding bright Toward the right hand his glory, on the Son Blazed forth unclouded Deity: He full Resplendent all his Father manifest Expressed, and thus divinely answered mild. Father Eternal, thine is to decree; Mine, both in Heaven and Earth, to do thy will Supreme; that thou in me, thy Son beloved, Mayest ever rest well pleased. I go to judge On earth these thy transgressours; but thou knowest, Whoever judged, the worst on me must light, When time shall be; for so I undertook Before thee; and, not repenting, this obtain Of right, that I may mitigate their doom On me derived; yet I shall temper so Justice with mercy, as may illustrate most Them fully satisfied, and thee appease. Attendance none shall need, nor train, where none Are to behold the judgement, but the judged, Those two; the third best absent is condemned, Convict by flight, and rebel to all law: Conviction to the serpent none belongs. Thus saying, from his radiant seat he rose Of high collateral glory: Him Thrones, and Powers, Princedoms, and Dominations ministrant, Accompanied to Heaven-gate; from whence Eden, and all the coast, in prospect lay. Down he descended straight; the speed of Gods Time counts not, though with swiftest minutes winged. Now was the sun in western cadence low From noon, and gentle airs, due at their hour, To fan the earth now waked, and usher in The evening cool; when he, from wrath more cool, Came the mild Judge, and Intercessour both, To sentence Man: The voice of God they heard Now walking in the garden, by soft winds Brought to their ears, while day declined; they heard, And from his presence hid themselves among The thickest trees, both man and wife; till God, Approaching, thus to Adam called aloud. Where art thou, Adam, wont with joy to meet My coming seen far off? I miss thee here, Not pleased, thus entertained with solitude, Where obvious duty ere while appeared unsought: Or come I less conspicuous, or what change Absents thee, or what chance detains?--Come forth! He came; and with him Eve, more loth, though first To offend; discountenanced both, and discomposed; Love was not in their looks, either to God, Or to each other; but apparent guilt, And shame, and perturbation, and despair, Anger, and obstinacy, and hate, and guile. Whence Adam, faltering long, thus answered brief. I heard thee in the garden, and of thy voice Afraid, being naked, hid myself. To whom The gracious Judge without revile replied. My voice thou oft hast heard, and hast not feared, But still rejoiced; how is it now become So dreadful to thee? That thou art naked, who Hath told thee? Hast thou eaten of the tree, Whereof I gave thee charge thou shouldst not eat? To whom thus Adam sore beset replied. O Heaven! in evil strait this day I stand Before my Judge; either to undergo Myself the total crime, or to accuse My other self, the partner of my life; Whose failing, while her faith to me remains, I should conceal, and not expose to blame By my complaint: but strict necessity Subdues me, and calamitous constraint; Lest on my head both sin and punishment, However insupportable, be all Devolved; though should I hold my peace, yet thou Wouldst easily detect what I conceal.-- This Woman, whom thou madest to be my help, And gavest me as thy perfect gift, so good, So fit, so acceptable, so divine, That from her hand I could suspect no ill, And what she did, whatever in itself, Her doing seemed to justify the deed; She gave me of the tree, and I did eat. To whom the Sovran Presence thus replied. Was she thy God, that her thou didst obey Before his voice? or was she made thy guide, Superiour, or but equal, that to her Thou didst resign thy manhood, and the place Wherein God set thee above her made of thee, And for thee, whose perfection far excelled Hers in all real dignity? Adorned She was indeed, and lovely, to attract Thy love, not thy subjection; and her gifts Were such, as under government well seemed; Unseemly to bear rule; which was thy part And person, hadst thou known thyself aright. So having said, he thus to Eve in few. Say, Woman, what is this which thou hast done? To whom sad Eve, with shame nigh overwhelmed, Confessing soon, yet not before her Judge Bold or loquacious, thus abashed replied. The Serpent me beguiled, and I did eat. Which when the Lord God heard, without delay To judgement he proceeded on the accused Serpent, though brute; unable to transfer The guilt on him, who made him instrument Of mischief, and polluted from the end Of his creation; justly then accursed, As vitiated in nature: More to know Concerned not Man, (since he no further knew) Nor altered his offence; yet God at last To Satan first in sin his doom applied, Though in mysterious terms, judged as then best: And on the Serpent thus his curse let fall. Because thou hast done this, thou art accursed Above all cattle, each beast of the field; Upon thy belly groveling thou shalt go, And dust shalt eat all the days of thy life. Between thee and the woman I will put Enmity, and between thine and her seed; Her seed shall bruise thy head, thou bruise his heel. So spake this oracle, then verified When Jesus, Son of Mary, second Eve, Saw Satan fall, like lightning, down from Heaven, Prince of the air; then, rising from his grave Spoiled Principalities and Powers, triumphed In open show; and, with ascension bright, Captivity led captive through the air, The realm itself of Satan, long usurped; Whom he shall tread at last under our feet; Even he, who now foretold his fatal bruise; And to the Woman thus his sentence turned. Thy sorrow I will greatly multiply By thy conception; children thou shalt bring In sorrow forth; and to thy husband's will Thine shall submit; he over thee shall rule. On Adam last thus judgement he pronounced. Because thou hast hearkened to the voice of thy wife, And eaten of the tree, concerning which I charged thee, saying, Thou shalt not eat thereof: Cursed is the ground for thy sake; thou in sorrow Shalt eat thereof, all the days of thy life; Thorns also and thistles it shall bring thee forth Unbid; and thou shalt eat the herb of the field; In the sweat of thy face shalt thou eat bread, Till thou return unto the ground; for thou Out of the ground wast taken, know thy birth, For dust thou art, and shalt to dust return. So judged he Man, both Judge and Saviour sent; And the instant stroke of death, denounced that day, Removed far off; then, pitying how they stood Before him naked to the air, that now Must suffer change, disdained not to begin Thenceforth the form of servant to assume; As when he washed his servants feet; so now, As father of his family, he clad Their nakedness with skins of beasts, or slain, Or as the snake with youthful coat repaid; And thought not much to clothe his enemies; Nor he their outward only with the skins Of beasts, but inward nakedness, much more. Opprobrious, with his robe of righteousness, Arraying, covered from his Father's sight. To him with swift ascent he up returned, Into his blissful bosom reassumed In glory, as of old; to him appeased All, though all-knowing, what had passed with Man Recounted, mixing intercession sweet. Mean while, ere thus was sinned and judged on Earth, Within the gates of Hell sat Sin and Death, In counterview within the gates, that now Stood open wide, belching outrageous flame Far into Chaos, since the Fiend passed through, Sin opening; who thus now to Death began. O Son, why sit we here each other viewing Idly, while Satan, our great author, thrives In other worlds, and happier seat provides For us, his offspring dear? It cannot be But that success attends him; if mishap, Ere this he had returned, with fury driven By his avengers; since no place like this Can fit his punishment, or their revenge. Methinks I feel new strength within me rise, Wings growing, and dominion given me large Beyond this deep; whatever draws me on, Or sympathy, or some connatural force, Powerful at greatest distance to unite, With secret amity, things of like kind, By secretest conveyance. Thou, my shade Inseparable, must with me along; For Death from Sin no power can separate. But, lest the difficulty of passing back Stay his return perhaps over this gulf Impassable, impervious; let us try Adventurous work, yet to thy power and mine Not unagreeable, to found a path Over this main from Hell to that new world, Where Satan now prevails; a monument Of merit high to all the infernal host, Easing their passage hence, for intercourse, Or transmigration, as their lot shall lead. Nor can I miss the way, so strongly drawn By this new-felt attraction and instinct. Whom thus the meager Shadow answered soon. Go, whither Fate, and inclination strong, Leads thee; I shall not lag behind, nor err The way, thou leading; such a scent I draw Of carnage, prey innumerable, and taste The savour of death from all things there that live: Nor shall I to the work thou enterprisest Be wanting, but afford thee equal aid. So saying, with delight he snuffed the smell Of mortal change on earth. As when a flock Of ravenous fowl, though many a league remote, Against the day of battle, to a field, Where armies lie encamped, come flying, lured With scent of living carcasses designed For death, the following day, in bloody fight: So scented the grim Feature, and upturned His nostril wide into the murky air; Sagacious of his quarry from so far. Then both from out Hell-gates, into the waste Wide anarchy of Chaos, damp and dark, Flew diverse; and with power (their power was great) Hovering upon the waters, what they met Solid or slimy, as in raging sea Tost up and down, together crouded drove, From each side shoaling towards the mouth of Hell; As when two polar winds, blowing adverse Upon the Cronian sea, together drive Mountains of ice, that stop the imagined way Beyond Petsora eastward, to the rich Cathaian coast. The aggregated soil Death with his mace petrifick, cold and dry, As with a trident, smote; and fixed as firm As Delos, floating once; the rest his look Bound with Gorgonian rigour not to move; And with Asphaltick slime, broad as the gate, Deep to the roots of Hell the gathered beach They fastened, and the mole immense wrought on Over the foaming deep high-arched, a bridge Of length prodigious, joining to the wall Immoveable of this now fenceless world, Forfeit to Death; from hence a passage broad, Smooth, easy, inoffensive, down to Hell. So, if great things to small may be compared, Xerxes, the liberty of Greece to yoke, From Susa, his Memnonian palace high, Came to the sea: and, over Hellespont Bridging his way, Europe with Asia joined, And scourged with many a stroke the indignant waves. Now had they brought the work by wonderous art Pontifical, a ridge of pendant rock, Over the vexed abyss, following the track Of Satan to the self-same place where he First lighted from his wing, and landed safe From out of Chaos, to the outside bare Of this round world: With pins of adamant And chains they made all fast, too fast they made And durable! And now in little space The confines met of empyrean Heaven, And of this World; and, on the left hand, Hell With long reach interposed; three several ways In sight, to each of these three places led. And now their way to Earth they had descried, To Paradise first tending; when, behold! Satan, in likeness of an Angel bright, Betwixt the Centaur and the Scorpion steering His zenith, while the sun in Aries rose: Disguised he came; but those his children dear Their parent soon discerned, though in disguise. He, after Eve seduced, unminded slunk Into the wood fast by; and, changing shape, To observe the sequel, saw his guileful act By Eve, though all unweeting, seconded Upon her husband; saw their shame that sought Vain covertures; but when he saw descend The Son of God to judge them, terrified He fled; not hoping to escape, but shun The present; fearing, guilty, what his wrath Might suddenly inflict; that past, returned By night, and listening where the hapless pair Sat in their sad discourse, and various plaint, Thence gathered his own doom; which understood Not instant, but of future time, with joy And tidings fraught, to Hell he now returned; And at the brink of Chaos, near the foot Of this new wonderous pontifice, unhoped Met, who to meet him came, his offspring dear. Great joy was at their meeting, and at sight Of that stupendious bridge his joy encreased. Long he admiring stood, till Sin, his fair Enchanting daughter, thus the silence broke. O Parent, these are thy magnifick deeds, Thy trophies! which thou viewest as not thine own; Thou art their author, and prime architect: For I no sooner in my heart divined, My heart, which by a secret harmony Still moves with thine, joined in connexion sweet, That thou on earth hadst prospered, which thy looks Now also evidence, but straight I felt, Though distant from thee worlds between, yet felt, That I must after thee, with this thy son; Such fatal consequence unites us three! Hell could no longer hold us in our bounds, Nor this unvoyageable gulf obscure Detain from following thy illustrious track. Thou hast achieved our liberty, confined Within Hell-gates till now; thou us impowered To fortify thus far, and overlay, With this portentous bridge, the dark abyss. Thine now is all this world; thy virtue hath won What thy hands builded not; thy wisdom gained With odds what war hath lost, and fully avenged Our foil in Heaven; here thou shalt monarch reign, There didst not; there let him still victor sway, As battle hath adjudged; from this new world Retiring, by his own doom alienated; And henceforth monarchy with thee divide Of all things, parted by the empyreal bounds, His quadrature, from thy orbicular world; Or try thee now more dangerous to his throne. Whom thus the Prince of darkness answered glad. Fair Daughter, and thou Son and Grandchild both; High proof ye now have given to be the race Of Satan (for I glory in the name, Antagonist of Heaven's Almighty King,) Amply have merited of me, of all The infernal empire, that so near Heaven's door Triumphal with triumphal act have met, Mine, with this glorious work; and made one realm, Hell and this world, one realm, one continent Of easy thorough-fare. Therefore, while I Descend through darkness, on your road with ease, To my associate Powers, them to acquaint With these successes, and with them rejoice; You two this way, among these numerous orbs, All yours, right down to Paradise descend; There dwell, and reign in bliss; thence on the earth Dominion exercise and in the air, Chiefly on Man, sole lord of all declared; Him first make sure your thrall, and lastly kill. My substitutes I send ye, and create Plenipotent on earth, of matchless might Issuing from me: on your joint vigour now My hold of this new kingdom all depends, Through Sin to Death exposed by my exploit. If your joint power prevail, the affairs of Hell No detriment need fear; go, and be strong! So saying he dismissed them; they with speed Their course through thickest constellations held, Spreading their bane; the blasted stars looked wan, And planets, planet-struck, real eclipse Then suffered. The other way Satan went down The causey to Hell-gate: On either side Disparted Chaos overbuilt exclaimed, And with rebounding surge the bars assailed, That scorned his indignation: Through the gate, Wide open and unguarded, Satan passed, And all about found desolate; for those, Appointed to sit there, had left their charge, Flown to the upper world; the rest were all Far to the inland retired, about the walls Of Pandemonium; city and proud seat Of Lucifer, so by allusion called Of that bright star to Satan paragoned; There kept their watch the legions, while the Grand In council sat, solicitous what chance Might intercept their emperour sent; so he Departing gave command, and they observed. As when the Tartar from his Russian foe, By Astracan, over the snowy plains, Retires; or Bactrin Sophi, from the horns Of Turkish crescent, leaves all waste beyond The realm of Aladule, in his retreat To Tauris or Casbeen: So these, the late Heaven-banished host, left desart utmost Hell Many a dark league, reduced in careful watch Round their metropolis; and now expecting Each hour their great adventurer, from the search Of foreign worlds: He through the midst unmarked, In show plebeian Angel militant Of lowest order, passed; and from the door Of that Plutonian hall, invisible Ascended his high throne; which, under state Of richest texture spread, at the upper end Was placed in regal lustre. Down a while He sat, and round about him saw unseen: At last, as from a cloud, his fulgent head And shape star-bright appeared, or brighter; clad With what permissive glory since his fall Was left him, or false glitter: All amazed At that so sudden blaze the Stygian throng Bent their aspect, and whom they wished beheld, Their mighty Chief returned: loud was the acclaim: Forth rushed in haste the great consulting peers, Raised from their dark Divan, and with like joy Congratulant approached him; who with hand Silence, and with these words attention, won. Thrones, Dominations, Princedoms, Virtues, Powers; For in possession such, not only of right, I call ye, and declare ye now; returned Successful beyond hope, to lead ye forth Triumphant out of this infernal pit Abominable, accursed, the house of woe, And dungeon of our tyrant: Now possess, As Lords, a spacious world, to our native Heaven Little inferiour, by my adventure hard With peril great achieved. Long were to tell What I have done; what suffered;with what pain Voyaged th' unreal, vast, unbounded deep Of horrible confusion; over which By Sin and Death a broad way now is paved, To expedite your glorious march; but I Toiled out my uncouth passage, forced to ride The untractable abyss, plunged in the womb Of unoriginal Night and Chaos wild; That, jealous of their secrets, fiercely opposed My journey strange, with clamorous uproar Protesting Fate supreme; thence how I found The new created world, which fame in Heaven Long had foretold, a fabrick wonderful Of absolute perfection! therein Man Placed in a Paradise, by our exile Made happy: Him by fraud I have seduced From his Creator; and, the more to encrease Your wonder, with an apple; he, thereat Offended, worth your laughter! hath given up Both his beloved Man, and all his world, To Sin and Death a prey, and so to us, Without our hazard, labour, or alarm; To range in, and to dwell, and over Man To rule, as over all he should have ruled. True is, me also he hath judged, or rather Me not, but the brute serpent in whose shape Man I deceived: that which to me belongs, Is enmity which he will put between Me and mankind; I am to bruise his heel; His seed, when is not set, shall bruise my head: A world who would not purchase with a bruise, Or much more grievous pain?--Ye have the account Of my performance: What remains, ye Gods, But up, and enter now into full bliss? So having said, a while he stood, expecting Their universal shout, and high applause, To fill his ear; when, contrary, he hears On all sides, from innumerable tongues, A dismal universal hiss, the sound Of publick scorn; he wondered, but not long Had leisure, wondering at himself now more, His visage drawn he felt to sharp and spare; His arms clung to his ribs; his legs entwining Each other, till supplanted down he fell A monstrous serpent on his belly prone, Reluctant, but in vain; a greater power Now ruled him, punished in the shape he sinned, According to his doom: he would have spoke, But hiss for hiss returned with forked tongue To forked tongue; for now were all transformed Alike, to serpents all, as accessories To his bold riot: Dreadful was the din Of hissing through the hall, thick swarming now With complicated monsters head and tail, Scorpion, and Asp, and Amphisbaena dire, Cerastes horned, Hydrus, and Elops drear, And Dipsas; (not so thick swarmed once the soil Bedropt with blood of Gorgon, or the isle Ophiusa,) but still greatest he the midst, Now Dragon grown, larger than whom the sun Ingendered in the Pythian vale or slime, Huge Python, and his power no less he seemed Above the rest still to retain; they all Him followed, issuing forth to the open field, Where all yet left of that revolted rout, Heaven-fallen, in station stood or just array; Sublime with expectation when to see In triumph issuing forth their glorious Chief; They saw, but other sight instead! a croud Of ugly serpents; horrour on them fell, And horrid sympathy; for, what they saw, They felt themselves, now changing; down their arms, Down fell both spear and shield; down they as fast; And the dire hiss renewed, and the dire form Catched, by contagion; like in punishment, As in their crime. Thus was the applause they meant, Turned to exploding hiss, triumph to shame Cast on themselves from their own mouths. There stood A grove hard by, sprung up with this their change, His will who reigns above, to aggravate Their penance, laden with fair fruit, like that Which grew in Paradise, the bait of Eve Used by the Tempter: on that prospect strange Their earnest eyes they fixed, imagining For one forbidden tree a multitude Now risen, to work them further woe or shame; Yet, parched with scalding thirst and hunger fierce, Though to delude them sent, could not abstain; But on they rolled in heaps, and, up the trees Climbing, sat thicker than the snaky locks That curled Megaera: greedily they plucked The fruitage fair to sight, like that which grew Near that bituminous lake where Sodom flamed; This more delusive, not the touch, but taste Deceived; they, fondly thinking to allay Their appetite with gust, instead of fruit Chewed bitter ashes, which the offended taste With spattering noise rejected: oft they assayed, Hunger and thirst constraining; drugged as oft, With hatefullest disrelish writhed their jaws, With soot and cinders filled; so oft they fell Into the same illusion, not as Man Whom they triumphed once lapsed. Thus were they plagued And worn with famine, long and ceaseless hiss, Till their lost shape, permitted, they resumed; Yearly enjoined, some say, to undergo, This annual humbling certain numbered days, To dash their pride, and joy, for Man seduced. However, some tradition they dispersed Among the Heathen, of their purchase got, And fabled how the Serpent, whom they called Ophion, with Eurynome, the wide-- Encroaching Eve perhaps, had first the rule Of high Olympus; thence by Saturn driven And Ops, ere yet Dictaean Jove was born. Mean while in Paradise the hellish pair Too soon arrived; Sin, there in power before, Once actual; now in body, and to dwell Habitual habitant; behind her Death, Close following pace for pace, not mounted yet On his pale horse: to whom Sin thus began. Second of Satan sprung, all-conquering Death! What thinkest thou of our empire now, though earned With travel difficult, not better far Than still at Hell's dark threshold to have sat watch, Unnamed, undreaded, and thyself half starved? Whom thus the Sin-born monster answered soon. To me, who with eternal famine pine, Alike is Hell, or Paradise, or Heaven; There best, where most with ravine I may meet; Which here, though plenteous, all too little seems To stuff this maw, this vast unhide-bound corps. To whom the incestuous mother thus replied. Thou therefore on these herbs, and fruits, and flowers, Feed first; on each beast next, and fish, and fowl; No homely morsels! and, whatever thing The sithe of Time mows down, devour unspared; Till I, in Man residing, through the race, His thoughts, his looks, words, actions, all infect; And season him thy last and sweetest prey. This said, they both betook them several ways, Both to destroy, or unimmortal make All kinds, and for destruction to mature Sooner or later; which the Almighty seeing, From his transcendent seat the Saints among, To those bright Orders uttered thus his voice. See, with what heat these dogs of Hell advance To waste and havock yonder world, which I So fair and good created; and had still Kept in that state, had not the folly of Man Let in these wasteful furies, who impute Folly to me; so doth the Prince of Hell And his adherents, that with so much ease I suffer them to enter and possess A place so heavenly; and, conniving, seem To gratify my scornful enemies, That laugh, as if, transported with some fit Of passion, I to them had quitted all, At random yielded up to their misrule; And know not that I called, and drew them thither, My Hell-hounds, to lick up the draff and filth Which Man's polluting sin with taint hath shed On what was pure; til, crammed and gorged, nigh burst With sucked and glutted offal, at one sling Of thy victorious arm, well-pleasing Son, Both Sin, and Death, and yawning Grave, at last, Through Chaos hurled, obstruct the mouth of Hell For ever, and seal up his ravenous jaws. Then Heaven and Earth renewed shall be made pure To sanctity, that shall receive no stain: Till then, the curse pronounced on both precedes. He ended, and the heavenly audience loud Sung Halleluiah, as the sound of seas, Through multitude that sung: Just are thy ways, Righteous are thy decrees on all thy works; Who can extenuate thee? Next, to the Son, Destined Restorer of mankind, by whom New Heaven and Earth shall to the ages rise, Or down from Heaven descend.--Such was their song; While the Creator, calling forth by name His mighty Angels, gave them several charge, As sorted best with present things. The sun Had first his precept so to move, so shine, As might affect the earth with cold and heat Scarce tolerable; and from the north to call Decrepit winter; from the south to bring Solstitial summer's heat. To the blanc moon Her office they prescribed; to the other five Their planetary motions, and aspects, In sextile, square, and trine, and opposite, Of noxious efficacy, and when to join In synod unbenign; and taught the fixed Their influence malignant when to shower, Which of them rising with the sun, or falling, Should prove tempestuous: To the winds they set Their corners, when with bluster to confound Sea, air, and shore; the thunder when to roll With terrour through the dark aereal hall. Some say, he bid his Angels turn ascanse The poles of earth, twice ten degrees and more, From the sun's axle; they with labour pushed Oblique the centrick globe: Some say, the sun Was bid turn reins from the equinoctial road Like distant breadth to Taurus with the seven Atlantick Sisters, and the Spartan Twins, Up to the Tropick Crab: thence down amain By Leo, and the Virgin, and the Scales, As deep as Capricorn; to bring in change Of seasons to each clime; else had the spring Perpetual smiled on earth with vernant flowers, Equal in days and nights, except to those Beyond the polar circles; to them day Had unbenighted shone, while the low sun, To recompense his distance, in their sight Had rounded still the horizon, and not known Or east or west; which had forbid the snow From cold Estotiland, and south as far Beneath Magellan. At that tasted fruit The sun, as from Thyestean banquet, turned His course intended; else, how had the world Inhabited, though sinless, more than now, Avoided pinching cold and scorching heat? These changes in the Heavens, though slow, produced Like change on sea and land; sideral blast, Vapour, and mist, and exhalation hot, Corrupt and pestilent: Now from the north Of Norumbega, and the Samoed shore, Bursting their brazen dungeon, armed with ice, And snow, and hail, and stormy gust and flaw, Boreas, and Caecias, and Argestes loud, And Thrascias, rend the woods, and seas upturn; With adverse blast upturns them from the south Notus, and Afer black with thunderous clouds From Serraliona; thwart of these, as fierce, Forth rush the Levant and the Ponent winds, Eurus and Zephyr, with their lateral noise, Sirocco and Libecchio. Thus began Outrage from lifeless things; but Discord first, Daughter of Sin, among the irrational Death introduced, through fierce antipathy: Beast now with beast 'gan war, and fowl with fowl, And fish with fish; to graze the herb all leaving, Devoured each other; nor stood much in awe Of Man, but fled him; or, with countenance grim, Glared on him passing. These were from without The growing miseries, which Adam saw Already in part, though hid in gloomiest shade, To sorrow abandoned, but worse felt within; And, in a troubled sea of passion tost, Thus to disburden sought with sad complaint. O miserable of happy! Is this the end Of this new glorious world, and me so late The glory of that glory, who now become Accursed, of blessed? hide me from the face Of God, whom to behold was then my highth Of happiness!--Yet well, if here would end The misery; I deserved it, and would bear My own deservings; but this will not serve: All that I eat or drink, or shall beget, Is propagated curse. O voice, once heard Delightfully, Encrease and multiply; Now death to hear! for what can I encrease, Or multiply, but curses on my head? Who of all ages to succeed, but, feeling The evil on him brought by me, will curse My head? Ill fare our ancestor impure, For this we may thank Adam! but his thanks Shall be the execration: so, besides Mine own that bide upon me, all from me Shall with a fierce reflux on me rebound; On me, as on their natural center, light Heavy, though in their place. O fleeting joys Of Paradise, dear bought with lasting woes! Did I request thee, Maker, from my clay To mould me Man? did I solicit thee From darkness to promote me, or here place In this delicious garden? As my will Concurred not to my being, it were but right And equal to reduce me to my dust; Desirous to resign and render back All I received; unable to perform Thy terms too hard, by which I was to hold The good I sought not. To the loss of that, Sufficient penalty, why hast thou added The sense of endless woes? Inexplicable Why am I mocked with death, and lengthened out To deathless pain? How gladly would I meet Mortality my sentence, and be earth Insensible! How glad would lay me down As in my mother's lap! There I should rest, And sleep secure; his dreadful voice no more Would thunder in my ears; no fear of worse To me, and to my offspring, would torment me With cruel expectation. Yet one doubt Pursues me still, lest all I cannot die; Lest that pure breath of life, the spirit of Man Which God inspired, cannot together perish With this corporeal clod; then, in the grave, Or in some other dismal place, who knows But I shall die a living death? O thought Horrid, if true! Yet why? It was but breath Of life that sinned; what dies but what had life And sin? The body properly had neither, All of me then shall die: let this appease The doubt, since human reach no further knows. For though the Lord of all be infinite, Is his wrath also? Be it, Man is not so, But mortal doomed. How can he exercise Wrath without end on Man, whom death must end? Can he make deathless death? That were to make Strange contradiction, which to God himself Impossible is held; as argument Of weakness, not of power. Will he draw out, For anger's sake, finite to infinite, In punished Man, to satisfy his rigour, Satisfied never? That were to extend His sentence beyond dust and Nature's law; By which all causes else, according still To the reception of their matter, act; Not to the extent of their own sphere. But say That death be not one stroke, as I supposed, Bereaving sense, but endless misery From this day onward; which I feel begun Both in me, and without me; and so last To perpetuity;--Ay me!that fear Comes thundering back with dreadful revolution On my defenceless head; both Death and I Am found eternal, and incorporate both; Nor I on my part single; in me all Posterity stands cursed: Fair patrimony That I must leave ye, Sons! O, were I able To waste it all myself, and leave ye none! So disinherited, how would you bless Me, now your curse! Ah, why should all mankind, For one man's fault, thus guiltless be condemned, It guiltless? But from me what can proceed, But all corrupt; both mind and will depraved Not to do only, but to will the same With me? How can they then acquitted stand In sight of God? Him, after all disputes, Forced I absolve: all my evasions vain, And reasonings, though through mazes, lead me still But to my own conviction: first and last On me, me only, as the source and spring Of all corruption, all the blame lights due; So might the wrath! Fond wish!couldst thou support That burden, heavier than the earth to bear; Than all the world much heavier, though divided With that bad Woman? Thus, what thou desirest, And what thou fearest, alike destroys all hope Of refuge, and concludes thee miserable Beyond all past example and future; To Satan only like both crime and doom. O Conscience! into what abyss of fears And horrours hast thou driven me; out of which I find no way, from deep to deeper plunged! Thus Adam to himself lamented loud, Through the still night; not now, as ere Man fell, Wholesome, and cool, and mild, but with black air Accompanied; with damps, and dreadful gloom; Which to his evil conscience represented All things with double terrour: On the ground Outstretched he lay, on the cold ground; and oft Cursed his creation; Death as oft accused Of tardy execution, since denounced The day of his offence. Why comes not Death, Said he, with one thrice-acceptable stroke To end me? Shall Truth fail to keep her word, Justice Divine not hasten to be just? But Death comes not at call; Justice Divine Mends not her slowest pace for prayers or cries, O woods, O fountains, hillocks, dales, and bowers! With other echo late I taught your shades To answer, and resound far other song.-- Whom thus afflicted when sad Eve beheld, Desolate where she sat, approaching nigh, Soft words to his fierce passion she assayed: But her with stern regard he thus repelled. Out of my sight, thou Serpent! That name best Befits thee with him leagued, thyself as false And hateful; nothing wants, but that thy shape, Like his, and colour serpentine, may show Thy inward fraud; to warn all creatures from thee Henceforth; lest that too heavenly form, pretended To hellish falshood, snare them! But for thee I had persisted happy; had not thy pride And wandering vanity, when least was safe, Rejected my forewarning, and disdained Not to be trusted; longing to be seen, Though by the Devil himself; him overweening To over-reach; but, with the serpent meeting, Fooled and beguiled; by him thou, I by thee To trust thee from my side; imagined wise, Constant, mature, proof against all assaults; And understood not all was but a show, Rather than solid virtue; all but a rib Crooked by nature, bent, as now appears, More to the part sinister, from me drawn; Well if thrown out, as supernumerary To my just number found. O! why did God, Creator wise, that peopled highest Heaven With Spirits masculine, create at last This novelty on earth, this fair defect Of nature, and not fill the world at once With Men, as Angels, without feminine; Or find some other way to generate Mankind? This mischief had not been befallen, And more that shall befall; innumerable Disturbances on earth through female snares, And strait conjunction with this sex: for either He never shall find out fit mate, but such As some misfortune brings him, or mistake; Or whom he wishes most shall seldom gain Through her perverseness, but shall see her gained By a far worse; or, if she love, withheld By parents; or his happiest choice too late Shall meet, already linked and wedlock-bound To a fell adversary, his hate or shame: Which infinite calamity shall cause To human life, and houshold peace confound. He added not, and from her turned; but Eve, Not so repulsed, with tears that ceased not flowing And tresses all disordered, at his feet Fell humble; and, embracing them, besought His peace, and thus proceeded in her plaint. Forsake me not thus, Adam! witness Heaven What love sincere, and reverence in my heart I bear thee, and unweeting have offended, Unhappily deceived! Thy suppliant I beg, and clasp thy knees; bereave me not, Whereon I live, thy gentle looks, thy aid, Thy counsel, in this uttermost distress, My only strength and stay: Forlorn of thee, Whither shall I betake me, where subsist? While yet we live, scarce one short hour perhaps, Between us two let there be peace; both joining, As joined in injuries, one enmity Against a foe by doom express assigned us, That cruel Serpent: On me exercise not Thy hatred for this misery befallen; On me already lost, me than thyself More miserable! Both have sinned;but thou Against God only; I against God and thee; And to the place of judgement will return, There with my cries importune Heaven; that all The sentence, from thy head removed, may light On me, sole cause to thee of all this woe; Me, me only, just object of his ire! She ended weeping; and her lowly plight, Immoveable, till peace obtained from fault Acknowledged and deplored, in Adam wrought Commiseration: Soon his heart relented Towards her, his life so late, and sole delight, Now at his feet submissive in distress; Creature so fair his reconcilement seeking, His counsel, whom she had displeased, his aid: As one disarmed, his anger all he lost, And thus with peaceful words upraised her soon. Unwary, and too desirous, as before, So now of what thou knowest not, who desirest The punishment all on thyself; alas! Bear thine own first, ill able to sustain His full wrath, whose thou feelest as yet least part, And my displeasure bearest so ill. If prayers Could alter high decrees, I to that place Would speed before thee, and be louder heard, That on my head all might be visited; Thy frailty and infirmer sex forgiven, To me committed, and by me exposed. But rise;--let us no more contend, nor blame Each other, blamed enough elsewhere; but strive In offices of love, how we may lighten Each other's burden, in our share of woe; Since this day's death denounced, if aught I see, Will prove no sudden, but a slow-paced evil; A long day's dying, to augment our pain; And to our seed (O hapless seed!) derived. To whom thus Eve, recovering heart, replied. Adam, by sad experiment I know How little weight my words with thee can find, Found so erroneous; thence by just event Found so unfortunate: Nevertheless, Restored by thee, vile as I am, to place Of new acceptance, hopeful to regain Thy love, the sole contentment of my heart Living or dying, from thee I will not hide What thoughts in my unquiet breast are risen, Tending to some relief of our extremes, Or end; though sharp and sad, yet tolerable, As in our evils, and of easier choice. If care of our descent perplex us most, Which must be born to certain woe, devoured By Death at last; and miserable it is To be to others cause of misery, Our own begotten, and of our loins to bring Into this cursed world a woeful race, That after wretched life must be at last Food for so foul a monster; in thy power It lies, yet ere conception to prevent The race unblest, to being yet unbegot. Childless thou art, childless remain: so Death Shall be deceived his glut, and with us two Be forced to satisfy his ravenous maw. But if thou judge it hard and difficult, Conversing, looking, loving, to abstain From love's due rights, nuptial embraces sweet; And with desire to languish without hope, Before the present object languishing With like desire; which would be misery And torment less than none of what we dread; Then, both ourselves and seed at once to free From what we fear for both, let us make short, -- Let us seek Death; -- or, he not found, supply With our own hands his office on ourselves: Why stand we longer shivering under fears, That show no end but death, and have the power, Of many ways to die the shortest choosing, Destruction with destruction to destroy? -- She ended here, or vehement despair Broke off the rest: so much of death her thoughts Had entertained, as dyed her cheeks with pale. But Adam, with such counsel nothing swayed, To better hopes his more attentive mind Labouring had raised; and thus to Eve replied. Eve, thy contempt of life and pleasure seems To argue in thee something more sublime And excellent, than what thy mind contemns; But self-destruction therefore sought, refutes That excellence thought in thee; and implies, Not thy contempt, but anguish and regret For loss of life and pleasure overloved. Or if thou covet death, as utmost end Of misery, so thinking to evade The penalty pronounced; doubt not but God Hath wiselier armed his vengeful ire, than so To be forestalled; much more I fear lest death, So snatched, will not exempt us from the pain We are by doom to pay; rather, such acts Of contumacy will provoke the Highest To make death in us live: Then let us seek Some safer resolution, which methinks I have in view, calling to mind with heed Part of our sentence, that thy seed shall bruise The Serpent's head; piteous amends! unless Be meant, whom I conjecture, our grand foe, Satan; who, in the serpent, hath contrived Against us this deceit: To crush his head Would be revenge indeed! which will be lost By death brought on ourselves, or childless days Resolved, as thou proposest; so our foe Shal 'scape his punishment ordained, and we Instead shall double ours upon our heads. No more be mentioned then of violence Against ourselves; and wilful barrenness, That cuts us off from hope; and savours only Rancour and pride, impatience and despite, Reluctance against God and his just yoke Laid on our necks. Remember with what mild And gracious temper he both heard, and judged, Without wrath or reviling; we expected Immediate dissolution, which we thought Was meant by death that day; when lo!to thee Pains only in child-bearing were foretold, And bringing forth; soon recompensed with joy, Fruit of thy womb: On me the curse aslope Glanced on the ground; with labour I must earn My bread; what harm? Idleness had been worse; My labour will sustain me; and, lest cold Or heat should injure us, his timely care Hath, unbesought, provided; and his hands Clothed us unworthy, pitying while he judged; How much more, if we pray him, will his ear Be open, and his heart to pity incline, And teach us further by what means to shun The inclement seasons, rain, ice, hail, and snow! Which now the sky, with various face, begins To show us in this mountain; while the winds Blow moist and keen, shattering the graceful locks Of these fair spreading trees; which bids us seek Some better shroud, some better warmth to cherish Our limbs benummed, ere this diurnal star Leave cold the night, how we his gathered beams Reflected may with matter sere foment; Or, by collision of two bodies, grind The air attrite to fire; as late the clouds Justling, or pushed with winds, rude in their shock, Tine the slant lightning; whose thwart flame, driven down Kindles the gummy bark of fir or pine; And sends a comfortable heat from far, Which might supply the sun: Such fire to use, And what may else be remedy or cure To evils which our own misdeeds have wrought, He will instruct us praying, and of grace Beseeching him; so as we need not fear To pass commodiously this life, sustained By him with many comforts, till we end In dust, our final rest and native home. What better can we do, than, to the place Repairing where he judged us, prostrate fall Before him reverent; and there confess Humbly our faults, and pardon beg; with tears Watering the ground, and with our sighs the air Frequenting, sent from hearts contrite, in sign Of sorrow unfeigned, and humiliation meek Book XI Undoubtedly he will relent, and turn From his displeasure; in whose look serene, When angry most he seemed and most severe, What else but favour, grace, and mercy, shone? So spake our father penitent; nor Eve Felt less remorse: they, forthwith to the place Repairing where he judged them, prostrate fell Before him reverent; and both confessed Humbly their faults, and pardon begged; with tears Watering the ground, and with their sighs the air Frequenting, sent from hearts contrite, in sign Of sorrow unfeigned, and humiliation meek. Thus they, in lowliest plight, repentant stood Praying; for from the mercy-seat above Prevenient grace descending had removed The stony from their hearts, and made new flesh Regenerate grow instead; that sighs now breathed Unutterable; which the Spirit of prayer Inspired, and winged for Heaven with speedier flight Than loudest oratory: Yet their port Not of mean suitors; nor important less Seemed their petition, than when the ancient pair In fables old, less ancient yet than these, Deucalion and chaste Pyrrha, to restore The race of mankind drowned, before the shrine Of Themis stood devout. To Heaven their prayers Flew up, nor missed the way, by envious winds Blown vagabond or frustrate: in they passed Dimensionless through heavenly doors; then clad With incense, where the golden altar fumed, By their great intercessour, came in sight Before the Father's throne: them the glad Son Presenting, thus to intercede began. See$ Father, what first-fruits on earth are sprung From thy implanted grace in Man; these sighs And prayers, which in this golden censer mixed With incense, I thy priest before thee bring; Fruits of more pleasing savour, from thy seed Sown with contrition in his heart, than those Which, his own hand manuring, all the trees Of Paradise could have produced, ere fallen From innocence. Now therefore, bend thine ear To supplication; hear his sighs, though mute; Unskilful with what words to pray, let me Interpret for him; me, his advocate And propitiation; all his works on me, Good, or not good, ingraft; my merit those Shall perfect, and for these my death shall pay. Accept me; and, in me, from these receive The smell of peace toward mankind: let him live Before thee reconciled, at least his days Numbered, though sad; till death, his doom, (which I To mitigate thus plead, not to reverse,) To better life shall yield him: where with me All my redeemed may dwell in joy and bliss; Made one with me, as I with thee am one. To whom the Father, without cloud, serene. All thy request for Man, accepted Son, Obtain; all thy request was my decree: But, longer in that Paradise to dwell, The law I gave to Nature him forbids: Those pure immortal elements, that know, No gross, no unharmonious mixture foul, Eject him, tainted now; and purge him off, As a distemper, gross, to air as gross, And mortal food; as may dispose him best For dissolution wrought by sin, that first Distempered all things, and of incorrupt Corrupted. I, at first, with two fair gifts Created him endowed; with happiness, And immortality: that fondly lost, This other served but to eternize woe; Till I provided death: so death becomes His final remedy; and, after life, Tried in sharp tribulation, and refined By faith and faithful works, to second life, Waked in the renovation of the just, Resigns him up with Heaven and Earth renewed. But let us call to synod all the Blest, Through Heaven's wide bounds: from them I will not hide My judgements; how with mankind I proceed, As how with peccant Angels late they saw, And in their state, though firm, stood more confirmed. He ended, and the Son gave signal high To the bright minister that watched; he blew His trumpet, heard in Oreb since perhaps When God descended, and perhaps once more To sound at general doom. The angelick blast Filled all the regions: from their blisful bowers Of amarantine shade, fountain or spring, By the waters of life, where'er they sat In fellowships of joy, the sons of light Hasted, resorting to the summons high; And took their seats; till from his throne supreme The Almighty thus pronounced his sovran will. O Sons, like one of us Man is become To know both good and evil, since his taste Of that defended fruit; but let him boast His knowledge of good lost, and evil got; Happier! had it sufficed him to have known Good by itself, and evil not at all. He sorrows now, repents, and prays contrite, My motions in him; longer than they move, His heart I know, how variable and vain, Self-left. Lest therefore his now bolder hand Reach also of the tree of life, and eat, And live for ever, dream at least to live For ever, to remove him I decree, And send him from the garden forth to till The ground whence he was taken, fitter soil. Michael, this my behest have thou in charge; Take to thee from among the Cherubim Thy choice of flaming warriours, lest the Fiend, Or in behalf of Man, or to invade Vacant possession, some new trouble raise: Haste thee, and from the Paradise of God Without remorse drive out the sinful pair; From hallowed ground the unholy; and denounce To them, and to their progeny, from thence Perpetual banishment. Yet, lest they faint At the sad sentence rigorously urged, (For I behold them softened, and with tears Bewailing their excess,) all terrour hide. If patiently thy bidding they obey, Dismiss them not disconsolate; reveal To Adam what shall come in future days, As I shall thee enlighten; intermix My covenant in the Woman's seed renewed; So send them forth, though sorrowing, yet in peace: And on the east side of the garden place, Where entrance up from Eden easiest climbs, Cherubick watch; and of a sword the flame Wide-waving; all approach far off to fright, And guard all passage to the tree of life: Lest Paradise a receptacle prove To Spirits foul, and all my trees their prey; With whose stolen fruit Man once more to delude. He ceased; and the arch-angelick Power prepared For swift descent; with him the cohort bright Of watchful Cherubim: four faces each Had, like a double Janus; all their shape Spangled with eyes more numerous than those Of Argus, and more wakeful than to drouse, Charmed with Arcadian pipe, the pastoral reed Of Hermes, or his opiate rod. Mean while, To re-salute the world with sacred light, Leucothea waked; and with fresh dews imbalmed The earth; when Adam and first matron Eve Had ended now their orisons, and found Strength added from above; new hope to spring Out of despair; joy, but with fear yet linked; Which thus to Eve his welcome words renewed. Eve, easily my faith admit, that all The good which we enjoy from Heaven descends; But, that from us aught should ascend to Heaven So prevalent as to concern the mind Of God high-blest, or to incline his will, Hard to belief may seem; yet this will prayer Or one short sigh of human breath, upborne Even to the seat of God. For since I sought By prayer the offended Deity to appease; Kneeled, and before him humbled all my heart; Methought I saw him placable and mild, Bending his ear; persuasion in me grew That I was heard with favour; peace returned Home to my breast, and to my memory His promise, that thy seed shall bruise our foe; Which, then not minded in dismay, yet now Assures me that the bitterness of death Is past, and we shall live. Whence hail to thee, Eve rightly called, mother of all mankind, Mother of all things living, since by thee Man is to live; and all things live for Man. To whom thus Eve with sad demeanour meek. Ill-worthy I such title should belong To me transgressour; who, for thee ordained A help, became thy snare; to me reproach Rather belongs, distrust, and all dispraise: But infinite in pardon was my Judge, That I, who first brought death on all, am graced The source of life; next favourable thou, Who highly thus to entitle me vouchsaf'st, Far other name deserving. But the field To labour calls us, now with sweat imposed, Though after sleepless night; for see!the morn, All unconcerned with our unrest, begins Her rosy progress smiling: let us forth; I never from thy side henceforth to stray, Where'er our day's work lies, though now enjoined Laborious, till day droop; while here we dwell, What can be toilsome in these pleasant walks? Here let us live, though in fallen state, content. So spake, so wished much humbled Eve; but Fate Subscribed not: Nature first gave signs, impressed On bird, beast, air; air suddenly eclipsed, After short blush of morn; nigh in her sight The bird of Jove, stooped from his aery tour, Two birds of gayest plume before him drove; Down from a hill the beast that reigns in woods, First hunter then, pursued a gentle brace, Goodliest of all the forest, hart and hind; Direct to the eastern gate was bent their flight. Adam observed, and with his eye the chase Pursuing, not unmoved, to Eve thus spake. O Eve, some further change awaits us nigh, Which Heaven, by these mute signs in Nature, shows Forerunners of his purpose; or to warn Us, haply too secure, of our discharge From penalty, because from death released Some days: how long, and what till then our life, Who knows? or more than this, that we are dust, And thither must return, and be no more? Why else this double object in our sight Of flight pursued in the air, and o'er the ground, One way the self-same hour? why in the east Darkness ere day's mid-course, and morning-light More orient in yon western cloud, that draws O'er the blue firmament a radiant white, And slow descends with something heavenly fraught? He erred not; for by this the heavenly bands Down from a sky of jasper lighted now In Paradise, and on a hill made halt; A glorious apparition, had not doubt And carnal fear that day dimmed Adam's eye. Not that more glorious, when the Angels met Jacob in Mahanaim, where he saw The field pavilioned with his guardians bright; Nor that, which on the flaming mount appeared In Dothan, covered with a camp of fire, Against the Syrian king, who to surprise One man, assassin-like, had levied war, War unproclaimed. The princely Hierarch In their bright stand there left his Powers, to seise Possession of the garden; he alone, To find where Adam sheltered, took his way, Not unperceived of Adam; who to Eve, While the great visitant approached, thus spake. Eve$ now expect great tidings, which perhaps Of us will soon determine, or impose New laws to be observed; for I descry, From yonder blazing cloud that veils the hill, One of the heavenly host; and, by his gait, None of the meanest; some great Potentate Or of the Thrones above; such majesty Invests him coming! yet not terrible, That I should fear; nor sociably mild, As Raphael, that I should much confide; But solemn and sublime; whom not to offend, With reverence I must meet, and thou retire. He ended: and the Arch-Angel soon drew nigh, Not in his shape celestial, but as man Clad to meet man; over his lucid arms A military vest of purple flowed, Livelier than Meliboean, or the grain Of Sarra, worn by kings and heroes old In time of truce; Iris had dipt the woof; His starry helm unbuckled showed him prime In manhood where youth ended; by his side, As in a glistering zodiack, hung the sword, Satan's dire dread; and in his hand the spear. Adam bowed low; he, kingly, from his state Inclined not, but his coming thus declared. Adam, Heaven's high behest no preface needs: Sufficient that thy prayers are heard; and Death, Then due by sentence when thou didst transgress, Defeated of his seisure many days Given thee of grace; wherein thou mayest repent, And one bad act with many deeds well done Mayest cover: Well may then thy Lord, appeased, Redeem thee quite from Death's rapacious claim; But longer in this Paradise to dwell Permits not: to remove thee I am come, And send thee from the garden forth to till The ground whence thou wast taken, fitter soil. He added not; for Adam at the news Heart-struck with chilling gripe of sorrow stood, That all his senses bound; Eve, who unseen Yet all had heard, with audible lament Discovered soon the place of her retire. O unexpected stroke, worse than of Death! Must I thus leave thee$ Paradise? thus leave Thee, native soil! these happy walks and shades, Fit haunt of Gods? where I had hope to spend, Quiet though sad, the respite of that day That must be mortal to us both. O flowers, That never will in other climate grow, My early visitation, and my last ;t even, which I bred up with tender hand From the first opening bud, and gave ye names! Who now shall rear ye to the sun, or rank Your tribes, and water from the ambrosial fount? Thee lastly, nuptial bower! by me adorned With what to sight or smell was sweet! from thee How shall I part, and whither wander down Into a lower world; to this obscure And wild? how shall we breathe in other air Less pure, accustomed to immortal fruits? Whom thus the Angel interrupted mild. Lament not, Eve, but patiently resign What justly thou hast lost, nor set thy heart, Thus over-fond, on that which is not thine: Thy going is not lonely; with thee goes Thy husband; whom to follow thou art bound; Where he abides, think there thy native soil. Adam, by this from the cold sudden damp Recovering, and his scattered spirits returned, To Michael thus his humble words addressed. Celestial, whether among the Thrones, or named Of them the highest; for such of shape may seem Prince above princes! gently hast thou told Thy message, which might else in telling wound, And in performing end us; what besides Of sorrow, and dejection, and despair, Our frailty can sustain, thy tidings bring, Departure from this happy place, our sweet Recess, and only consolation left Familiar to our eyes! all places else Inhospitable appear, and desolate; Nor knowing us, nor known: And, if by prayer Incessant I could hope to change the will Of Him who all things can, I would not cease To weary him with my assiduous cries: But prayer against his absolute decree No more avails than breath against the wind, Blown stifling back on him that breathes it forth: Therefore to his great bidding I submit. This most afflicts me, that, departing hence, As from his face I shall be hid, deprived His blessed countenance: Here I could frequent With worship place by place where he vouchsafed Presence Divine; and to my sons relate, 'On this mount he appeared; under this tree 'Stood visible; among these pines his voice 'I heard; here with him at this fountain talked: So many grateful altars I would rear Of grassy turf, and pile up every stone Of lustre from the brook, in memory, Or monument to ages; and theron Offer sweet-smelling gums, and fruits, and flowers: In yonder nether world where shall I seek His bright appearances, or foot-step trace? For though I fled him angry, yet recalled To life prolonged and promised race, I now Gladly behold though but his utmost skirts Of glory; and far off his steps adore. To whom thus Michael with regard benign. Adam, thou knowest Heaven his, and all the Earth; Not this rock only; his Omnipresence fills Land, sea, and air, and every kind that lives, Fomented by his virtual power and warmed: All the earth he gave thee to possess and rule, No despicable gift; surmise not then His presence to these narrow bounds confined Of Paradise, or Eden: this had been Perhaps thy capital seat, from whence had spread All generations; and had hither come From all the ends of the earth, to celebrate And reverence thee, their great progenitor. But this pre-eminence thou hast lost, brought down To dwell on even ground now with thy sons: Yet doubt not but in valley, and in plain, God is, as here; and will be found alike Present; and of his presence many a sign Still following thee, still compassing thee round With goodness and paternal love, his face Express, and of his steps the track divine. Which that thou mayest believe, and be confirmed Ere thou from hence depart; know, I am sent To show thee what shall come in future days To thee, and to thy offspring: good with bad Expect to hear; supernal grace contending With sinfulness of men; thereby to learn True patience, and to temper joy with fear And pious sorrow; equally inured By moderation either state to bear, Prosperous or adverse: so shalt thou lead Safest thy life, and best prepared endure Thy mortal passage when it comes.--Ascend This hill; let Eve (for I have drenched her eyes) Here sleep below; while thou to foresight wakest; As once thou sleptst, while she to life was formed. To whom thus Adam gratefully replied. Ascend, I follow thee, safe Guide, the path Thou leadest me; and to the hand of Heaven submit, However chastening; to the evil turn My obvious breast; arming to overcome By suffering, and earn rest from labour won, If so I may attain. -- So both ascend In the visions of God. It was a hill, Of Paradise the highest; from whose top The hemisphere of earth, in clearest ken, Stretched out to the amplest reach of prospect lay. Not higher that hill, nor wider looking round, Whereon, for different cause, the Tempter set Our second Adam, in the wilderness; To show him all Earth's kingdoms, and their glory. His eye might there command wherever stood City of old or modern fame, the seat Of mightiest empire, from the destined walls Of Cambalu, seat of Cathaian Can, And Samarchand by Oxus, Temir's throne, To Paquin of Sinaean kings; and thence To Agra and Lahor of great Mogul, Down to the golden Chersonese; or where The Persian in Ecbatan sat, or since In Hispahan; or where the Russian Ksar In Mosco; or the Sultan in Bizance, Turchestan-born; nor could his eye not ken The empire of Negus to his utmost port Ercoco, and the less maritim kings Mombaza, and Quiloa, and Melind, And Sofala, thought Ophir, to the realm Of Congo, and Angola farthest south; Or thence from Niger flood to Atlas mount The kingdoms of Almansor, Fez and Sus, Morocco, and Algiers, and Tremisen; On Europe thence, and where Rome was to sway The world: in spirit perhaps he also saw Rich Mexico, the seat of Montezume, And Cusco in Peru, the richer seat Of Atabalipa; and yet unspoiled Guiana, whose great city Geryon's sons Call El Dorado. But to nobler sights Michael from Adam's eyes the film removed, Which that false fruit that promised clearer sight Had bred; then purged with euphrasy and rue The visual nerve, for he had much to see; And from the well of life three drops instilled. So deep the power of these ingredients pierced, Even to the inmost seat of mental sight, That Adam, now enforced to close his eyes, Sunk down, and all his spirits became entranced; But him the gentle Angel by the hand Soon raised, and his attention thus recalled. Adam, now ope thine eyes; and first behold The effects, which thy original crime hath wrought In some to spring from thee; who never touched The excepted tree; nor with the snake conspired; Nor sinned thy sin; yet from that sin derive Corruption, to bring forth more violent deeds. His eyes he opened, and beheld a field, Part arable and tilth, whereon were sheaves New reaped; the other part sheep-walks and folds; I' the midst an altar as the land-mark stood, Rustick, of grassy sord; thither anon A sweaty reaper from his tillage brought First fruits, the green ear, and the yellow sheaf, Unculled, as came to hand; a shepherd next, More meek, came with the firstlings of his flock, Choicest and best; then, sacrificing, laid The inwards and their fat, with incense strowed, On the cleft wood, and all due rights performed: His offering soon propitious fire from Heaven Consumed with nimble glance, and grateful steam; The other's not, for his was not sincere; Whereat he inly raged, and, as they talked, Smote him into the midriff with a stone That beat out life; he fell;and, deadly pale, Groaned out his soul with gushing blood effused. Much at that sight was Adam in his heart Dismayed, and thus in haste to the Angel cried. O Teacher, some great mischief hath befallen To that meek man, who well had sacrificed; Is piety thus and pure devotion paid? To whom Michael thus, he also moved, replied. These two are brethren, Adam, and to come Out of thy loins; the unjust the just hath slain, For envy that his brother's offering found From Heaven acceptance; but the bloody fact Will be avenged; and the other's faith, approved, Lose no reward; though here thou see him die, Rolling in dust and gore. To which our sire. Alas! both for the deed, and for the cause! But have I now seen Death? Is this the way I must return to native dust? O sight Of terrour, foul and ugly to behold, Horrid to think, how horrible to feel! To whom thus Michael. Death thou hast seen In his first shape on Man; but many shapes Of Death, and many are the ways that lead To his grim cave, all dismal; yet to sense More terrible at the entrance, than within. Some, as thou sawest, by violent stroke shall die; By fire, flood, famine, by intemperance more In meats and drinks, which on the earth shall bring Diseases dire, of which a monstrous crew Before thee shall appear; that thou mayest know What misery the inabstinence of Eve Shall bring on Men. Immediately a place Before his eyes appeared, sad, noisome, dark; A lazar-house it seemed; wherein were laid Numbers of all diseased; all maladies Of ghastly spasm, or racking torture, qualms Of heart-sick agony, all feverous kinds, Convulsions, epilepsies, fierce catarrhs, Intestine stone and ulcer, colick-pangs, Demoniack phrenzy, moaping melancholy, And moon-struck madness, pining atrophy, Marasmus, and wide-wasting pestilence, Dropsies, and asthmas, and joint-racking rheums. Dire was the tossing, deep the groans; Despair Tended the sick busiest from couch to couch; And over them triumphant Death his dart Shook, but delayed to strike, though oft invoked With vows, as their chief good, and final hope. Sight so deform what heart of rock could long Dry-eyed behold? Adam could not, but wept, Though not of woman born; compassion quelled His best of man, and gave him up to tears A space, till firmer thoughts restrained excess; And, scarce recovering words, his plaint renewed. O miserable mankind, to what fall Degraded, to what wretched state reserved! Better end here unborn. Why is life given To be thus wrested from us? rather, why Obtruded on us thus? who, if we knew What we receive, would either no accept Life offered, or soon beg to lay it down; Glad to be so dismissed in peace. Can thus The image of God in Man, created once So goodly and erect, though faulty since, To such unsightly sufferings be debased Under inhuman pains? Why should not Man, Retaining still divine similitude In part, from such deformities be free, And, for his Maker's image sake, exempt? Their Maker's image, answered Michael, then Forsook them, when themselves they vilified To serve ungoverned Appetite; and took His image whom they served, a brutish vice, Inductive mainly to the sin of Eve. Therefore so abject is their punishment, Disfiguring not God's likeness, but their own; Or if his likeness, by themselves defaced; While they pervert pure Nature's healthful rules To loathsome sickness; worthily, since they God's image did not reverence in themselves. I yield it just, said Adam, and submit. But is there yet no other way, besides These painful passages, how we may come To death, and mix with our connatural dust? There is, said Michael, if thou well observe The rule of Not too much; by temperance taught, In what thou eatest and drinkest; seeking from thence Due nourishment, not gluttonous delight, Till many years over thy head return: So mayest thou live; till, like ripe fruit, thou drop Into thy mother's lap; or be with ease Gathered, nor harshly plucked; for death mature: This is Old Age; but then, thou must outlive Thy youth, thy strength, thy beauty; which will change To withered, weak, and gray; thy senses then, Obtuse, all taste of pleasure must forego, To what thou hast; and, for the air of youth, Hopeful and cheerful, in thy blood will reign A melancholy damp of cold and dry To weigh thy spirits down, and last consume The balm of life. To whom our ancestor. Henceforth I fly not death, nor would prolong Life much; bent rather, how I may be quit, Fairest and easiest, of this cumbrous charge; Which I must keep till my appointed day Of rendering up, and patiently attend My dissolution. Michael replied. Nor love thy life, nor hate; but what thou livest Live well; how long, or short, permit to Heaven: And now prepare thee for another sight. He looked, and saw a spacious plain, whereon Were tents of various hue; by some, were herds Of cattle grazing; others, whence the sound Of instruments, that made melodious chime, Was heard, of harp and organ; and, who moved Their stops and chords, was seen; his volant touch, Instinct through all proportions, low and high, Fled and pursued transverse the resonant fugue. In other part stood one who, at the forge Labouring, two massy clods of iron and brass Had melted, (whether found where casual fire Had wasted woods on mountain or in vale, Down to the veins of earth; thence gliding hot To some cave's mouth; or whether washed by stream From underground;) the liquid ore he drained Into fit moulds prepared; from which he formed First his own tools; then, what might else be wrought Fusil or graven in metal. After these, But on the hither side, a different sort From the high neighbouring hills, which was their seat, Down to the plain descended; by their guise Just men they seemed, and all their study bent To worship God aright, and know his works Not hid; nor those things last, which might preserve Freedom and peace to Men; they on the plain Long had not walked, when from the tents, behold! A bevy of fair women, richly gay In gems and wanton dress; to the harp they sung Soft amorous ditties, and in dance came on: The men, though grave, eyed them; and let their eyes Rove without rein; till, in the amorous net Fast caught, they liked; and each his liking chose; And now of love they treat, till the evening-star, Love's harbinger, appeared; then, all in heat They light the nuptial torch, and bid invoke Hymen, then first to marriage rites invoked: With feast and musick all the tents resound. Such happy interview, and fair event Of love and youth not lost, songs, garlands, flowers, And charming symphonies, attached the heart Of Adam, soon inclined to admit delight, The bent of nature; which he thus expressed. True opener of mine eyes, prime Angel blest; Much better seems this vision, and more hope Of peaceful days portends, than those two past; Those were of hate and death, or pain much worse; Here Nature seems fulfilled in all her ends. To whom thus Michael. Judge not what is best By pleasure, though to nature seeming meet; Created, as thou art, to nobler end Holy and pure, conformity divine. Those tents thou sawest so pleasant, were the tents Of wickedness, wherein shall dwell his race Who slew his brother; studious they appear Of arts that polish life, inventers rare; Unmindful of their Maker, though his Spirit Taught them; but they his gifts acknowledged none. Yet they a beauteous offspring shall beget; For that fair female troop thou sawest, that seemed Of Goddesses, so blithe, so smooth, so gay, Yet empty of all good wherein consists Woman's domestick honour and chief praise; Bred only and completed to the taste Of lustful appetence, to sing, to dance, To dress, and troll the tongue, and roll the eye: To these that sober race of men, whose lives Religious titled them the sons of God, Shall yield up all their virtue, all their fame Ignobly, to the trains and to the smiles Of these fair atheists; and now swim in joy, Erelong to swim at large; and laugh, for which The world erelong a world of tears must weep. To whom thus Adam, of short joy bereft. O pity and shame, that they, who to live well Entered so fair, should turn aside to tread Paths indirect, or in the mid way faint! But still I see the tenour of Man's woe Holds on the same, from Woman to begin. From Man's effeminate slackness it begins, Said the Angel, who should better hold his place By wisdom, and superiour gifts received. But now prepare thee for another scene. He looked, and saw wide territory spread Before him, towns, and rural works between; Cities of men with lofty gates and towers, Concourse in arms, fierce faces threatening war, Giants of mighty bone and bold emprise; Part wield their arms, part curb the foaming steed, Single or in array of battle ranged Both horse and foot, nor idly mustering stood; One way a band select from forage drives A herd of beeves, fair oxen and fair kine, From a fat meadow ground; or fleecy flock, Ewes and their bleating lambs over the plain, Their booty; scarce with life the shepherds fly, But call in aid, which makes a bloody fray; With cruel tournament the squadrons join; Where cattle pastured late, now scattered lies With carcasses and arms the ensanguined field, Deserted: Others to a city strong Lay siege, encamped; by battery, scale, and mine, Assaulting; others from the wall defend With dart and javelin, stones, and sulphurous fire; On each hand slaughter, and gigantick deeds. In other part the sceptered heralds call To council, in the city-gates; anon Gray-headed men and grave, with warriours mixed, Assemble, and harangues are heard; but soon, In factious opposition; till at last, Of middle age one rising, eminent In wise deport, spake much of right and wrong, Of justice, or religion, truth, and peace, And judgement from above: him old and young Exploded, and had seized with violent hands, Had not a cloud descending snatched him thence Unseen amid the throng: so violence Proceeded, and oppression, and sword-law, Through all the plain, and refuge none was found. Adam was all in tears, and to his guide Lamenting turned full sad; O!what are these, Death's ministers, not men? who thus deal death Inhumanly to men, and multiply Ten thousandfold the sin of him who slew His brother: for of whom such massacre Make they, but of their brethren; men of men But who was that just man, whom had not Heaven Rescued, had in his righteousness been lost? To whom thus Michael. These are the product Of those ill-mated marriages thou sawest; Where good with bad were matched, who of themselves Abhor to join; and, by imprudence mixed, Produce prodigious births of body or mind. Such were these giants, men of high renown; For in those days might only shall be admired, And valour and heroick virtue called; To overcome in battle, and subdue Nations, and bring home spoils with infinite Man-slaughter, shall be held the highest pitch Of human glory; and for glory done Of triumph, to be styled great conquerours Patrons of mankind, Gods, and sons of Gods; Destroyers rightlier called, and plagues of men. Thus fame shall be achieved, renown on earth; And what most merits fame, in silence hid. But he, the seventh from thee, whom thou beheldst The only righteous in a world preverse, And therefore hated, therefore so beset With foes, for daring single to be just, And utter odious truth, that God would come To judge them with his Saints; him the Most High Rapt in a balmy cloud with winged steeds Did, as thou sawest, receive, to walk with God High in salvation and the climes of bliss, Exempt from death; to show thee what reward Awaits the good; the rest what punishment; Which now direct thine eyes and soon behold. He looked, and saw the face of things quite changed; The brazen throat of war had ceased to roar; All now was turned to jollity and game, To luxury and riot, feast and dance; Marrying or prostituting, as befel, Rape or adultery, where passing fair Allured them; thence from cups to civil broils. At length a reverend sire among them came, And of their doings great dislike declared, And testified against their ways; he oft Frequented their assemblies, whereso met, Triumphs or festivals; and to them preached Conversion and repentance, as to souls In prison, under judgements imminent: But all in vain: which when he saw, he ceased Contending, and removed his tents far off; Then, from the mountain hewing timber tall, Began to build a vessel of huge bulk; Measured by cubit, length, and breadth, and highth; Smeared round with pitch; and in the side a door Contrived; and of provisions laid in large, For man and beast: when lo, a wonder strange! Of every beast, and bird, and insect small, Came sevens, and pairs; and entered in as taught Their order: last the sire and his three sons, With their four wives; and God made fast the door. Mean while the south-wind rose, and, with black wings Wide-hovering, all the clouds together drove From under Heaven; the hills to their supply Vapour, and exhalation dusk and moist, Sent up amain; and now the thickened sky Like a dark cieling stood; down rushed the rain Impetuous; and continued, till the earth No more was seen: the floating vessel swum Uplifted, and secure with beaked prow Rode tilting o'er the waves; all dwellings else Flood overwhelmed, and them with all their pomp Deep under water rolled; sea covered sea, Sea without shore; and in their palaces, Where luxury late reigned, sea-monsters whelped And stabled; of mankind, so numerous late, All left, in one small bottom swum imbarked. How didst thou grieve then, Adam, to behold The end of all thy offspring, end so sad, Depopulation! Thee another flood, Of tears and sorrow a flood, thee also drowned, And sunk thee as thy sons; till, gently reared By the Angel, on thy feet thou stoodest at last, Though comfortless; as when a father mourns His children, all in view destroyed at once; And scarce to the Angel utter'dst thus thy plaint. O visions ill foreseen! Better had I Lived ignorant of future! so had borne My part of evil only, each day's lot Enough to bear; those now, that were dispensed The burden of many ages, on me light At once, by my foreknowledge gaining birth Abortive, to torment me ere their being, With thought that they must be. Let no man seek Henceforth to be foretold, what shall befall Him or his children; evil he may be sure, Which neither his foreknowing can prevent; And he the future evil shall no less In apprehension than in substance feel, Grievous to bear: but that care now is past, Man is not whom to warn: those few escaped Famine and anguish will at last consume, Wandering that watery desart: I had hope, When violence was ceased, and war on earth, All would have then gone well; peace would have crowned With length of happy days the race of Man; But I was far deceived; for now I see Peace to corrupt no less than war to waste. How comes it thus? unfold, celestial Guide, And whether here the race of Man will end. To whom thus Michael. Those, whom last thou sawest In triumph and luxurious wealth, are they First seen in acts of prowess eminent And great exploits, but of true virtue void; Who, having spilt much blood, and done much wast Subduing nations, and achieved thereby Fame in the world, high titles, and rich prey; Shall change their course to pleasure, ease, and sloth, Surfeit, and lust; till wantonness and pride Raise out of friendship hostile deeds in peace. The conquered also, and enslaved by war, Shall, with their freedom lost, all virtue lose And fear of God; from whom their piety feigned In sharp contest of battle found no aid Against invaders; therefore, cooled in zeal, Thenceforth shall practice how to live secure, Worldly or dissolute, on what their lords Shall leave them to enjoy; for the earth shall bear More than enough, that temperance may be tried: So all shall turn degenerate, all depraved; Justice and temperance, truth and faith, forgot; One man except, the only son of light In a dark age, against example good, Against allurement, custom, and a world Offended: fearless of reproach and scorn, The grand-child, with twelve sons encreased, departs From Canaan, to a land hereafter called Egypt, divided by the river Nile; See where it flows, disgorging at seven mouths Into the sea: To sojourn in that land He comes, invited by a younger son In time of dearth; a son, whose worthy deeds Raise him to be the second in that realm Of Pharaoh: There he dies, and leaves his race Growing into a nation, and now grown Suspected to a sequent king, who seeks To stop their overgrowth, as inmate guests Or violence, he of their wicked ways Shall them admonish; and before them set The paths of righteousness, how much more safe And full of peace; denouncing wrath to come On their impenitence; and shall return Of them derided, but of God observed The one just man alive; by his command Shall build a wonderous ark, as thou beheldst, To save himself, and houshold, from amidst A world devote to universal wrack. No sooner he, with them of man and beast Select for life, shall in the ark be lodged, And sheltered round; but all the cataracts Of Heaven set open on the Earth shall pour Rain, day and night; all fountains of the deep, Broke up, shall heave the ocean to usurp Beyond all bounds; till inundation rise Above the highest hills: Then shall this mount Of Paradise by might of waves be moved Out of his place, pushed by the horned flood, With all his verdure spoiled, and trees adrift, Down the great river to the opening gulf, And there take root an island salt and bare, The haunt of seals, and orcs, and sea-mews' clang: To teach thee that God attributes to place No sanctity, if none be thither brought By men who there frequent, or therein dwell. And now, what further shall ensue, behold. He looked, and saw the ark hull on the flood, Which now abated; for the clouds were fled, Driven by a keen north-wind, that, blowing dry, Wrinkled the face of deluge, as decayed; And the clear sun on his wide watery glass Gazed hot, and of the fresh wave largely drew, As after thirst; which made their flowing shrink From standing lake to tripping ebb, that stole With soft foot towards the deep; who now had stopt His sluces, as the Heaven his windows shut. The ark no more now floats, but seems on ground, Fast on the top of some high mountain fixed. And now the tops of hills, as rocks, appear; With clamour thence the rapid currents drive, Towards the retreating sea, their furious tide. Forthwith from out the ark a raven flies, And after him, the surer messenger, A dove sent forth once and again to spy Green tree or ground, whereon his foot may light: The second time returning, in his bill An olive-leaf he brings, pacifick sign: Anon dry ground appears, and from his ark The ancient sire descends, with all his train; Then with uplifted hands, and eyes devout, Grateful to Heaven, over his head beholds A dewy cloud, and in the cloud a bow Conspicuous with three lifted colours gay, Betokening peace from God, and covenant new. Whereat the heart of Adam, erst so sad, Greatly rejoiced; and thus his joy broke forth. O thou, who future things canst represent As present, heavenly Instructer! I revive At this last sight; assured that Man shall live, With all the creatures, and their seed preserve. Far less I now lament for one whole world Of wicked sons destroyed, than I rejoice For one man found so perfect, and so just, That God vouchsafes to raise another world From him, and all his anger to forget. But say, what mean those coloured streaks in Heaven Distended, as the brow of God appeased? Or serve they, as a flowery verge, to bind The fluid skirts of that same watery cloud, Lest it again dissolve, and shower the earth? To whom the Arch-Angel. Dextrously thou aimest; So willingly doth God remit his ire, Though late repenting him of Man depraved; Grieved at his heart, when looking down he saw The whole earth filled with violence, and all flesh Corrupting each their way; yet, those removed, Such grace shall one just man find in his sight, That he relents, not to blot out mankind; And makes a covenant never to destroy The earth again by flood; nor let the sea Surpass his bounds; nor rain to drown the world, With man therein or beast; but, when he brings Over the earth a cloud, will therein set His triple-coloured bow, whereon to look, And call to mind his covenant: Day and night, Seed-time and harvest, heat and hoary frost, Shall hold their course; till fire purge all things new, Both Heaven and Earth, wherein the just shall dwell. Book XII As one who in his journey bates at noon, Though bent on speed; so here the Arch-Angel paused Betwixt the world destroyed and world restored, If Adam aught perhaps might interpose; Then, with transition sweet, new speech resumes. Thus thou hast seen one world begin, and end; And Man, as from a second stock, proceed. Much thou hast yet to see; but I perceive Thy mortal sight to fail; objects divine Must needs impair and weary human sense: Henceforth what is to come I will relate; Thou therefore give due audience, and attend. This second source of Men, while yet but few, And while the dread of judgement past remains Fresh in their minds, fearing the Deity, With some regard to what is just and right Shall lead their lives, and multiply apace; Labouring the soil, and reaping plenteous crop, Corn, wine, and oil; and, from the herd or flock, Oft sacrificing bullock, lamb, or kid, With large wine-offerings poured, and sacred feast, Shall spend their days in joy unblamed; and dwell Long time in peace, by families and tribes, Under paternal rule: till one shall rise Of proud ambitious heart; who, not content With fair equality, fraternal state, Will arrogate dominion undeserved Over his brethren, and quite dispossess Concord and law of nature from the earth; Hunting (and men not beasts shall be his game) With war, and hostile snare, such as refuse Subjection to his empire tyrannous: A mighty hunter thence he shall be styled Before the Lord; as in despite of Heaven, Or from Heaven, claiming second sovranty; And from rebellion shall derive his name, Though of rebellion others he accuse. He with a crew, whom like ambition joins With him or under him to tyrannize, Marching from Eden towards the west, shall find The plain, wherein a black bituminous gurge Boils out from under ground, the mouth of Hell: Of brick, and of that stuff, they cast to build A city and tower, whose top may reach to Heaven; And get themselves a name; lest, far dispersed In foreign lands, their memory be lost; Regardless whether good or evil fame. But God, who oft descends to visit men Unseen, and through their habitations walks To mark their doings, them beholding soon, Comes down to see their city, ere the tower Obstruct Heaven-towers, and in derision sets Upon their tongues a various spirit, to rase Quite out their native language; and, instead, To sow a jangling noise of words unknown: Forthwith a hideous gabble rises loud, Among the builders; each to other calls Not understood; till hoarse, and all in rage, As mocked they storm: great laughter was in Heaven, And looking down, to see the hubbub strange, And hear the din: Thus was the building left Ridiculous, and the work Confusion named. Whereto thus Adam, fatherly displeased. O execrable son! so to aspire Above his brethren; to himself assuming Authority usurped, from God not given: He gave us only over beast, fish, fowl, Dominion absolute; that right we hold By his donation; but man over men He made not lord; such title to himself Reserving, human left from human free. But this usurper his encroachment proud Stays not on Man; to God his tower intends Siege and defiance: Wretched man!what food Will he convey up thither, to sustain Himself and his rash army; where thin air Above the clouds will pine his entrails gross, And famish him of breath, if not of bread? To whom thus Michael. Justly thou abhorrest That son, who on the quiet state of men Such trouble brought, affecting to subdue Rational liberty; yet know withal, Since thy original lapse, true liberty Is lost, which always with right reason dwells Twinned, and from her hath no dividual being: Reason in man obscured, or not obeyed, Immediately inordinate desires, And upstart passions, catch the government From reason; and to servitude reduce Man, till then free. Therefore, since he permits Within himself unworthy powers to reign Over free reason, God, in judgement just, Subjects him from without to violent lords; Who oft as undeservedly enthrall His outward freedom: Tyranny must be; Though to the tyrant thereby no excuse. Yet sometimes nations will decline so low From virtue, which is reason, that no wrong, But justice, and some fatal curse annexed, Deprives them of their outward liberty; Their inward lost: Witness the irreverent son Of him who built the ark; who, for the shame Done to his father, heard this heavy curse, Servant of servants, on his vicious race. Thus will this latter, as the former world, Still tend from bad to worse; till God at last, Wearied with their iniquities, withdraw His presence from among them, and avert His holy eyes; resolving from thenceforth To leave them to their own polluted ways; And one peculiar nation to select From all the rest, of whom to be invoked, A nation from one faithful man to spring: Him on this side Euphrates yet residing, Bred up in idol-worship: O, that men (Canst thou believe?) should be so stupid grown, While yet the patriarch lived, who 'scaped the flood, As to forsake the living God, and fall To worship their own work in wood and stone For Gods! Yet him God the Most High vouchsafes To call by vision, from his father's house, His kindred, and false Gods, into a land Which he will show him; and from him will raise A mighty nation; and upon him shower His benediction so, that in his seed All nations shall be blest: he straight obeys; Not knowing to what land, yet firm believes: I see him, but thou canst not, with what faith He leaves his Gods, his friends, and native soil, Ur of Chaldaea, passing now the ford To Haran; after him a cumbrous train Of herds and flocks, and numerous servitude; Not wandering poor, but trusting all his wealth With God, who called him, in a land unknown. Canaan he now attains; I see his tents Pitched about Sechem, and the neighbouring plain Of Moreh; there by promise he receives Gift to his progeny of all that land, From Hameth northward to the Desart south; (Things by their names I call, though yet unnamed;) From Hermon east to the great western Sea; Mount Hermon, yonder sea; each place behold In prospect, as I point them; on the shore Mount Carmel; here, the double-founted stream, Jordan, true limit eastward; but his sons Shall dwell to Senir, that long ridge of hills. This ponder, that all nations of the earth Shall in his seed be blessed: By that seed Is meant thy great Deliverer, who shall bruise The Serpent's head; whereof to thee anon Plainlier shall be revealed. This patriarch blest, Whom faithful Abraham due time shall call, A son, and of his son a grand-child, leaves; Like him in faith, in wisdom, and renown: The grandchild, with twelve sons increased, departs From Canaan to a land hereafter called Egypt, divided by the river Nile See where it flows, disgorging at seven mouths Into the sea. To sojourn in that land He comes, invited by a younger son In time of dearth, a son whose worthy deeds Raise him to be the second in that realm Of Pharaoh. There he dies, and leaves his race Growing into a nation, and now grown Suspected to a sequent king, who seeks To stop their overgrowth, as inmate guests Too numerous; whence of guests he makes them slaves Inhospitably, and kills their infant males: Till by two brethren (these two brethren call Moses and Aaron) sent from God to claim His people from enthralment, they return, With glory and spoil, back to their promised land. But first, the lawless tyrant, who denies To know their God, or message to regard, Must be compelled by signs and judgements dire; To blood unshed the rivers must be turned; Frogs, lice, and flies, must all his palace fill With loathed intrusion, and fill all the land; His cattle must of rot and murren die; Botches and blains must all his flesh emboss, And all his people; thunder mixed with hail, Hail mixed with fire, must rend the Egyptians sky, And wheel on the earth, devouring where it rolls; What it devours not, herb, or fruit, or grain, A darksome cloud of locusts swarming down Must eat, and on the ground leave nothing green; Darkness must overshadow all his bounds, Palpable darkness, and blot out three days; Last, with one midnight stroke, all the first-born Of Egypt must lie dead. Thus with ten wounds The river-dragon tamed at length submits To let his sojourners depart, and oft Humbles his stubborn heart; but still, as ice More hardened after thaw; till, in his rage Pursuing whom he late dismissed, the sea Swallows him with his host; but them lets pass, As on dry land, between two crystal walls; Awed by the rod of Moses so to stand Divided, till his rescued gain their shore: Such wondrous power God to his saint will lend, Though present in his Angel; who shall go Before them in a cloud, and pillar of fire; By day a cloud, by night a pillar of fire; To guide them in their journey, and remove Behind them, while the obdurate king pursues: All night he will pursue; but his approach Darkness defends between till morning watch; Then through the fiery pillar, and the cloud, God looking forth will trouble all his host, And craze their chariot-wheels: when by command Moses once more his potent rod extends Over the sea; the sea his rod obeys; On their embattled ranks the waves return, And overwhelm their war: The race elect Safe toward Canaan from the shore advance Through the wild Desart, not the readiest way; Lest, entering on the Canaanite alarmed, War terrify them inexpert, and fear Return them back to Egypt, choosing rather Inglorious life with servitude; for life To noble and ignoble is more sweet Untrained in arms, where rashness leads not on. This also shall they gain by their delay In the wide wilderness; there they shall found Their government, and their great senate choose Through the twelve tribes, to rule by laws ordained: God from the mount of Sinai, whose gray top Shall tremble, he descending, will himself In thunder, lightning, and loud trumpets' sound, Ordain them laws; part, such as appertain To civil justice; part, religious rites Of sacrifice; informing them, by types And shadows, of that destined Seed to bruise The Serpent, by what means he shall achieve Mankind's deliverance. But the voice of God To mortal ear is dreadful: They beseech That Moses might report to them his will, And terrour cease; he grants what they besought, Instructed that to God is no access Without Mediator, whose high office now Moses in figure bears; to introduce One greater, of whose day he shall foretel, And all the Prophets in their age the times Of great Messiah shall sing. Thus, laws and rites Established, such delight hath God in Men Obedient to his will, that he vouchsafes Among them to set up his tabernacle; The Holy One with mortal Men to dwell: By his prescript a sanctuary is framed Of cedar, overlaid with gold; therein An ark, and in the ark his testimony, The records of his covenant; over these A mercy-seat of gold, between the wings Of two bright Cherubim; before him burn Seven lamps as in a zodiack representing The heavenly fires; over the tent a cloud Shall rest by day, a fiery gleam by night; Save when they journey, and at length they come, Conducted by his Angel, to the land Promised to Abraham and his seed:--The rest Were long to tell; how many battles fought How many kings destroyed; and kingdoms won; Or how the sun shall in mid Heaven stand still A day entire, and night's due course adjourn, Man's voice commanding, 'Sun, in Gibeon stand, 'And thou moon in the vale of Aialon, 'Till Israel overcome! so call the third From Abraham, son of Isaac; and from him His whole descent, who thus shall Canaan win. Here Adam interposed. O sent from Heaven, Enlightener of my darkness, gracious things Thou hast revealed; those chiefly, which concern Just Abraham and his seed: now first I find Mine eyes true-opening, and my heart much eased; Erewhile perplexed with thoughts, what would become Of me and all mankind: But now I see His day, in whom all nations shall be blest; Favour unmerited by me, who sought Forbidden knowledge by forbidden means. This yet I apprehend not, why to those Among whom God will deign to dwell on earth So many and so various laws are given; So many laws argue so many sins Among them; how can God with such reside? To whom thus Michael. Doubt not but that sin Will reign among them, as of thee begot; And therefore was law given them, to evince Their natural pravity, by stirring up Sin against law to fight: that when they see Law can discover sin, but not remove, Save by those shadowy expiations weak, The blood of bulls and goats, they may conclude Some blood more precious must be paid for Man; Just for unjust; that, in such righteousness To them by faith imputed, they may find Justification towards God, and peace Of conscience; which the law by ceremonies Cannot appease; nor Man the mortal part Perform; and, not performing, cannot live. So law appears imperfect; and but given With purpose to resign them, in full time, Up to a better covenant; disciplined From shadowy types to truth; from flesh to spirit; From imposition of strict laws to free Acceptance of large grace; from servile fear To filial; works of law to works of faith. And therefore shall not Moses, though of God Highly beloved, being but the minister Of law, his people into Canaan lead; But Joshua, whom the Gentiles Jesus call, His name and office bearing, who shall quell The adversary-Serpent, and bring back Through the world's wilderness long-wandered Man Safe to eternal Paradise of rest. Mean while they, in their earthly Canaan placed, Long time shall dwell and prosper, but when sins National interrupt their publick peace, Provoking God to raise them enemies; From whom as oft he saves them penitent By Judges first, then under Kings; of whom The second, both for piety renowned And puissant deeds, a promise shall receive Irrevocable, that his regal throne For ever shall endure; the like shall sing All Prophecy, that of the royal stock Of David (so I name this king) shall rise A Son, the Woman's seed to thee foretold, Foretold to Abraham, as in whom shall trust All nations; and to kings foretold, of kings The last; for of his reign shall be no end. But first, a long succession must ensue; And his next son, for wealth and wisdom famed, The clouded ark of God, till then in tents Wandering, shall in a glorious temple enshrine. Such follow him, as shall be registered Part good, part bad; of bad the longer scroll; Whose foul idolatries, and other faults Heaped to the popular sum, will so incense God, as to leave them, and expose their land, Their city, his temple, and his holy ark, With all his sacred things, a scorn and prey To that proud city, whose high walls thou sawest Left in confusion; Babylon thence called. There in captivity he lets them dwell The space of seventy years; then brings them back, Remembering mercy, and his covenant sworn To David, stablished as the days of Heaven. Returned from Babylon by leave of kings Their lords, whom God disposed, the house of God They first re-edify; and for a while In mean estate live moderate; till, grown In wealth and multitude, factious they grow; But first among the priests dissention springs, Men who attend the altar, and should most Endeavour peace: their strife pollution brings Upon the temple itself: at last they seise The scepter, and regard not David's sons; Then lose it to a stranger, that the true Anointed King Messiah might be born Barred of his right; yet at his birth a star, Unseen before in Heaven, proclaims him come; And guides the eastern sages, who inquire His place, to offer incense, myrrh, and gold: His place of birth a solemn Angel tells To simple shepherds, keeping watch by night; They gladly thither haste, and by a quire Of squadroned Angels hear his carol sung. A virgin is his mother, but his sire The power of the Most High: He shall ascend The throne hereditary, and bound his reign With Earth's wide bounds, his glory with the Heavens. He ceased, discerning Adam with such joy Surcharged, as had like grief been dewed in tears, Without the vent of words; which these he breathed. O prophet of glad tidings, finisher Of utmost hope! now clear I understand What oft my steadiest thoughts have searched in vain; Why our great Expectation should be called The seed of Woman: Virgin Mother, hail, High in the love of Heaven; yet from my loins Thou shalt proceed, and from thy womb the Son Of God Most High: so God with Man unites! Needs must the Serpent now his capital bruise Expect with mortal pain: Say where and when Their fight, what stroke shall bruise the victor's heel. To whom thus Michael. Dream not of their fight, As of a duel, or the local wounds Of head or heel: Not therefore joins the Son Manhood to Godhead, with more strength to foil Thy enemy; nor so is overcome Satan, whose fall from Heaven, a deadlier bruise, Disabled, not to give thee thy death's wound: Which he, who comes thy Saviour, shall recure, Not by destroying Satan, but his works In thee, and in thy seed: Nor can this be, But by fulfilling that which thou didst want, Obedience to the law of God, imposed On penalty of death, and suffering death; The penalty to thy transgression due, And due to theirs which out of thine will grow: So only can high Justice rest appaid. The law of God exact he shall fulfil Both by obedience and by love, though love Alone fulfil the law; thy punishment He shall endure, by coming in the flesh To a reproachful life, and cursed death; Proclaiming life to all who shall believe In his redemption; and that his obedience, Imputed, becomes theirs by faith; his merits To save them, not their own, though legal, works. For this he shall live hated, be blasphemed, Seised on by force, judged, and to death condemned A shameful and accursed, nailed to the cross By his own nation; slain for bringing life: But to the cross he nails thy enemies, The law that is against thee, and the sins Of all mankind, with him there crucified, Never to hurt them more who rightly trust In this his satisfaction; so he dies, But soon revives; Death over him no power Shall long usurp; ere the third dawning light Return, the stars of morn shall see him rise Out of his grave, fresh as the dawning light, Thy ransom paid, which Man from death redeems, His death for Man, as many as offered life Neglect not, and the benefit embrace By faith not void of works: This God-like act Annuls thy doom, the death thou shouldest have died, In sin for ever lost from life; this act Shall bruise the head of Satan, crush his strength, Defeating Sin and Death, his two main arms; And fix far deeper in his head their stings Than temporal death shall bruise the victor's heel, Or theirs whom he redeems; a death, like sleep, A gentle wafting to immortal life. Nor after resurrection shall he stay Longer on earth, than certain times to appear To his disciples, men who in his life Still followed him; to them shall leave in charge To teach all nations what of him they learned And his salvation; them who shall believe Baptizing in the profluent stream, the sign Of washing them from guilt of sin to life Pure, and in mind prepared, if so befall, For death, like that which the Redeemer died. All nations they shall teach; for, from that day, Not only to the sons of Abraham's loins Salvation shall be preached, but to the sons Of Abraham's faith wherever through the world; So in his seed all nations shall be blest. Then to the Heaven of Heavens he shall ascend With victory, triumphing through the air Over his foes and thine; there shall surprise The Serpent, prince of air, and drag in chains Through all his realm, and there confounded leave; Then enter into glory, and resume His seat at God's right hand, exalted high Above all names in Heaven; and thence shall come, When this world's dissolution shall be ripe, With glory and power to judge both quick and dead; To judge the unfaithful dead, but to reward His faithful, and receive them into bliss, Whether in Heaven or Earth; for then the Earth Shall all be Paradise, far happier place Than this of Eden, and far happier days. So spake the Arch-Angel Michael; then paused, As at the world's great period; and our sire, Replete with joy and wonder, thus replied. O Goodness infinite, Goodness immense! That all this good of evil shall produce, And evil turn to good; more wonderful Than that which by creation first brought forth Light out of darkness! Full of doubt I stand, Whether I should repent me now of sin By me done, and occasioned; or rejoice Much more, that much more good thereof shall spring; To God more glory, more good-will to Men From God, and over wrath grace shall abound. But say, if our Deliverer up to Heaven Must re-ascend, what will betide the few His faithful, left among the unfaithful herd, The enemies of truth? Who then shall guide His people, who defend? Will they not deal Worse with his followers than with him they dealt? Be sure they will, said the Angel; but from Heaven He to his own a Comforter will send, The promise of the Father, who shall dwell His Spirit within them; and the law of faith, Working through love, upon their hearts shall write, To guide them in all truth; and also arm With spiritual armour, able to resist Satan's assaults, and quench his fiery darts; What man can do against them, not afraid, Though to the death; against such cruelties With inward consolations recompensed, And oft supported so as shall amaze Their proudest persecutors: For the Spirit, Poured first on his Apostles, whom he sends To evangelize the nations, then on all Baptized, shall them with wonderous gifts endue To speak all tongues, and do all miracles, As did their Lord before them. Thus they win Great numbers of each nation to receive With joy the tidings brought from Heaven: At length Their ministry performed, and race well run, Their doctrine and their story written left, They die; but in their room, as they forewarn, Wolves shall succeed for teachers, grievous wolves, Who all the sacred mysteries of Heaven To their own vile advantages shall turn Of lucre and ambition; and the truth With superstitions and traditions taint, Left only in those written records pure, Though not but by the Spirit understood. Then shall they seek to avail themselves of names, Places, and titles, and with these to join Secular power; though feigning still to act By spiritual, to themselves appropriating The Spirit of God, promised alike and given To all believers; and, from that pretence, Spiritual laws by carnal power shall force On every conscience; laws which none shall find Left them inrolled, or what the Spirit within Shall on the heart engrave. What will they then But force the Spirit of Grace itself, and bind His consort Liberty? what, but unbuild His living temples, built by faith to stand, Their own faith, not another's? for, on earth, Who against faith and conscience can be heard Infallible? yet many will presume: Whence heavy persecution shall arise On all, who in the worship persevere Of spirit and truth; the rest, far greater part, Will deem in outward rites and specious forms Religion satisfied; Truth shall retire Bestuck with slanderous darts, and works of faith Rarely be found: So shall the world go on, To good malignant, to bad men benign; Under her own weight groaning; till the day Appear of respiration to the just, And vengeance to the wicked, at return Of him so lately promised to thy aid, The Woman's Seed; obscurely then foretold, Now ampler known thy Saviour and thy Lord; Last, in the clouds, from Heaven to be revealed In glory of the Father, to dissolve Satan with his perverted world; then raise From the conflagrant mass, purged and refined, New Heavens, new Earth, ages of endless date, Founded in righteousness, and peace, and love; To bring forth fruits, joy and eternal bliss. He ended; and thus Adam last replied. How soon hath thy prediction, Seer blest, Measured this transient world, the race of time, Till time stand fixed! Beyond is all abyss, Eternity, whose end no eye can reach. Greatly-instructed I shall hence depart; Greatly in peace of thought; and have my fill Of knowledge, what this vessel can contain; Beyond which was my folly to aspire. Henceforth I learn, that to obey is best, And love with fear the only God; to walk As in his presence; ever to observe His providence; and on him sole depend, Merciful over all his works, with good Still overcoming evil, and by small Accomplishing great things, by things deemed weak Subverting worldly strong, and worldly wise By simply meek: that suffering for truth's sake Is fortitude to highest victory, And, to the faithful, death the gate of life; Taught this by his example, whom I now Acknowledge my Redeemer ever blest. To whom thus also the Angel last replied. This having learned, thou hast attained the sum Of wisdom; hope no higher, though all the stars Thou knewest by name, and all the ethereal powers, All secrets of the deep, all Nature's works, Or works of God in Heaven, air, earth, or sea, And all the riches of this world enjoyedst, And all the rule, one empire; only add Deeds to thy knowledge answerable; add faith, Add virtue, patience, temperance; add love, By name to come called charity, the soul Of all the rest: then wilt thou not be loth To leave this Paradise, but shalt possess A Paradise within thee, happier far.-- Let us descend now therefore from this top Of speculation; for the hour precise Exacts our parting hence; and see!the guards, By me encamped on yonder hill, expect Their motion; at whose front a flaming sword, In signal of remove, waves fiercely round: We may no longer stay: go, waken Eve; Her also I with gentle dreams have calmed Portending good, and all her spirits composed To meek submission: thou, at season fit, Let her with thee partake what thou hast heard; Chiefly what may concern her faith to know, The great deliverance by her seed to come (For by the Woman's seed) on all mankind: That ye may live, which will be many days, Both in one faith unanimous, though sad, With cause, for evils past; yet much more cheered With meditation on the happy end. He ended, and they both descend the hill; Descended, Adam to the bower, where Eve Lay sleeping, ran before; but found her waked; And thus with words not sad she him received. Whence thou returnest, and whither wentest, I know; For God is also in sleep; and dreams advise, Which he hath sent propitious, some great good Presaging, since with sorrow and heart's distress Wearied I fell asleep: But now lead on; In me is no delay; with thee to go, Is to stay here; without thee here to stay, Is to go hence unwilling; thou to me Art all things under $Heaven, all places thou, Who for my wilful crime art banished hence. This further consolation yet secure I carry hence; though all by me is lost, Such favour I unworthy am vouchsafed, By me the Promised Seed shall all restore. So spake our mother Eve; and Adam heard Well pleased, but answered not: For now, too nigh The Arch-Angel stood; and, from the other hill To their fixed station, all in bright array The Cherubim descended; on the ground Gliding meteorous, as evening-mist Risen from a river o'er the marish glides, And gathers ground fast at the labourer's heel Homeward returning. High in front advanced, The brandished sword of God before them blazed, Fierce as a comet; which with torrid heat, And vapour as the Libyan air adust, Began to parch that temperate clime; whereat In either hand the hastening Angel caught Our lingering parents, and to the eastern gate Led them direct, and down the cliff as fast To the subjected plain; then disappeared. They, looking back, all the eastern side beheld Of Paradise, so late their happy seat, Waved over by that flaming brand; the gate With dreadful faces thronged, and fiery arms: Some natural tears they dropt, but wiped them soon; The world was all before them, where to choose Their place of rest, and Providence their guide: They, hand in hand, with wandering steps and slow, Through Eden took their solitary way. [The End] snappy-1.2.2/testdata/urls.10K000066400000000000000000025332071477101537200161240ustar00rootroot00000000000000http://ftp.sektornet.dk/tucows/herdwin0904.html http://209.143.244.16/directory/us/nd/fargo/insurance/automotive.html http://bellona.itworld.com:8080/cwi/reprint/0,1926,NAV63-128-1357-1367_STO46538,00.html http://www.legis.state.ia.us/usr/ns-home/docs/GA/76GA/Session.2/SJournal/01600/01644.html http://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showFolder/100001/1211898 http://www.burstnet.com/ads/ad7826a-map.cgi/271412263 http://topcu.tucows.com/winme/adnload/137036_30095.html http://topcu.tucows.com/winme/adnload/145034_49120.html http://link.fastpartner.com/do/session/600342/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/bitconomy.php http://www.retrobytes.org/classiccmp/9911/msg01245.html http://www.localbusiness.com/Story/Print/0,1197,DFW_196102,00.html http://bbs.kh.edu.tw/treasure/childhood/M.962620586.A/M.966031025.A/M.966031098.A.html http://www.hig.se/(accessed,clientname,return)/~jackson/roxen/testform.html http://www.ipclub.ru:8102/cgi-bin/linkmaker/linklist-view.cgi?owner=elvis&Sector=434 http://www.dulux.co.uk/UKRETAIL:229853034:DFinity.1QJiP4jMofi7bof http://www.dominionpost.com/cgi-bin/redirect.exe/85288 http://br.egroups.com/message/anedotas/3988 http://www.ing.iac.es/~cfg/group_notes/texinfo/spec/file$_must$_exist_$28appendfile$29.html http://hurweb01.hurriyetim.com.tr/hur/turk/99/06/22/yasam/14yas.htm http://www3.plala.or.jp/shinchi/niltuki/mai0416.htm http://www3.plala.or.jp/shinchi/niltuki/mai0420.htm http://213.36.119.69/do/session/152968/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml http://www.meristation.es/Trucos/s/starcraft_brood.htm http://www.meristation.es/Trucos/trainer/train_star_war.htm http://www.askme.com/cat/ShowCategory_3104_an_9.htm http://mozilla.org/newlayout/testcases/css/sec542cm.htm http://ampec.ampec.it/ted/box04/page36.htm http://ampec.ampec.it/ted/box04/page39.htm http://ampec.ampec.it/ted/box04/page42.htm http://ampec.ampec.it/ted/box04/page58.htm http://ampec.ampec.it/ted/box04/page62.htm http://www.businesswire.com/webbox/bw.080300/202160192.htm http://www.businesswire.com/webbox/bw.062700/201790580.htm http://www.businesswire.com/webbox/bw.040300/200940796.htm http://retailer.gocollect.com/do/session/1912606/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1 http://retailer.gocollect.com/do/session/1912606/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://genforum.genealogy.com/cgi-bin/print.cgi?ivy::116.html http://www.spiral.at/Katalog/Artikel/6150331/ http://www.spiral.at/Katalog/Artikel/6150390/ http://www.spiral.at/Katalog/Artikel/6150411/ http://bbs.msquare.or.kr/list.bbs/writer/Soohah/8.html http://www.eskimo.com/~wesn/waflyfishers/msg03537.html http://denniscares.mp2.homes.com/content/glossary.html?Letter=A http://library.bangor.ac.uk/search/aChandler,+Peter,+1936-/achandler+peter+1936/-5,-1,0,B/bibandlinks&F=achandler+raymond+1888+1959&5,,6 http://www.kimkihong.pe.kr/ http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/199/1998/6/0/1323673/ http://musictz.com/user/fernman.html http://tucows.concepts.nl/winnt/adnload/1381_28803.html http://www.mirror.kiev.ua:8083/paper/2000/03/1251/text/03-06-6.htm http://ring.crl.go.jp/pub/linux/debian/debian-jp/dists/stable/non-free/binary-arm/x11/?N=D http://news.novgorod.ru/news/2000/4/23/2/9 http://www.egroups.com/dir/World/Deutsch/Gesellschaft/Bildung/Schule?st=167 http://www.egroups.com/group/abitur98 http://genforum.genealogy.com/cgi-genforum/forums/casey.cgi?1477 http://www.tvstore.com/browse/TV/BOXERSHO/s.UtRroVXF http://www.tvstore.com/browse/TV/COLLECTI/s.UtRroVXF http://www.tvstore.com/browse/TV/EARRINGS/s.UtRroVXF http://polygraph.ircache.net:8181/text/m90/http_-2ewp.aliant.com/attivita.htm http://rosebay.1000pages.com/ceclgt12.htm http://www02.u-page.so-net.ne.jp/sb3/mizo/home/sub1/link2/?M=A http://community.webshots.com/photo/5827455/5827535oqdRLPNiek http://troy.lib.sfu.ca/search/dbiology+periodicals/dbiology+periodicals/19,-1,0,B/frameset&F=dbiology+religious+aspects&1,1 http://213.36.119.69/do/session/152973/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/special/alitalia.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/linux/math/computers/tunes.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/linux/math/lit/hasard.html http://www.elop.de/l0-1011-xx-3006-top.html http://britanica.com/bcom/eb/article/idxref/0/0,5716,364643,00.html http://britanica.com/bcom/eb/article/7/0,5716,28557+1+28108,00.html http://www.geocrawler.com/archives/3/3174/2000/5/50/3724502/ http://www.geocrawler.com/archives/3/3174/2000/5/50/3699557/ http://www.geocrawler.com/archives/3/3174/2000/5/50/3689003/ http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/net/slirp/files/ http://www.duluxvalentine.com/FRANCE:219793321:DFinity.1QJiP4jmPgUaedp http://mundo.ole.es/ocio/articulo/html/oci4270.htm http://www.maasvlakte-cam.nl/webcams/43/etna__italy/1999/08/29/01:28:02.html http://www.chinabyte.com/staticpages/builder/builder_course_next/HIPR/builder_course_next_219_HIPR.html http://www.prospects2.csu.ac.uk/servlet/postgrad.TcAssess?pgid=9634 http://ftp.sunet.se/pub/lang/perl/CPAN/authors/id/SPP/?N=D http://www.egroups.com/message/WDT/7751 http://pub8.ezboard.com/fapricotyarn.unsubscribeUnregisteredToTopic?topicID=4.topic http://support.tandy.com/support_audio/doc9/9679.htm http://megalink.tucows.com/winme/preview/74862.html http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/199/1996/2/0/2460450/ http://www.monaco.gouv.mc/dataweb/gouvmc.nsf/(NewsActu)/d28eaee29b3287d4c1256905004e1ef1!OpenDocument&ExpandSection=10.3,10.4,7,9,4,6 http://www.fao.org/montes/foda/wforcong/PUBLI/V2/T8S/1-3.HTM http://library.cuhk.edu.hk/search*chi/a蔡淙霖,+1965-/a%7B215572%7D%7B214758%7D%7B215f60%7D+1965/-5,-1,0,B/browse http://www.nrk.no/finnmark/x31_12_97/nyh6.htm http://www.dailyrush.dk/stories/129/comments/pages/1 http://home.wanadoo.nl/pieter.heres/nedbaskteam/nbt/Web%20Album%20nbt%20spelers/page3.htm http://members.tripod.co.jp/masa_selfish/?M=A http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/misc/lile/patches/Attic/?sortby=date http://www.chaos.dk/sexriddle/z/l/x/y/m/ http://www.chaos.dk/sexriddle/z/l/x/y/p/ http://users.sexyboards.com/amandaslut/messages/17.html http://pub11.ezboard.com/fusscroatiastartrekanimators.showAddTopicScreenFromWeb http://retailer.gocollect.com/do/session/1912610/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp http://ftp.sunet.se/pub/FreeBSD/ports/ports-current/misc/boxes/pkg-comment http://www.ce-europe2.philips.com/do/session/80299/vsid/1034/tid/1034/cid/28533/mid/1020/rid/1021/chid/1024/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkZHbjbHrolLmbkKmefLifmLpkZHljlKmoaLl0/url/http://www.eu.microsoft.com/windows/ie_intl/es/ http://www.peopledaily.co.jp/199904/26/newfiles/col_990426001084_tyxw.html http://www.peopledaily.co.jp/199904/26/newfiles/col_990426001087_tyxw.html http://iraustralia.com/listco/hk/swire/profile.htm http://jefferson.village.virginia.edu/wax/slow/english/3pix/BRight2/1/1a5a15a1.html http://infoserv2.ita.doc.gov/efm/efm.nsf/Sources!OpenView&Start=35.16&Count=30&Expand=37 http://www.affiliate.hpstore.hp.co.uk/do/session/380772/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry1.asp http://www.trax.nilex.co.uk/trax.cgi/A1S/B1U/B1R/A3S/A4R/C2U/ http://www.trax.nilex.co.uk/trax.cgi/A1S/B1U/B1R/A3S/A4R/C2S/ http://www.quia.com/email.cgi?7106&fc http://www.mirror.edu.cn/res/sunsite/pub/academic/agriculture/sustainable_agriculture/news+mail-archives/6/ http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/Beholder/CVSROOT/config?only_with_tag=MAIN http://collection.nlc-bnc.ca/100/201/300/info_tabac/html/1998/bull21/poumon.html http://www.erotism.com/sweetlostcherry/g3.htm http://adex3.flycast.com/server/socket/127.0.0.1:2800/click/SharewareMusicMachine/MusicSoftware1/96457 http://members.tripod.com/~tonarcos/paginas/Nancy1.html http://www.gbnf.com/genealog2/stout/html/d0024/I2144.HTM http://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/deskutils/cbb/ http://www.hri.org/docs//statedep/95-09-13.std.html http://ftp.univie.ac.at/packages/tex/macros/latex//contrib/supported/eurofont/adobeuro/readme.txt http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/showNextUnseen/fol/100001/1513138 http://tucows.ipv.pt/winnt/adnload/1891_28712.html http://www.tucsonweekly.com/tw/02-09-95/danehy.htm http://message/artefactphil/87?expand=1 http://www.kiarchive.ru:8091/pub/FreeBSD/FreeBSD-current/src/gnu/Makefile/ http://retailer.gocollect.com/do/session/1912644/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/index.asp http://retailer.gocollect.com/do/session/1912644/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp http://park.org:8888/Cdrom/TheNot/Mail/NotPark/msg00070.html http://citeseer.nj.nec.com/cachedpage/67611/1 http://citeseer.nj.nec.com/cidcontext/1053642 http://www.3w-buecher.de/GiacamanGeorge/GiacamanGeorge0745312381.htm http://au.yahoo.com/Regional/U_S__States/Colorado/Cities/Littleton/Real_Estate/Agencies/ http://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=21,28,29,32,22 http://hem.fyristorg.com/bfo/gagarin/WWW.SAMIRADIO.ORG/svenska/sport-sv.html http://www.chaos.dk/sexriddle/e/n/q/v/m/ http://www.hig.se/(formoutput,remove_cookie,sort,sql,sqlquery)/~jackson/roxen/ http://129.142.8.149/ds/it/isodocs/122400/12240011/12240000117900/ http://129.142.8.149/ds/it/isodocs/122400/12240011/12240000116400/ http://129.142.8.149/ds/it/isodocs/122400/12240011/12240000116200/ http://129.142.8.149/ds/it/isodocs/122400/12240011/12240000113100/ http://129.142.8.149/ds/it/isodocs/122400/12240011/12240000110800/ http://koi.www.citycat.ru/funny/fido/2000_10/07.html http://koi.www.citycat.ru/funny/fido/2000_10/09.html http://www.hig.se/(countdown,debug,header,if,return)/~jackson/roxen/ http://www.findtravel.to/search_engine_directory/north_america_usa_canada/united_states/michigan/_travel_guides/ http://mediate.magicbutton.net/do/session/625534/vsid/3255/tid/3255/cid/87978/mid/2008/rid/2157/chid/2581/url/http://www1.getmapping.com/competition/index.cfm http://mediate.magicbutton.net/do/session/625534/vsid/3255/tid/3255/cid/87978/mid/2008/rid/2157/chid/2581/url/http://www1.getmapping.com/aboutus/partners2.cfm http://www.petropages.com/products/p9827.htm http://www.egroups.com/login.cgi?login_target=%2Fmessage%2Fspynews%2F54 http://health.sx.zj.cn/Treatment/SuperGuide/2000-3-8/4716.htm http://www.nease.net/~qin/chardware.htm http://www.argos.asso.fr/bourges/pratiq/emploi/texte/anpesud.htm http://ftp.sunet.se/pub/FreeBSD/ports/ports-current/www/p5-Apache-Session/?S=A http://www.eveclub.com/cgi-bin/eveclub.front/972959425847/Catalog/1000046 http://retailer.gocollect.com/do/session/1912628/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1 http://yp.gates96.com/1/10/21/73.html http://yp.gates96.com/1/10/21/95.html http://yp.gates96.com/1/10/22/21.html http://yp.gates96.com/1/10/22/31.html http://yp.gates96.com/1/10/22/52.html http://yp.gates96.com/1/10/22/76.html http://yp.gates96.com/1/10/22/79.html http://yp.gates96.com/1/10/23/57.html http://yp.gates96.com/1/10/23/73.html http://yp.gates96.com/1/10/25/20.html http://yp.gates96.com/1/10/25/46.html http://yp.gates96.com/1/10/25/87.html http://yp.gates96.com/1/10/26/76.html http://yp.gates96.com/1/10/26/84.html http://yp.gates96.com/1/10/27/67.html http://yp.gates96.com/1/10/28/70.html http://yp.gates96.com/1/10/28/91.html http://live.excite.com/lifestyle/politics_and_society/countries/asia/uzbekistan/guides_and_reference/ http://biblioteca.upv.es/bib/doc/doc_fisbd/367/114176//C/1825519/0////25/S/MLTPAI http://mai.flora.org/forum/5322 http://mai.flora.org/forum/5318 http://www.brickshelf.com/scans/0000/0715/0715-03.html http://www.brickshelf.com/scans/0000/0715/0715-12.html http://www.brickshelf.com/scans/0000/0715/0715-21.html http://www.msb.malmo.se/search*swe/dManikyr/dmanikyr/-5,-1,0,B/frameset&F=dmani&1,1 http://message/cinematik/2441?expand=1 http://message/cinematik/2447?expand=1 http://www.jamba.de/KNet/_KNet-Rco8j1-WDd-137sh/showInfo-special1.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-Rco8j1-WDd-137ss/showInfo-hilfe.de/node.0/cde7f1uou http://acmepet.petsmart.com/canine/breeds/labrador/bboard/messages/5245.html http://acmepet.petsmart.com/canine/breeds/labrador/bboard/messages/5226.html http://config.tucows.com/winnt/adnload/67680_29009.html http://config.tucows.com/winnt/adnload/55386_29005.html http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/knotes/Attic/renamedlg.cpp?r1=1.7&only_with_tag=MAIN http://www.imagestation.com/member/?name=Twiggy5&c=1 http://cometweb01.comet.co.uk/do!tid=20&rtid=3&vsid=700&session=131981&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHljbLqleHqjiLlel5jblKqlmLkeq5j1 http://community.webshots.com/photo/1921549/2334169DWEIWPyCoH http://www.fogdog.com/cedroID/ssd3040183158605/nav/stores/skateboarding/ http://www.fogdog.com/cedroID/ssd3040183158605/content/fan/subway_series/ http://www.fogdog.com/cedroID/ssd3040183158605/boutique/ashworth/ http://www.fogdog.com/cedroID/ssd3040183158605/customer_service/our_partners.html http://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/media_center/AAAksrACwAAACCOAAl http://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/talktous/AAAksrACwAAACCOAAl http://arabia.com/jordan/article/print/1,5130,3048|Life,00.html http://198.3.99.101/reference/politics_and_govt/humor/games/ http://www.pocketbible.co.kr/old/Leviticus/Leviticus24/Leviticus24-14.htm http://www.ozon.ru/detail.cfm/ent=5&id=12&txt=1 http://www.ozon.ru/detail.cfm/ent=2&id=2141 http://www.chaos.dk/sexriddle/m/t/i/t/j/ http://www.outpersonals.com/cgi-bin/w3com/pws/out/5VhIq3rCy0eiHAzs1LOyTswNBIR33Wxc8NtFBCnYVNlrV5p9laRchaQrPWdU7-F739tsfX-p5-IA-j1rTm1YLCRAwn1FAriW9Ps21GP6CvyIL7YFYjLtOcez03i6Q9Xw3LRDtJY2CIzGQuZp-sH_-s_D66j9 http://www.outpersonals.com/cgi-bin/w3com/pws/out/lKhIoWbn-weE729M1n0JT8Ina4qOfm_FI2ROg8RdrrVu5kq_AK_urPMHafLCMwWCiOLuc8OIIHCFnJaCfz2LSrURBHFjDJP1fBO0X58Y28opSv0qVXWAKYtub7NbCIIWMbE_ldcypBmh http://www.outpersonals.com/cgi-bin/w3com/pws/out/PbhIoduIKw3faQWbBTWSK5aq7Y-nGqcvK3flLaTRo02t7k7GMY8rPlupJIheD8869wCXUAer4VimzyYa25qUx7ef2l2VdMR9i_p-pJ5gg2S6ZcP-G6RuPfdDS3TEsJNXGVsOTs1rA605 http://www.linux.com/networking/network/development/web_server/performance/?printable=yes http://www.linux.com/networking/network/development/web_server/performance/IBM/ http://sunsite.icm.edu.pl/Linux/Documentation/HOWTO/mini/IP-Subnetworking-3.html http://dreamcity.gaiax.com/www/dreamcity/m/s/musou/frame.html http://guardian.co.uk/Widgets/Read_It_Later/TR/1,4694,4043922,00.html http://www.gpul.org/ftp/os/infinite/?M=A http://www.gpul.org/ftp/os/infinite/infinite_OS.txt http://retailer.gocollect.com/do/session/1912666/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/exclusives.asp http://yp.gates96.com/13/77/10/66.html http://yp.gates96.com/13/77/10/91.html http://yp.gates96.com/13/77/11/82.html http://yp.gates96.com/13/77/12/17.html http://yp.gates96.com/13/77/13/68.html http://yp.gates96.com/13/77/13/80.html http://yp.gates96.com/13/77/16/3.html http://yp.gates96.com/13/77/16/17.html http://yp.gates96.com/13/77/16/49.html http://yp.gates96.com/13/77/17/8.html http://yp.gates96.com/13/77/18/4.html http://yp.gates96.com/13/77/18/61.html http://yp.gates96.com/13/77/18/71.html http://yp.gates96.com/13/77/19/3.html http://yp.gates96.com/13/77/19/24.html http://yp.gates96.com/13/77/19/48.html http://yp.gates96.com/13/77/19/98.html http://yp.gates96.com/13/77/19/99.html http://scsinternet.tucows.com/winnt/mail95.html http://tolm.terrashare.com/45.htm http://news.dreamwiz.com/news/08/20001030/kukmin/200010301903081903261.html http://www.tccomputers.com/cgi-bin/bp/1463655603/services/info/tci.htm http://www.tccomputers.com/cgi-bin/bp/1463655603/services/csc/csc.htm http://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-6-2r.htm http://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-3-2r.htm http://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-18-2r.htm http://www.2pl.com/b/pl/to/1/01/04/v2/1010400016-1r.htm http://www.123bestphonerates.com/q/001p/vn/vR85aEOIaY.htm http://www.thisislancashire.co.uk/lancashire/archive/1997/07/17/SPORTST5VQ.html http://www.thisislancashire.co.uk/lancashire/archive/1997/07/17/SPORTST7VQ.html http://www.thisislancashire.co.uk/lancashire/archive/1997/07/17/SPORTST11VQ.html http://www.elsur.cl/archivo/marzo2000/13marzo2000/elsur/deportes/ind3.php3 http://home.no.net/fristart/kvasir816/ http://www.fun7.de/party/cafe_europa/_vti_cnf/?D=A http://www.users.yun.co.jp/cgi-bin/moriq/pigeon/pigeon.cgi/%C5%E7%BA%AC%B8%A9.%C2%E7%B8%B6%B7%B4%C2%E7%C5%EC%C4%AE?c=e http://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.expired.com/html/service.html http://home.t-online.de/home/mtc.hannover/head1655833.htm http://moneycentral.msn.com/investor/invsub/insider/Details.asp?Pval=1&Symbol=MKSI http://www.sohu.com/Regional/hunan/City_County/Yiyang/Firms/Food_Beverage/ http://www.kulturkreis-rhein-lahn.de/lauer/fax.htm http://ustlib.ust.hk/search*chi/aporter+bill+1943/aporter+bill+1943/7,-1,0,B/browse http://www.brio.de/BRIO.catalog/39fe2f3708fb3c8e2740d472aa7806d5/UserTemplate/2 http://www.brio.de/BRIO.catalog/39fe2f3708fb3c8e2740d472aa7806d5/UserTemplate/6 http://rcsl.auto.inha.ac.kr/~treeman/Documents/HOWTO/Keyboard-and-Console-HOWTO-19.html http://www.etoys.com/cat/toy/category/construction/brio_builder_system/1 http://www.kxmd.com/now/story/0,1597,194790-295,00.shtml http://www.ferien-immobilien.de/DominikanischeRep/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Gemeinsam/versicherungen/gebaeude/IIM-Teil/Startseite/froben.htm http://hiv.medscape.com/LWW/SMD/1999/v21.n03/smd2103.01.html http://www.egroups.com/message/dk-jaws/530 http://no.egroups.com/message/daemon-news-announce/12 http://ring.toyama-ix.net/archives/text/elisp/jaist/yamaoka/apel/00_THIS_DIRECTORY_WILL_NOT_BE_UPDATED_UNTIL_2000-10-26 http://pub12.ezboard.com/ftibesataxg1637tibes.subscribeUnregisteredToTopic?topicID=7.topic http://ustlib.ust.hk/search*chi/ali+huan+1827+1891/ali+huan+1827+1891/-5,-1,0,E/frameset&F=ali+huan&4,,0 http://ustlib.ust.hk/search*chi/ali+huan+1827+1891/ali+huan+1827+1891/-5,-1,0,E/frameset&F=ali+huang+1895&1,,0 http://www.digitalcity.com/cincinnati/sports/log.dci?league=NCF&team=NNF http://ftp.nacamar.de/pub/debian/dists/potato/main/disks-m68k/2.2.16-2000-07-14/mac/images-1.44/?D=A http://www.academyfloral.com/state/arboo/flowers/thanksabunchbouquet2.html http://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/peacelink-scuola/2015003604/view/8 http://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/pkgsrc/lang/smalltalk/files/?S=A http://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/pkgsrc/lang/smalltalk/files/patch-sum http://carriage.de/Schoner/Sammlungen/literature/collections/literature/modelle/ http://www.buybuddy.com/sleuth/27/1/11001/1692/ http://193.120.14.241/pub/languages/perl/CPAN/src/5.0/devel/ http://lastminutetravel.bedandbreakfast.com/bbc/p208900.asp http://chat.sportsline.com/u/wire/stories/0,1169,2957692_59,00.html http://acad.uis.edu/sas/qc/q-index.htm http://acad.uis.edu/sas/qc/s-index.htm http://library.cuhk.edu.hk/search*chi/aPan,+Zhuonan./apan+zhuonan/-5,1,1,B/frameset&F=apan+zhichang+1956&1,1, http://www.linux.com/networking/network/install/tools/updates/new/ http://www.linux.com/networking/network/install/tools/updates/Standards/ http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=13,31,5,11,26 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=23,31,5,11,26 http://www.mfa.no/fin/norsk/publ/stprp/006005-991562/index-hov017-b-n-a.html http://ftp.sunet.se/pub/lang/perl/CPAN/authors/id/DBEAZLEY/?N=D http://fi.egroups.com/messages/infoespo/6?expand=1 http://ibc.cn.net/2000/0718/it-1message.html http://www.shaggysguide.com/conhtml/adnload/51647_1809.html http://www.shaggysguide.com/conhtml/adnload/51657_5567.html http://www.shaggysguide.com/conhtml/adnload/74370_17872.html http://www.shaggysguide.com/conhtml/adnload/78469_19520.html http://www.shaggysguide.com/conhtml/adnload/78940_19788.html http://www.backflip.com/members/jhferrara/5171381/page=1/sort=1/linkspp=10 http://www.amcity.com/philadelphia/stories/1998/08/24/newscolumn3.html?t=printable http://www.rge.com/pub/tex/biblio/bibtex/ms-dos/demel/?N=D http://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/67841000005885200000309700000064451/Giveaways.wo/257820000054451/2.0.0.6.0/3/Webobjects1 http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-gds.desy.de:8080/zeitpl/zpl.htm http://click-to.tell-a-friend.boardhost.com/tell-a-friend-confirm.cgi?chudtvlogic&msg=1596 http://retailer.gocollect.com/do/session/1912639/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www.jpc-music.com/5590216.htm http://huntingfishing.tripod.com/sturgeonmain.htm http://polygraph.ircache.net:8181/wwwboard/prodev/seminar/fast/http_-2www.centennialcc.org/bps.html http://www.chaos.dk/sexriddle/s/t/c/x/l/ http://www.chaos.dk/sexriddle/s/t/c/x/z/ http://es.egroups.com/messages/plato-meno/1285 http://tonggu-gch.ed.seoul.kr/home/2grade/2-10/981001/hang.htm http://sjsulib1.sjsu.edu:81/search/dreligion/-5,-1,0,E/exact&dreligion+libraries&1,3 http://www.generation-formation.fr/chiffrec.htm---o21zAo0UPwo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqHSezTHkekydMfeZJPdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbd.htm http://www.generation-formation.fr/dicoguid/diclogin.htm---o21zAo0UPwo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqureds5cezwhlezMpDeH7vGebI1yoKkfMd4vmMAxaAooKkfMd4u5xdfb7rmdfbT.htm http://www.hollywoodonline.com/asplocal/mgvideoad.asp?rushhour-video-holdon-mov http://www.ifg.uni-kiel.de/doc-clients/kdelibs-doc/html/kdeui/full-list-KRestrictedLine.html http://www.3w-sciencefiction.de/ShapiroLarry/ShapiroLarry0760306729.htm http://202.96.140.98/js/wenge/ http://www.great-cyber-mall.com/SelectCompany.asp?CityID=230&CatID=19 http://www.great-cyber-mall.com/SelectCompany.asp?CityID=230&CatID=34 http://www.amazon.com.hk/exec/obidos/tg/stores/browse/-/books/13361/ http://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=99&Count=50&Collapse=116 http://www.pbase.com/image/35702/small http://www.infoscape.com.cn:8171/nf/0010/21/nfzy2104.htm http://dell.excite.com/photo/topic/weather/national/19 http://www.linux.com/networking/network/network/firewall/microsoft/government/ http://www.gasex.com/gay.photo/gay.penis.pics.html http://hausarbeiten.de/cgi-bin/superDBinters.pl/archiv/geschichte/gesch-stedinger.shtml http://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/http_-2www.exploreuw.com/cards/ssoenews.html http://www.fogdog.com/cedroID/ssd3040183137325/cgi-bin/MyFogdog http://www.fogdog.com/cedroID/ssd3040183137325/cgi-bin/CedroCommerce?func=EditBasket http://www.fogdog.com/cedroID/ssd3040183137325/nav/stores/cycling/ http://www.fogdog.com/cedroID/ssd3040183137325/nav/stores/snowboarding/ http://tucows.wanadoo.nl/win2k/organ2k_license.html http://tucows.wanadoo.nl/win2k/preview/59164.html http://windows.tucows.com/preview/001-009-005-005C.html http://anekdotwall.boom.ru/car/html/75.htm http://tucows.concepts.nl/win2k/clipb2k_size.html http://tucows.concepts.nl/win2k/adnload/37291_29917.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cricrila&l=pt http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cricrilava&l=pt http://www.trax.nilex.co.uk/trax.cgi/A1C/1AR/A2S/A3S/A3D/D1S/ http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_ngqyjt_ngqyjt.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_rtnucb_tyciyrg.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_kiektgt_fpwif.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_rjdbc_rjdbc.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_xsygo_xsygo.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_bovqcy_mkaqta.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_lgbrnl_psnjjt.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_lgbrnl_ybvfp.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_vermn_xmxmm.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/12_keojvu_faoex.html http://info-china.hypermart.net/enterprise/company/messages/25.html http://ring.yamanashi.ac.jp/pub/linux/debian/debian-jp/dists/potato/non-US/contrib/binary-m68k/Release http://www.amigos.com/cgi-bin/w3com/pws/ffe/R7RIRASjZ5ATyRjNyXQBbwzK4LLK-rhgzZEBqJsLaR1cdnaeB7LT1xORWRg6aQmLxO7QWLEpsdjuf2ZqAnUO1IKpfrRctaIMYIzMNy1DSb7dp8_5z39WdF7oxbKUAByA http://indigotrem1.chemie.uni-mainz.de/~manng001/Filme/S/SexLuegenundVideo.html http://se.egroups.com/message/hur/387 http://www.ilmessaggero.it/hermes/19990111/07_MARCHE/MARCHE_REGIONE/DUE.htm http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/quizz/misc/colorart/lit/pushkin.html http://www.amzn.com/exec/obidos/ts/artist-glance/201040/ref=pm_dp_ln_m_6/ http://tucows.netpower.no/winme/adnload/138674_29970.html http://www.chaos.dk/sexriddle/z/d/q/p/c/ http://www.chaos.dk/sexriddle/z/d/q/p/u/ http://sv.pachinkovillage.co.jp/catalog/DinoVaderB/3.html http://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/B1,a,1f,6,6,3a,3a,,5,,1f,5, http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=deflazioneranno&l=it http://polygraph.ircache.net:8181/company/html/http_-2www.io.com/~kinnaman/pchealth/f-agents.html http://polygraph.ircache.net:8181/company/html/http_-2www.io.com/~kinnaman/pchealth/f-leisureworld.html http://ftp.univie.ac.at/packages/perl/modules/by-module/Tie/ILYAZ/cperl-mode/rms-emacs-20.2-patch-narrow-buffer+dirfiles http://www.expressindia.com/ie/daily/19991126/ige26097p.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/ELINKEINO-+JA+YRITYSTOIMINTA/yritt%E4jyys/lukio/oppimateriaali/itseopiskelu/ http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=36,23,11,33,18 http://www.trib.com/scjournal/ARC/1996/MAR/3_24_96/marines.html http://www.slac.stanford.edu/BFROOT/www/Computing/Programming/QA/QaBetaTools/6.7.5a/SunOS5/?S=D http://pokemonplant.tripod.com/150yellow.html http://ftp.debian.org/dists/potato/contrib/binary-all/devel/?N=D http://sunsite.org.uk/packages/tcl/Collections/ftp.neosoft.com/sorted/packages-8.0/print/frink/1.2p35/ http://library.bangor.ac.uk/search/m304.6+LIN/m304.6+lin/-5,-1,0,B/frameset&F=m304.6+jos&1,1 http://members.tripod.lycos.nl/janninksweg145/huis.htm http://www.uib.no/People/mihtr/PS01/PS01_219.htm http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus141561/eus174865/eus327367/eus327602/eus329879/ http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus141561/eus174865/eus327367/eus327602/eus327608/ http://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|39P02|972959512|Communications|user|0|1,0,0,1 http://www.bluefreds.f9.co.uk/vote2.html http://www.hri.org/docs//statedep/1999/99-05-07.std.html http://polygraph.ircache.net:8181/http_-2www.hblinfo.com/f_snowbuddies.html http://mediate.magicbutton.net/do/session/625565/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/products.cfm http://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=692&session=131975&mid=1000&rid=1060&cid=37051&chid=1702&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5 http://digilander.iol.it/net4free/spedia.htm http://totalsports.aol.com/stats/bbo/mlb/20000425/col.at.mon.prvw.html http://210.178.135.1/netbbs/Bbs.cgi/nhic32042/qry/pno/0/zka/B2-kB2Zk/qqatt/^ http://cikkek.lezlisoft.com/kikelet/spiritualitas/spirit3v9.shtml http://www.wingateinns.com/ctg/cgi-bin/Wingate/aarp/AAAksrACwAAACCPAAl http://sunsite.berkeley.edu/PhiloBiblon/BITAGAP/BIB/BIB1848.html http://sunsite.uakom.sk/tucows/adnload/69390_28371.html http://sunsite.uakom.sk/tucows/preview/77630.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(22,0+9,0-~0,3 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(22,0+9,0-~9,6 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(22,0+9,0-~21,0 http://sirac.inrialpes.fr/Infos/Personnes/Christophe.Rippert/ressources/jdk1.2.2/docs/api/java/security/ http://polygraph.ircache.net:8181/getting_started/http_-2www.microsoft.com/powered/radio/email_pal/email_pal.htm http://mirror.nucba.ac.jp/mirror/FreeBSD/branches/2.2-stable/ports/net/tund/?M=A http://mirror.nucba.ac.jp/mirror/FreeBSD/branches/2.2-stable/ports/net/tund/?D=A http://library.bangor.ac.uk/search/tNursing+times+clinical+monographs+&%2359%3B+no.+51/tnursing+times+clinical+monographs+no+++51/-17,-1,0,B/browse http://library.bangor.ac.uk/search/tNursing+times+clinical+monographs+&%2359%3B+no.+51/tnursing+times+clinical+monographs+no+++51/-5,-1,0,B/frameset&F=tnursing+times+complementary+therapy&1,1 http://ftp.chg.ru/pub/FreeBSD/doc/en_US.ISO_8859-1/articles/programming-tools/ http://polygraph.ircache.net:8181/getting_started/http_-2www.microsoft.com/powered/bomb/bomb.htm http://linux.tucows.inwind.it/conhtml/adnload/8523_5414.html http://www.magicvillage.de/magicvillage/KonferenzPlaza/fbs/%2328835852?NextInThread http://www.shopworks.com/samplers/index.cfm/action/cart/userid/0009CECE-2EE1-19FE-9038010B0A0ADCF2 http://dailynews.sina.com/newsCenter/taiwan/udn/2000/1021/2051701_b5.html http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/khexedit/pics/Attic/?hideattic=1&sortby=date http://moviestore.zap2it.com/browse/MOVIES/BOWL/s.zchC6lsi http://moviestore.zap2it.com/browse/MOVIES/MUSIC/s.zchC6lsi http://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d13/b12,c,1f,18,18,,13,,1f,13,17,,1f,17, http://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d14/b12,c,1f,18,18,,13,,1f,13,17,,1f,17, http://209.50.251.176/~bb/ http://tucows.energy.it/winnt/adnload/59163_30035.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=circundara&l=pt http://vishvesha.tripod.com/4/068d.htm http://www.hot.ee/timbsy/kass_files/pildikogu.html http://www3.newstimes.com/archive99/jan2599/rga.htm http://pub11.ezboard.com/fmarjoriesdmboardpostyourdmpedigreeshere.showMessage?topicID=21.topic http://www.geocities.com/Heartland/Plains/4825/bennyn.html http://citeseer.nj.nec.com/site/115145 http://www.techsupplies.com/sleuth/17/1/40406/254200/ http://ccmnet.xj.cei.gov.cn/10/b10/b1007/99-05-02/a5-02.asp http://206.251.18.85/FEATURES/home_improvement/1999/10/01/fall_lawncare3.html http://www.dulux.co.uk/UKRETAIL:1355333640:DFinity.1QJiP4jmPgimjKlA http://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=700&session=131985&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5 http://cometweb01.comet.co.uk/do!tid=20&rtid=1&vsid=700&session=131985&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplGGolLarZLq4fLpmiLXv-KmooLckYLoznGmpq0qsc0mojLbkYLozvGotc0ZdoLckYLozvGsmv0qmc0jXfLkVZLdocLkYoLzcj1XfkLVZXLqkXLjbzKcob5qroLkVrLoizKlZd5fjYHfklKkZlLjjbLoZbLpl51ubZLDXZLollK3ljLbqlKjXfLkkaHotl4obmLloqL http://www.berliner-morgenpost.de/bm/inhalt/990928/berlin/story14.html http://gb.toget.com.tw/article/printer_tool/19990825_3210_p1.html http://sbtr42.sbsusa.com/ncsamples/base1.htm http://halflife02.opasia.dk/cs3stats/players/_AMNeSIA_.html http://mediate.magicbutton.net/do/session/625570/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/basket.cfm http://mediate.magicbutton.net/do/session/625570/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/viewer.cfm http://www.citythek.de/erfurt/rheinhyp/fsinhalt.htm http://my.egroups.com/group/mall-komputer http://www-bd.cricket.org/link_to_database/ARCHIVE/1997-98/PAK_IN_RSA/PAK_IN_RSA_JAN-APR1998_PAK-SQUAD.html http://www-bd.cricket.org/link_to_database/GROUNDS/RSA/ST-GEORGE_PARK_PT-ELIZ/ http://www-bd.cricket.org/link_to_database/ARCHIVE/1997-98/PAK_IN_RSA/PAK_RSA_T3_06-10MAR1998_ET_MR.html http://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/erreichenPartner/Gemeinsam/MarketingStrategie/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Top-Darlehens-Konditionen/anforderungsformular.htm http://www.online.kokusai.co.jp/Qa/V0043459/wrd/G800/qa/ http://iland.tucows.com/win2k/adnload/59229_29990.html http://iland.tucows.com/win2k/preview/144411.html http://iland.tucows.com/win2k/adnload/38173_29963.html http://www.arm.com/sitearchitek/armtech.ns4/8ab0ea422fba51238025691f00399e13/9cb09cb360a967848025691f004e28b2!OpenDocument&ExpandSection=6,13,12,-1 http://ftp.uni-mannheim.de/languages/perl/CPAN/modules/by-authors/id/JMURPHY/?N=D http://proam.golfonline.com/tours/2000/hooters/silversprings/scores2.html http://ftp.du.se/pub/FreeBSD/branches/4.0-stable/src/games/grdc/ http://ftp.du.se/pub/FreeBSD/branches/4.0-stable/src/games/pom/ http://ftp.du.se/pub/FreeBSD/branches/4.0-stable/src/games/Makefile http://www.artex.firenze.it/_qualitart/articoli/zoom/03651.htm http://www.chaos.dk/sexriddle/m/k/v/b/p/ http://www.chaos.dk/sexriddle/m/k/v/b/s/ http://www.chaos.dk/sexriddle/t/j/d/n/n/ http://www.daysinn.com/ctg/cgi-bin/DaysInn/media_center/AAAksrACwAAACCQAAM http://tukela.heha.net/ys/ll/boyuan.htm http://tukela.heha.net/ys/ll/jinciming.htm http://genforum.genealogy.com/ai/messages/4299.html http://genforum.genealogy.com/ai/messages/4221.html http://genforum.genealogy.com/ai/messages/4225.html http://www.linkclub.or.jp/~sticky/index1/diary/1999/199906.html http://ww.egroups.com/subscribe/lexingtonkystrapon http://chita.fi.upm.es/docs/info/en_US/a_doc_lib/motif/motifsg/About.htm http://chita.fi.upm.es/docs/info/en_US/a_doc_lib/motif/motifsg/motifsg41.htm http://chita.fi.upm.es/docs/info/en_US/a_doc_lib/motif/motifsg/motifsg43.htm http://hakuba-net.gr.jp/guide/rest/spa_each/spa_2.html http://yp.gates96.com/6/16/40/22.html http://yp.gates96.com/6/16/40/44.html http://yp.gates96.com/6/16/40/50.html http://yp.gates96.com/6/16/40/69.html http://yp.gates96.com/6/16/40/83.html http://yp.gates96.com/6/16/41/49.html http://yp.gates96.com/6/16/41/50.html http://yp.gates96.com/6/16/41/67.html http://yp.gates96.com/6/16/42/15.html http://yp.gates96.com/6/16/42/51.html http://yp.gates96.com/6/16/42/56.html http://yp.gates96.com/6/16/43/8.html http://yp.gates96.com/6/16/43/69.html http://yp.gates96.com/6/16/43/71.html http://yp.gates96.com/6/16/44/11.html http://yp.gates96.com/6/16/44/51.html http://yp.gates96.com/6/16/45/20.html http://yp.gates96.com/6/16/45/43.html http://yp.gates96.com/6/16/46/12.html http://yp.gates96.com/6/16/46/25.html http://yp.gates96.com/6/16/46/64.html http://yp.gates96.com/6/16/47/42.html http://yp.gates96.com/6/16/47/80.html http://yp.gates96.com/6/16/48/54.html http://yp.gates96.com/6/16/48/85.html http://yp.gates96.com/6/16/49/51.html http://yp.gates96.com/6/16/49/62.html http://assgay.com/main.html?fuck.cock.gaysex http://ring.yamanashi.ac.jp/pub/linux/linuxppc/contrib/software/System_Environment/Libraries/?S=A http://computalynx.tucows.com/winme/adnload/138681_29976.html http://computalynx.tucows.com/winme/adnload/138706_29992.html http://computalynx.tucows.com/winme/adnload/138690_29990.html http://computalynx.tucows.com/winme/adnload/138694_29981.html http://iceberg.adhomeworld.com/cgi-win/redirect.exe/851857198 http://link.fastpartner.com/do/session/600337/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php http://link.fastpartner.com/do/session/600337/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php http://link.fastpartner.com/do/session/600337/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/learn.htm http://www.linux.com/networking/network/applications/hardware/device/development/ http://www.linux.com/networking/network/applications/hardware/device/Corel/ http://www.linux.com/networking/network/applications/hardware/device/?kw_offset=50 http://ftp.gigabell.net/debian/dists/unstable/main/binary-m68k/sound/?M=A http://no.egroups.com/message/slfxpzur/36 http://no.egroups.com/message/slfxpzur/38 http://nuance.dhs.org/lbo-talk/0004/2286.html http://www.jamba.de/KNet/_KNet-XEk8j1-ADd-136sq/showInfo-datenschutz.de/node.0/cde7f1uou http://yp.gates96.com/2/37/60/0.html http://yp.gates96.com/2/37/60/13.html http://yp.gates96.com/2/37/61/24.html http://yp.gates96.com/2/37/61/66.html http://yp.gates96.com/2/37/62/5.html http://yp.gates96.com/2/37/62/31.html http://yp.gates96.com/2/37/63/31.html http://yp.gates96.com/2/37/63/43.html http://yp.gates96.com/2/37/63/48.html http://yp.gates96.com/2/37/63/60.html http://yp.gates96.com/2/37/63/88.html http://yp.gates96.com/2/37/64/62.html http://yp.gates96.com/2/37/64/74.html http://yp.gates96.com/2/37/65/0.html http://yp.gates96.com/2/37/66/20.html http://yp.gates96.com/2/37/67/41.html http://yp.gates96.com/2/37/68/2.html http://yp.gates96.com/2/37/68/50.html http://yp.gates96.com/2/37/69/15.html http://yp.gates96.com/2/37/69/41.html http://yp.gates96.com/2/37/69/47.html http://yp.gates96.com/2/37/69/60.html http://yp.gates96.com/2/37/69/75.html http://yp.gates96.com/2/37/69/76.html http://gettosdownloads.subportal.com/sn/Palm_Pilot/Games/12428.html http://news.novgorod.ru/read/65/2000/10/27/10/49 http://www.schwan.de/links-biografie.html http://www.fogdog.com/cedroID/ssd3040183124617/cgi-bin/MyFogdog http://www.nrk.no/finnmark/x27_6_97/nyh9.htm http://www.aelita.net/products/news/services/sitemap/~archive/Download_redirect/company/Copyright.htm http://www.staroriental.net/nav/soeg_c/ihf,aol,n15,149,TVB香港小姐2000.html http://members.xoom.com/agent187/politics.htm http://sunsite.org.uk/public/packages/perl/collections/cis.ufl/comp.lang.perl.announce/1998-03/724 http://www.thestateofcolorado.com/gcecommercialsales.html http://ftp.du.se/pub/redhat/rawhide/sparc/RedHat/RPMS/?M=A http://www.linux.com/networking/network/community/trade_show/magazine/open_source/ http://www.linux.com/networking/network/community/trade_show/magazine/Slashdot/ http://www.linux.com/networking/network/community/trade_show/magazine/investors/ http://scifi.emerchandise.com/browse/TV/PIN/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/DILBERT/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/DR.KATZ/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/FRIENDS/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/FUTURAMA/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/LOIS-CLARK/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/SPEEDRACER/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/THUNDERCATS/_/b.TV/s.KkOtzPMn http://scifi.emerchandise.com/browse/WCW/_/b.TV/s.KkOtzPMn http://www.railion.de/home/db_reise_touristik/region/bremen/db_rt_firmenreisedienst_reisezentrum_hb.shtml http://pegasus.infor.kanazawa-it.ac.jp/~hara/bsd4.1-release/D/N_GETFLAG_NET.html http://yp.gates96.com/5/54/20/19.html http://yp.gates96.com/5/54/21/5.html http://yp.gates96.com/5/54/21/42.html http://yp.gates96.com/5/54/21/60.html http://yp.gates96.com/5/54/21/69.html http://yp.gates96.com/5/54/21/81.html http://yp.gates96.com/5/54/21/96.html http://yp.gates96.com/5/54/22/6.html http://yp.gates96.com/5/54/22/29.html http://yp.gates96.com/5/54/22/33.html http://yp.gates96.com/5/54/22/64.html http://yp.gates96.com/5/54/22/83.html http://yp.gates96.com/5/54/22/94.html http://yp.gates96.com/5/54/22/98.html http://yp.gates96.com/5/54/23/17.html http://yp.gates96.com/5/54/23/41.html http://yp.gates96.com/5/54/24/2.html http://yp.gates96.com/5/54/24/5.html http://yp.gates96.com/5/54/24/9.html http://yp.gates96.com/5/54/24/90.html http://yp.gates96.com/5/54/25/89.html http://yp.gates96.com/5/54/26/41.html http://yp.gates96.com/5/54/27/83.html http://yp.gates96.com/6/59/21/52.html http://yp.gates96.com/6/59/22/63.html http://yp.gates96.com/6/59/23/37.html http://yp.gates96.com/6/59/23/95.html http://yp.gates96.com/6/59/24/3.html http://yp.gates96.com/6/59/24/9.html http://yp.gates96.com/6/59/25/26.html http://yp.gates96.com/6/59/25/55.html http://yp.gates96.com/6/59/25/84.html http://yp.gates96.com/6/59/25/94.html http://yp.gates96.com/6/59/26/53.html http://yp.gates96.com/6/59/26/73.html http://yp.gates96.com/6/59/27/15.html http://yp.gates96.com/6/59/27/29.html http://yp.gates96.com/6/59/27/49.html http://yp.gates96.com/6/59/27/97.html http://yp.gates96.com/6/59/28/31.html http://yp.gates96.com/6/59/28/32.html http://yp.gates96.com/6/59/28/39.html http://yp.gates96.com/6/59/28/98.html http://yp.gates96.com/6/59/29/22.html http://yp.gates96.com/6/59/29/83.html http://www.gbnf.com/genealogy/royal92/html/d0016/I1249.HTM http://www.gbnf.com/genealogy/royal92/html/d0018/I734.HTM http://hifichoice.co.uk/archive/perl/193_printreview.htm http://hifichoice.co.uk/archive/perl/313_printreview.htm http://www.highwired.net/Paper/UniversalNav/Redirect/0,5314,2623-7802,00.html http://www.mrlinux.notrix.de/ http://www.ucalgary.ca/UofC/faculties/medicine/CHS/nhrdb/area/anat/fr.htm http://home.pchome.com.tw/tv/pili0614/xing-sh/capric/capric47.htm http://home.pchome.com.tw/tv/pili0614/xing-sh/capric/capric21.htm http://home.pchome.com.tw/tv/pili0614/xing-sh/capric/caf26.htm http://user.chollian.net/~pleiad7s/josun/3-37.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=233&discrim=81,3,15 http://mediate.magicbutton.net/do/session/625571/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/aboutus/index.cfm http://www.telecombrokers.com/q/001p/atn8/2aS9DLAZRXc.htm http://www.telecomrefunds.com/q/001p/atn8/4SeFiiXvs2A.htm http://soho.nascom.nasa.gov/solarsoft/soho/lasco/lasco/data_anal/data/9701/?M=A http://members.xoom.com/mindnare http://people.freenet.de/TheChamp/nachhilfe.htm http://people.freenet.de/TheChamp/cheats.htm http://www.zinezone.com/movies/1,4003,1040-23080,00.html http://kulichki-win.rambler.ru/moshkow/TURIZM/kutsajo6.txt_with-icons.html http://www.linux.com/networking/network/release/availability/hardware/?printable=yes http://www.linux.com/networking/network/release/availability/hardware/applications/ http://www.shopworks.com/flmp/index.cfm/action/cart/userid/000D1850-2F00-19FE-9038010B0A0ADCF2 http://shrike.depaul.edu/~afranz/multimedia/?S=A http://totalsports.net/news/20001014/bbo/mlb/sea/001014.0024.html http://totalsports.net/news/20001009/bbo/mlb/sea/001009.0039.html http://totalsports.net/news/20001006/bbo/mlb/sea/001006.0354.html http://cometweb01.comet.co.uk/do!session=131986&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1 http://html.tucows.ciaoweb.it/adnload/berglincondlbind.html http://www.tiscover.com/1Root/Interessante_Region/127151/sportfreizeit/m_sportfreizeit.wm_sport_freibad..1.html http://f24.parsimony.net/forum54080/messages/97.htm http://f24.parsimony.net/forum54080/messages/68.htm http://www.amulation.com/md-l-archive/199702/msg00210.html http://netpower.tucows.com/winnt/adnload/2821_29573.html http://kutschen.de/Schoner/Info-d/literature/collections/collections/Geschichte/ http://webtools.myschoolonline.com/page/0,1871,0-353-38-44534,00.html http://www.linux.com/networking/network/help/hardware/open_source/GNOME/ http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=12,25,26,17,24 http://retailer.gocollect.com/do/session/1912664/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/exclusives.asp http://retailer.gocollect.com/do/session/1912665/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/news/index.asp http://ring.nihon-u.ac.jp/pub/doc/jpnic/members/WORLDNET/members.txt http://www.123webagent.com/q/001p/atn8/zImXxARDSm.htm http://www.tu-chemnitz.de/~jflo/DOSDemos/cost_b.txt http://yp.gates96.com/5/54/27/97.html http://yp.gates96.com/5/54/28/23.html http://yp.gates96.com/5/54/29/33.html http://yp.gates96.com/5/54/29/64.html http://rex.skyline.net/html/Medical_Equipment.html?224,software,equipment,agriculture,science http://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd434602591 http://www.dispatch.co.za/1998/05/29/business/BA.HTM http://www.dispatch.co.za/1998/05/29/business/JSE.HTM http://retailer.gocollect.com/do/session/1912663/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp http://retailer.gocollect.com/do/session/1912663/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp http://retailer.gocollect.com/do/session/1912663/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp http://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=8,9,3,6,1,11,13 http://retailer.gocollect.com/do/session/1912620/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/gifts/gift_floor.asp http://genforum.genealogy.com/ga/messages/4583.html http://genforum.genealogy.com/ga/messages/4582.html http://genforum.genealogy.com/ga/messages/4570.html http://genforum.genealogy.com/ga/messages/4561.html http://genforum.genealogy.com/ga/messages/5575.html http://ftp.gnu.org/software/sather/ICSI_Sather/whoswho.html http://dk.egroups.com/group/GHSBasketball http://dk.egroups.com/group/lovebasket http://biblioteca.upv.es/bib/doc/doc_fisbd/10/131276//V/1820145/0////25/S/MLTPAID http://www.qth.net/archive/packfr/200009/20000921.html http://213.36.119.69/do/session/152975/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/preparer/sante.htm http://ftp.lip6.fr/pub8/FreeBSD/FreeBSD-current/ports/emulators/mtools/ http://ftp.lip6.fr/pub8/FreeBSD/FreeBSD-current/ports/emulators/sim6811/ http://fyi.cnn.com/ASIANOW/asiaweek/97/0328/aa7.html http://pub21.ezboard.com/fbeauxbatonfrm32.showMessage?topicID=6.topic http://www.tente.de/us/produkte/produkteigenschaften/aa000001609.htm http://www.tente.de/us/produkte/produkteigenschaften/aa000001630.htm http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/net/rboot/?N=D http://www.geocities.co.jp/Technopolis-Mars/3952/link.html http://saleonall.com/cat/software/reference/5112/969434/advanced-search.html http://www.jazzbude.de/EddieLockjawDavis/B000026F24.htm http://www6.freeweb.ne.jp/art/iftaka/art/ http://www.canit.se/(ftp,irc,k15,www)/support/kontakt.html http://www.mirror.edu.cn/res/sunsite/pub/academic/chemistry/iupac/Download/publications/pac/special/0199/ http://cinemabilia.de/details/katnr/234764/ http://polygraph.ircache.net:8181/services/design/http_-2www.infolane.com/dallas.htm http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/games/crafty-open-medium/pkg-comment http://uk.dir.yahoo.com/Education/Primary_and_Secondary/Schools/Middle_Schools/By_Region/U_S__States/Virginia/Complete_List/ http://yp.gates96.com/6/2/10/13.html http://yp.gates96.com/6/2/10/41.html http://yp.gates96.com/6/2/10/83.html http://yp.gates96.com/6/2/11/51.html http://yp.gates96.com/6/2/11/89.html http://yp.gates96.com/6/2/12/22.html http://yp.gates96.com/6/2/12/58.html http://yp.gates96.com/6/2/12/62.html http://yp.gates96.com/6/2/12/79.html http://yp.gates96.com/6/2/13/19.html http://yp.gates96.com/6/2/13/51.html http://yp.gates96.com/6/2/13/64.html http://yp.gates96.com/6/2/14/75.html http://yp.gates96.com/6/2/15/91.html http://yp.gates96.com/6/2/16/83.html http://yp.gates96.com/6/2/18/15.html http://yp.gates96.com/6/2/18/54.html http://yp.gates96.com/6/2/19/35.html http://yp.gates96.com/6/2/19/68.html http://yp.gates96.com/6/2/19/75.html http://yp.gates96.com/6/2/19/82.html http://yp.gates96.com/6/2/19/87.html http://www.chaos.dk/sexriddle/z/w/c/b/v/ http://itcareers.careercast.com/texis/it/itjs/+bwwBmeg5986wwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhTwdGpdGwBna5dhBiwGnawppcoqwBodD5amnVncdpMnDBaiw5roDtBdDamwBwaoDqc1moDtamn5otDanLpnGonDqnawDwcO5o5aMFqhTfR20Dzme8hwwwpBmeMWD86etmwww5rmeHdwwwBrmeZpwww/jobpage.html http://itcareers.careercast.com/texis/it/itjs/+3wwBmeV6D86euhwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhTwdGpdGwBna5dhBiwGnawppcoqwBodD5amnVncdpMnDBaiw5roDtBdDamwBwaoDqc1moDtamn5otDanLpnGonDqnawDwcO5o5aMFqhTfR20Dzme8hwwwpBmeMWD86etmwww5rmeidwwwBrmeZpwww/jobpage.html http://itcareers.careercast.com/texis/it/itjs/+iwwBmeiWD86zwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhTwdGpdGwBna5dhBiwGnawppcoqwBodD5amnVncdpMnDBaiw5roDtBdDamwBwaoDqc1moDtamn5otDanLpnGonDqnawDwcO5o5aMFqhTfR20Dzme8hwwwpBmeMWD86etmwww5rme3dwwwBrmeZpwww/jobpage.html http://sanming.ebigchina.com/ http://www.bestinfo.net.cn/bsti_kjxn/gn/guoneifagui/17hebei3.htm http://www.detroitfreepress.com/photos/umgallery/g8/g8.1.htm http://www.detroitfreepress.com/photos/umgallery/g8/g8.3.htm http://xgll.soyou.edu.cn/item/2000-04-07/43733.html43733.html http://se.egroups.com/message/bunyan/903 http://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/p%E4ij%E4t-h%E4meen+koulutuskonserni/tietokannat/kirjastot/viitetietokannat/ http://channel.nytimes.com/2000/05/19/technology/ http://www.ycwb.com.cn/gb/2000/04/15/jrzk/jrms/5.html http://no.egroups.com/message/healthdigest/97 http://no.egroups.com/message/healthdigest/119 http://www.securitiestimes.com.cn/199909/10/ssgs_19990910007_xw.html http://javatest.a-net.nl/servlet/pedit.Main/http://www.dohistory.org/interests/i_teaching.html http://www.buybuddy.com/sleuth/27/1/11009/518452/ http://www.buybuddy.com/sleuth/27/1/11001/518452/ http://www.buybuddy.com/sleuth/27/1/11004/518452/ http://ring.omp.ad.jp/archives/text/CTAN/fonts/metrics/tools/?D=A http://www.jamba.de/KNet/_KNet-CIq8j1-hEd-138qo/showInfo-special1.de/node.0/cde7f1uou http://cafe4.daum.net/Cafe-bin/Bbs.cgi/sdfamilypds/qry/zka/B2-kBI7p/qqatt/^ http://www.insurequotes.com/oh3/1AB2.html http://www.egroups.com/login.cgi?login_target=%2Fmessage%2FWHKPNews%2F190 http://www.linux.com/networking/network/performance/reliability/linux/?printable=yes http://preview.egroups.com/message/tattoos88/32 http://ring.shibaura-it.ac.jp/archives/NetBSD/packages/1.5/cobalt/math/ http://ring.shibaura-it.ac.jp/archives/NetBSD/packages/1.5/cobalt/sysutils/ http://in.us.biz.yahoo.com/z/a/p/prgx/prgx_f0149933.html http://www.backflip.org/members/robeeena/6484057 http://www.accesslasvegas.com/shared/health/adam/ency/article/003481res.html http://library.cuhk.edu.hk/search*chi/dAir+--+Pollution+--+China+--+Hong+Kong./dair+pollution+china+hong+kong/-17,1,1,B/frameset&F=dair+pilots+united+states+biography&7,,7 http://innopac.lib.tsinghua.edu.cn:2082/search*chi/cTM-62+C288/ctm-62+c288/-5,-1,,B/browse http://www.nd.edu/~rarebook/coins/bnl-mg/BNL-index-B/BNL-index-BU/BNL-index-bursley.html http://home.kimo.com.tw/lcl566/布告欄.htm http://www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/1005/www.northampton.ac.uk/stu/commdev/chap.htm http://www.peopledaily.co.jp/199905/11/newfiles/col_990511001040_zyxw.html http://missuniverse.studiostore.com/browse/PAGEANTS/CAP/s.pJicQfVY http://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_drivers_misc_parport_procfs.c.html http://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_drivers_sound_es1370.c.html http://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_include_asm-arm_arch-vnc_system.h.html http://ftp.up.pt/Linux/Linus/kernel/v2.1/patch-html/patch-2.2.0-pre6/linux_include_asm-arm_dec21285.h.html http://www.gbnf.com/genealog2/dezarn/html/d0004/I1071.HTM http://dogbert.wu-wien.ac.at/UniverCD/cc/td/doc/product/access/acs_mod/cis4000/4000/c4000him/22693/ http://www.uralweb.ru:8081/stats/who http://www.rrz.uni-hamburg.de/biologie/b_online/kegg/kegg/db/ligand/cpdhtm/C04881.html http://www.la.digitalcity.com/fortwaynein/health/conditions.dci?condition=badbreath http://ibelong.digitalcity.com/uticaarea/guygirlmidwest/main.dci?page=guyssept2000 http://moviestore.zap2it.com/browse/MOVIES/JACKET/s.jNIqMaLO http://www.doc.ic.ac.uk/~ace97/whoknows/whoknows.cgi?topic=applescript http://www.doc.ic.ac.uk/~ace97/whoknows/whoknows.cgi?topic=prolog http://www.doc.ic.ac.uk/~ace97/whoknows/whoknows.cgi?topic=samba http://209.52.189.2/discussions.cfm/3031/1757-1776 http://209.52.189.2/discussions.cfm/3031/757-776 http://209.52.189.2/discussions.cfm/3031/57-76 http://itcareers.careercast.com/texis/it/itjs/+DwwBmeOWD86OwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewVtqDhdGMwBodDanDtoDnnGaoDBntGwBodDaMwDwtnMnDBanDBnGpGo5na5nGVnG5anLpnGonDqnaDnBidGAa5O5BnMawppcoqwBodDaMFqhTfR20DzmeitwwwpBme2WD86e1xwww5rmenDwwwBrmeZpwww/morelike.html http://volunteersolutions.org/austin/volunteer/opp/one_100634_printer_detailed.html http://www.changeyourhome.net/PropertiesToLet/WithamLet/LOO606/pages/DCP_0421_JPG.htm http://www.users.qwest.net/~eagletac/ http://www.motorradversand.de/cgi-bin/bekleidung/integralhelm/NG94G933/beurteilung.htm http://stol.list.ru/catalog/25440.html http://stol.list.ru/catalog/25301.html http://www.eveclub.com/cgi-bin/eveclub.front/972959436300/Club/start/1000000 http://www.gohamptonroads.com/sportsticker/events/06-12/0447.CWS.FSUTEXCURRENT.html http://genforum.genealogy.com/merriman/messages/228.html http://genforum.genealogy.com/merriman/messages/223.html http://genforum.genealogy.com/merriman/messages/163.html http://genforum.genealogy.com/merriman/messages/495.html http://genforum.genealogy.com/merriman/messages/232.html http://genforum.genealogy.com/merriman/messages/351.html http://genforum.genealogy.com/merriman/messages/324.html http://genforum.genealogy.com/merriman/messages/510.html http://genforum.genealogy.com/merriman/messages/57.html http://genforum.genealogy.com/merriman/messages/12.html http://genforum.genealogy.com/merriman/messages/263.html http://genforum.genealogy.com/merriman/messages/15.html http://retailer.gocollect.com/do/session/1912656/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53832/eus53833/eus328722/eus129553/eus129564/ http://cma.arabia.com:8008/jordan/article/print/arabic/0,5195,3750,00.html http://webhome.ai-lab.fh-furtwangen.de/for_local_use_only/CD-TMFUMV/daten/mathema/01121m/?N=D http://store1.europe.yahoo.com/brink2/2000000141305.html http://www.contractorresource.com/Vermont/Westford/Architects.shtml http://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/3d-service/Top-Darlehens-Konditionen/Startseite/Gemeinsam/versicherungen/gebaeude/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Top-Darlehens-Konditionen/anforderungsformular.htm http://free.polbox.pl/p/pphromar/OFERTA.htm http://www.burstnet.com/ads/ad5788a-map.cgi/tr00010005_12 http://www.private-immobilien-boerse.de/ungarn/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Immolink/3d-service/IIM-Teil/Startseite/froben.htm http://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/ammattikorkeakoulukirjastot/lahti/toisen+asteen+koulutus/ammattikorkeakoulut/ http://www.geomag.com/pirates/html/4books.html http://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/559420000049560000009753100000548302/main.wo/7016200000448302/0/-/prime http://www.adventurecentre.com/Framesets/intrside/csh.htm http://mitglied.tripod.de/vox0/negrostodos/de_sexo_dobles.html http://www.sasinstitute.com/offices/asiapacific/taiwan/whatsnew/art1999/art091601.html http://oss.sgi.com/cgi-bin/cvsweb.cgi/gdb/sim/ppc/Attic/ppc-opcode-complex?only_with_tag=HEAD http://www.yorosiku.net:8080/-_-http://www.suntory.co.jp/eco/what.html http://www.yorosiku.net:8080/-_-http://www.suntory.co.jp/culture/birds/welcome.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/misc/unitest/lit/pushkin.html http://sunsite.uakom.sk/tucows/adnload/69291_28346.html http://members.tripod.com/yamabito2/gardening_000416_0502_n22.htm http://www.affiliate.hpstore.hp.co.uk/do/session/380775/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp http://www.onsemi.com.cn/pub/prod/0,1193,products1_Disty_order=MC100H642FNR2,00.html http://perso.wanadoo.fr/michel.brunel/Infographie/content/contacts.htm http://mindit.netmind.com/proxy/http://www.film.com/RGI/FC.(/watch/broadband.jhtml).def...RGI//reviews/features/mow/blairwitch2.jhtml http://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex09/gv197/?N=D http://www-d0.fnal.gov/d0dist/dist/releases/test/l3fmuo_unpack/rcp/?N=D http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/44dc495cc7534894862566fe00127751!OpenDocument&ExpandSection=7,10,4,9 http://www.zdnet.com/gamespot/filters/printerfriendly/0,10855,2531809-95,00.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/el%25C3%2583%25C2%25A4kelaitokset/vakuutuslaitokset/rahoitus/el%E4kerahastot/ http://coe.ier.hit-u.ac.jp/BibEc/data/Papers/fthteavfo2-96.html http://polygraph.ircache.net:8181/http_-2ESPN.SportsZone.com/nfl/mall/http_-2www.excite.com/http_-2www.exploreuw.com/cards/ http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cosido&l=pt http://fazmali.bigsmart.com/mall/allinone/comparison_chart_new.html http://sunsite.ualberta.ca/pub/Mirror/gnu/etc/ORDERS http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00347.html http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00363.html http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00482.html http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00483.html http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00499.html http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00508.html http://www.bumppo.net/lists/realbasic-dr/1998/12/msg00518.html http://it.sports.yahoo.com/000911/90/of8m.html http://ftp.support.compaq.com/public/dunix/v3.2g/TruCluster_V1.0/?M=A http://ftp.support.compaq.com/public/dunix/v3.2g/TruCluster_V1.0/ReleaseNotes.pdf http://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/e3cb86464a9f805a002564ac0039422d!OpenDocument&ExpandSection=5,1,9 http://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/e3cb86464a9f805a002564ac0039422d!OpenDocument&ExpandSection=6,1,9 http://polygraph.ircache.net:8181/Keyboards/http_-2www.sky.net/~robertf/http_-2domino.findyn.com/fdi.nsf/http_-2home.netscape.com/ http://www.nv.cc.va.us/home/jakim http://itcareers.careercast.com/texis/it/itjs/+nwwBmJe0B-deVmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXhmoBGnaqdGpdGwBodDaDnBidGAoDta5O5BnM5amo5BGox1BnmanDtoDnnGaMw55wqr15nBB5a51ppdGBamnVncdpaBn5BaMFqhTfR20DzmeQtwwwpBme-WD86eyxwww5rmesdwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+MwwBme7WD86JwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXhmoBGnaqdGpdGwBodDaDnBidGAoDta5O5BnM5amo5BGox1BnmanDtoDnnGaMw55wqr15nBB5a51ppdGBamnVncdpaBn5BaMFqhTfR20DzmeQtwwwpBme-WD86eyxwww5rme4dwwwBrmeZpwww/jobpage.html http://my.dreamwiz.com/hideyu/couple/couplemain.htm http://www.noras.bizland.com/top_pages/top_gen_1.htm http://www.nomade.fr/catm6/entreprises_economi/electricite_electro/electricite/composants_fournitu/index5.shtml http://www.staroriental.net/nav/soeg_c/ihf,aeb,s0,363,黎明.html http://online.excite.de/lifestyle/katalog/27990 http://www.linux.com/networking/network/performance/install/news/Linux/ http://www.linux.com/networking/network/performance/install/news/kernel/ http://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Shandong/Cities_and_Towns/He_Zhe/Government/ http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/ReadAdverData/2000-10-29/12/972792271154.txt http://independent-sun-01.whoc.theplanet.co.uk/news/Sport/Football/Bradford/ipswich221000.shtml http://www.emis.de/journals/EJDE/Monographs/Volumes/Monographs/1996/05-Hetzer/Hetzer-tex http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/arch/arm/def-configs/assabet?only_with_tag=LINUX-2_4_0-test1 http://www.nrk.no/finnmark/x22_8_96/arkivet/ http://pelit.saunalahti.fi/.9/telenation/valveworld/games/Half-Life/?S=A http://pelit.saunalahti.fi/.9/telenation/valveworld/games/Half-Life/_Dedicated.txt http://pelit.saunalahti.fi/.9/telenation/valveworld/games/Half-Life/_Mods.txt http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/games/bugsx/?N=D http://ring.yamanashi.ac.jp/archives/NetBSD/packages/1.4.1/sparc/databases/ http://citeseer.nj.nec.com/cidcontext/260967 http://members.tripod.co.jp/jojo6251/sasamineHP.htm http://www.segodnya.ru/w3s.nsf/Archive/2000_96_life_vrez_noname2.html http://www.citybrasil.com.br/rs/ivora/cidadefala.htm http://web62.com/engl/fashion/pompoes/nav.htm http://www.jufo.com/netcenter/house/item/bglz/477_lmt.html http://gatekeeper.dec.com/pub/BSD/FreeBSD/FreeBSD-current/src/gnu/libexec/uucp/uupick/ http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/lelandsystems.stanford.edu/announce/pubsw/ http://www.schleuse.de/maschine/World/Deutsch/Kultur/Literatur/Autoren_und_Autorinnen/D/Dominik,_Hans/ http://www.elsur.cl/archivo/mayo2000/8mayo2000/elsur/espectaculos/ind2.php3 http://www.jpc-neuheiten.de/2881737.htm http://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,creaccess,gaestebuch,hilfe,hilfeallgemein,individualverkehr,kultur,onlineservice,schnellübersicht,sense,veranstaltungen,verkehr,von)/_fort/html/themen/computer/soft/links/softquad.htm http://bbs.syu.ac.kr/NetBBS/Bbs.dll/groupbbs031/rcm/zka/B2-kB23m/qqo/004A/qqatt/^ http://www.city-map.de/city/print/nl/Niedersachsen/Osterholz/actueel_&_nieuw/onroerendgoed_&_woningen/k012700681.html http://members.tripod.com/sultana_2/thiskindalife.htm http://members.tripod.com/sultana_2/thisthing.htm http://members.tripod.com/sultana_2/believeinthis.html http://tulips.ntu.edu.tw/search*chi/m586.47+4412/m586.47+4412/-5,-1,0,B/frameset&F=m586.48+0146&1,1 http://btp1da.phy.uni-bayreuth.de/ftp/pub/FreeBSD/ports/www/linbot/?S=A http://pub6.ezboard.com/fbiblediscussionandsharingparableorversesharing.subscribeUnregisteredToTopic?topicID=113.topic http://www.cs.rit.edu/usr/local/pub/atk/course_descr/481.dir/?M=A http://neptune.guestworld.com/gear/gateway.cfm?action=manage&owner=Nickdays http://retailer.gocollect.com/do/session/1912673/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/shipping_policy.asp http://tucows.minorisa.es/adnload/001-006-009-001.html http://www.cwi.nl/~jack/spunk/texts/pubs/sekhmet/8/sp001225.txt http://homepage.yesky.com/33554432/36700160/103524.htm http://cvs.php.net/viewcvs.cgi/php3/functions/gd.c?annotate=1.65&sortby=log http://www.genexchange.com/deathreg.cfm?state=nc&county=pasquotank http://www.genexchange.com/schoolreg.cfm?state=nc&county=pasquotank http://www.tagnet.org/uva/Eventos/Emergencia99/Fotos/FotosOccidente01.htm http://itcareers.careercast.com/texis/it/itjs/+CwwBmue0B-dswwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6nmoBGnaqdGpdGwBodDa5oBnaoDqc1mnanLqnca15naGn31oGnma5Aocc5awqqd1DBoDtamn5oGwxcnaMFqhTfR20Dzme9twwwpBme+6D865www5rmesDwwwBrmeRdwww/jobpage.html http://retailer.gocollect.com/do/session/1912638/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://kulichki-win.rambler.ru/inkwell/bio/zitinsk.htm http://www.thestateofcolorado.com/e1tatpiercing.html http://www.pc-schulmusik.purespace.de/seminar/START.HTM http://www.feeler.nl/rubrieken/index.xml/818004059 http://ftp.dartmouth.edu/~mcb/faculty/fiering.html http://ustlib.ust.hk/search*chi/cHD30.28+.C56+1995/chd+++30.28+c56+1995/-17,-1,0,E/2browse http://herndon1.sdrdc.com/cgi-bin/com_detail/C00325258/ http://www.linux.com/networking/network/industry/press_release/linuxworld/Linux/ http://mindit.netmind.com/proxy/http://www.abc.net.au/children/bananas/dreamtime/page1.htm http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959860700/Catalog/1000188 http://207.87.5.36/pc/news/saa7108/ http://musicalproducts.asiaep.com/muspro5a.htm http://www.trax.nilex.co.uk/trax.cgi/A1S/A1U/1AL/A1S/A2S/C1L/ http://www.cjga.com/JamMoviesCanadianO/obsessed.html http://www.symantec.se/region/jp/support/mac/utiliti/num352/num352up.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=catapultaras&l=pt http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=catapultai&l=pt http://no.egroups.com/group/Chenzhou-families http://www.teenplatinum.com/barelylegal/anal-sexass/young-adultbest-friends/hardaction/slutsnude/red-toenail-polishfoot-fetish/toenail-polish.html http://beatles.sonicnet.com/allmusic/ai_links.jhtml?ai_id=1000 http://www.luecos.de/wow/art/fu_satir_30142.html http://nw1.newsweek.com/nw-srv/inetguide/iguide_4505343.html http://www.si.uniovi.es/mirror/squid/mail-archive/squid-users/200002/0637.html http://sunsite.compapp.dcu.ie/pub/perl/modules/by-category/08_User_Interfaces/Tk/NI-S/Tk402.004.readme http://www.amzn.com/exec/obidos/tg/feature/-/44435/ http://www.amzn.com/exec/obidos/tg/feature/-/2869/ http://www.hanter21.co.kr/NetBBS/Bbs.dll/dhliter02/lst/qqeq/1/zka/B2-kBINo/qqo/PRMY http://www.linux.com/networking/network/help/email/web/security/ http://www.linux.com/networking/network/help/email/web/Slackware/ http://www.linux.com/networking/network/help/email/web/e-commerce/ http://www.linux.com/networking/network/help/email/web/release/ http://debian.tod.net/debian/dists/stable/contrib/binary-all/web/?S=A http://ftp.sunet.se/pub/FreeBSD/ports/ports-current/devel/fastcrc/pkg-descr http://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/B1S/B3S/B1S/C1U/ http://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/B1S/B3S/B1S/C1D/ http://rex.skyline.net/html/Metalurgy.html?266,supplies,hobbies,painting,arts http://infoseek.wunderground.com/geo/BigtempBannerPromo/US/CO/Cortez.html http://www.kaernten.at/1Root/Kontinent/6/Staat/7/Bundesland/17/Ort/820/Pension/304806/Homepage/h_homepage...1.html http://dellnet.excite.de/nachrichten/katalog/6663 http://www.users.skynet.be/eloymarc/infomobil2/sobeen13.htm http://www.outpersonals.com/cgi-bin/w3com/pws/out/hXRIA9gT9KNJakAdbkyW2SaEFRyXAJCa2tpUDiYF1BHxbpYG0_go-roWL4XPWFopknXRvCQG4gmCQLNceomD4GJpJ4hvR4eYeQbgN2CFeSPhxakPczINPvttFOQK3IDjjmYz66jR http://www.outpersonals.com/cgi-bin/w3com/pws/out/_cRIZWRepq55uG8fC8ijlWOJrkBzrY7AXdlxz7fhosBeDRNPqhpYFY3uMBgWodvLAPXL2sPRQ7GqKF66xzHYxHZISDRz4dfZjEKnEShXdRFhDxBcOPx4ufr7uXHA0sNvRvMq6Z1j http://polygraph.ircache.net:8181/health/http_-2cyril.com/http_-2www.americanexpress.com/corp/consumerinfo/privacy/privacystatement.shtml http://polygraph.ircache.net:8181/health/http_-2cyril.com/arch.html http://www.villager.com/ctg/cgi-bin/Villager/home/AAAksrACwAAACCOAAI http://www.medoc-ias.u-psud.fr:81/synoptic/gif/950829/?D=A http://members.tripod.lycos.nl/unlimited_pagez/pld2.html http://www.thisislancashire.co.uk/lancashire/archive/1996/01/25/FEATURES0VQ.html http://members.tripod.com/rebelstrange/buxoms.html http://fi.egroups.com/message/TEZKo/3 http://www.yamato.jp.ibm.com/servers/eserver/xseries/about/availa.html http://polygraph.ircache.net:8181/NetworkInfo/http_-2www.thepetsupply.com/3d/web.html http://polygraph.ircache.net:8181/NetworkInfo/http_-2www.thepetsupply.com/3d/http_-2www.sccsi.com/welcome.html http://www.luf.org/wiki/edit/GIG/GenericCodingTerm http://208.178.109.85/msgshow.cfm/msgboard=822531545582878&msg=50215618980084&page=1&idDispSub=-1 http://mercury.spaceports.com/~xenical/diet-food.html http://de.news.yahoo.com/991202/3/echc.html http://web.tiscalinet.it/ipsiang/uviafede/tertulli.html http://www.brio.de/BRIO.catalog/39fdb8820423a4d82740d472aa780733/Customer/Register http://rainforest.parentsplace.com/dialog/thread.pl/bradley2/16/2.html?dir=prevResponse http://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/folderFrame/100012/0/def/1208103 http://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Inserieren/Gemeinsam/MarketingStrategie/Gemeinsam/erreichenPartner/Gemeinsam/versicherungen/unfall/Top-Darlehens-Konditionen/anforderungsformular.htm http://www.planetit.com/techcenters/docs/internet_&_intranet/news/PIT20000630S0024/threads?comment_status=on http://ftp.eq.uc.pt/software/unix/Linux/redhat/redhat-6.2/doc/HOWTOS/localization/Hellenic-HOWTO-html/Hellenic-HOWTO-8.html http://help.sap.com/saphelp_45b/helpdata/de/20/7be8341545ab06e10000009b38f83b/applet.htm http://www.imagestation.com/member/?name=RonnyClas6&c=1 http://www.egroups.com/messages/cmass-syd-talk/1170 http://bellsouth-cl.tucows.com/winnt/xwinservernt_size.html http://ftp.surfnet.nl/os/FreeBSD/cdrom/development/FreeBSD-CVS/ports/mail/youbin/patches/home.html http://chat.bigchurch.com/cgi-bin/w3com/pws/bc/PDhIf1s64yA1us4SS1FzmCsroIgpwrmcmdaKEhvT295b5JjMxs9ttaP_gpBzDbn5VR9hkgTaiz3efTGjRK64ORbhJMs0Q8ONiYshBhnFHdkQjl3uSSwZim5B5Layd_SDwYDTVgHM659c http://www.starshop.co.uk/Masson-Andre/Masson-Andre-Soleil-3200802.html http://www.21hk.com/book/wx1/wx/zpj/h/huanzhulouzhu/shushan/4/ http://www.dietrich-computer.de/creativegrafik.htm http://forum.kf.kommorg.no/forum/agenda21/dispatch.cgi/disk_1/showFolder/100005/9206559 http://mindit.netmind.com/proxy/http://abc.net.au/rn/schedule/wed.htm http://www.fogdog.com/cedroID/ssd3040183156802/nav/stores/adventure_travel/ http://www.fogdog.com/cedroID/ssd3040183156802/nav/stores/tennis/ http://link.fastpartner.com/do/session/600349/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php http://members2.clubphoto.com/luisf216501/TAMARINDO/icons.phtml http://www.affiliate.hpstore.hp.co.uk/do/session/380795/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/brocdesign.asp http://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=3,7,14,5,13,4,12 http://www.chaos.dk/sexriddle/d/l/t/i/a/ http://www.crutchfield.com/S-s7BJxKzNmKr/shop/ http://www.crutchfield.com/cgi-bin/S-s7BJxKzNmKr/email.asp?sid=S-s7BJxKzNmKr http://tucows.interbaun.com/winme/adnload/137104_47064.html http://iland.tucows.com/win2k/adnload/73990_29810.html http://ftp.uk.debian.org/debian/dists/woody/contrib/binary-alpha/text/?M=A http://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|10P02|972959526|Warm===and===Dry|user|0|1,0,0,1 http://pub14.ezboard.com/fjavagateforum69255multibasicboard http://www.xrefer.com/entry/317621 http://library.cuhk.edu.hk/search*chi/aChen,+Jih-peng./achen+jih+peng/-5,-1,0,B/frameset&F=achen+jie+qi&1,1 http://library.cuhk.edu.hk/search*chi/aChen,+Jih-peng./achen+jih+peng/-5,-1,0,B/exact&F=achen+jih+hsin&1,2 http://yp.gates96.com/5/50/60/53.html http://yp.gates96.com/5/50/60/98.html http://yp.gates96.com/5/50/61/14.html http://yp.gates96.com/5/50/61/60.html http://yp.gates96.com/5/50/62/0.html http://yp.gates96.com/5/50/63/12.html http://yp.gates96.com/5/50/63/14.html http://yp.gates96.com/5/50/63/51.html http://yp.gates96.com/5/50/63/52.html http://yp.gates96.com/5/50/64/2.html http://yp.gates96.com/5/50/64/31.html http://yp.gates96.com/5/50/65/36.html http://yp.gates96.com/5/50/65/44.html http://yp.gates96.com/5/50/65/58.html http://yp.gates96.com/5/50/65/78.html http://yp.gates96.com/5/50/66/33.html http://yp.gates96.com/5/50/66/38.html http://yp.gates96.com/5/50/67/3.html http://yp.gates96.com/5/50/67/83.html http://yp.gates96.com/5/50/68/40.html http://yp.gates96.com/5/50/69/2.html http://yp.gates96.com/5/50/69/36.html http://yp.gates96.com/5/50/69/49.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cochichastes&l=pt http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=cochicharam&l=pt http://www.affiliate.hpstore.hp.co.uk/do/session/380791/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp.com/cposupport/fr/?CTRYcod=FR http://www.affiliate.hpstore.hp.co.uk/do/session/380791/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp http://pub22.ezboard.com/fworldofmugenfrm2.showMessage?topicID=131.topic&index=1 http://pub23.ezboard.com/fmugenshowdownfrm8.showMessage?topicID=36.topic&index=1 http://www.questlink.com/QL/CDA/Research/ProductBrief/1,1768,0_11203_135680_85724,00.html http://www.jamba.de/KNet/_KNet-KBq8j1-gEd-138pd/showInfo-special1.de/node.0/cde7f1uou http://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_050/rcw_41_50_650.txt http://www.tiscover.ch/1Root/Kontinent/6/Staat/30/Bundesland/31/Ort/234/Ferienpaket/20120/Homepage/buchen...1.html http://family.go.com/Categories/Features/family_2000_02/kidv/kidv0200resourceiii/ http://www.online.kokusai.co.jp/Service/V0043469/wrd/G200/service/service.html http://www.linux.com/networking/network/help/hardware/website/ISP/ http://store1.europe.yahoo.com/I/freemans_1592_58696403 http://202.99.23.195/BIG5/channel5/745/20000427/51173.html http://www-usa10.cricket.org/link_to_database/GROUNDS/WI/ALBION/ALBION_SPORTS_COMPLEX_00772/ http://www16.freeweb.ne.jp/computer/taka34/ http://books.hyperlink.co.uk/bookinfo/Caught_in_a_Tornado/Ross/James_R./155553192X http://ftp.uni-stuttgart.de/pub/security/unix/SSLapps/doc/?S=A http://www.moviestarpages.com/rebecca_romijn-stamos/picture05.htm http://html.tucows.ciaoweb.it/adnload/001-009-008-022.html http://html.tucows.ciaoweb.it/adnload/001-009-008-019.html http://www.brio.de/BRIO.catalog/39fe2f4306cb75f4273fd472aa780708/UserTemplate/2 http://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=92&Count=50&Expand=170 http://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2home.netscape.com/home/http_-2www.bildhome.com/plantationhomes/bale1500.htm http://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2home.netscape.com/home/http_-2www.bildhome.com/plantationhomes/bale8000.htm http://writer.heha.net/poetics/90_poetics.htm http://yp.gates96.com/5/55/20/98.html http://yp.gates96.com/5/55/21/17.html http://yp.gates96.com/5/55/21/75.html http://yp.gates96.com/5/55/22/2.html http://yp.gates96.com/5/55/22/22.html http://yp.gates96.com/5/55/22/92.html http://yp.gates96.com/5/55/23/11.html http://yp.gates96.com/5/55/23/46.html http://yp.gates96.com/5/55/23/66.html http://yp.gates96.com/5/55/23/90.html http://yp.gates96.com/5/55/24/2.html http://yp.gates96.com/5/55/24/83.html http://yp.gates96.com/5/55/24/85.html http://yp.gates96.com/5/55/25/62.html http://yp.gates96.com/5/55/26/38.html http://yp.gates96.com/5/55/26/48.html http://yp.gates96.com/5/55/28/5.html http://yp.gates96.com/5/55/28/77.html http://yp.gates96.com/5/55/29/14.html http://yp.gates96.com/6/50/40/47.html http://yp.gates96.com/6/50/40/60.html http://yp.gates96.com/6/50/40/62.html http://yp.gates96.com/6/50/41/81.html http://yp.gates96.com/6/50/41/83.html http://yp.gates96.com/6/50/42/58.html http://yp.gates96.com/6/50/42/90.html http://yp.gates96.com/6/50/42/93.html http://yp.gates96.com/6/50/43/29.html http://yp.gates96.com/6/50/43/79.html http://yp.gates96.com/6/50/43/85.html http://yp.gates96.com/6/50/44/40.html http://yp.gates96.com/6/50/44/76.html http://yp.gates96.com/6/50/44/81.html http://yp.gates96.com/6/50/45/15.html http://yp.gates96.com/6/50/45/52.html http://yp.gates96.com/6/50/46/15.html http://yp.gates96.com/6/50/46/19.html http://yp.gates96.com/6/50/46/92.html http://yp.gates96.com/6/50/47/2.html http://yp.gates96.com/6/50/47/7.html http://yp.gates96.com/6/50/47/33.html http://yp.gates96.com/6/50/49/29.html http://yp.gates96.com/6/50/49/36.html http://www.outpersonals.com/cgi-bin/w3com/pws/out/wRtIx3JBCL5wVzA1pIKradbm9z4Oo2BbPRx_FVh-j4UyLzjojbipsV0nsuM2iF9RxJ1jG2C4LUy3YP5pJl7qDqPdnqV765l2x5hJ0fIUUJuWLaccxO0svbclJ4-alyBQj6Y5dO8YdURyhf9q05q8mJ25FlvF62sm http://213.36.119.69/do/session/152980/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml http://yp.gates96.com/6/2/20/11.html http://yp.gates96.com/6/2/21/12.html http://yp.gates96.com/6/2/21/51.html http://yp.gates96.com/6/2/21/56.html http://yp.gates96.com/6/2/22/8.html http://yp.gates96.com/6/2/22/38.html http://yp.gates96.com/6/2/22/65.html http://yp.gates96.com/6/2/23/14.html http://yp.gates96.com/6/2/23/50.html http://yp.gates96.com/6/2/23/57.html http://yp.gates96.com/6/2/23/75.html http://yp.gates96.com/6/2/24/15.html http://yp.gates96.com/6/2/24/31.html http://yp.gates96.com/6/2/24/43.html http://yp.gates96.com/6/2/24/70.html http://yp.gates96.com/6/2/24/87.html http://yp.gates96.com/6/2/25/22.html http://yp.gates96.com/6/2/25/53.html http://yp.gates96.com/6/2/25/90.html http://yp.gates96.com/6/2/26/25.html http://yp.gates96.com/6/2/26/26.html http://yp.gates96.com/6/2/26/45.html http://yp.gates96.com/6/2/26/76.html http://yp.gates96.com/6/2/27/34.html http://yp.gates96.com/6/2/28/1.html http://yp.gates96.com/6/2/28/25.html http://yp.gates96.com/6/2/29/2.html http://yp.gates96.com/6/2/29/31.html http://yp.gates96.com/6/2/29/57.html http://yp.gates96.com/6/2/29/74.html http://archive.bitcon.no/tucows//winme/preview/136862.html http://archive.bitcon.no/tucows//winme/preview/138371.html http://archive.bitcon.no/tucows//winme/preview/137011.html http://archive.bitcon.no/tucows//winme/preview/137897.html http://archive.bitcon.no/tucows//winme/preview/138157.html http://www.ngmag.com/books/reference/0792275667.html http://socrates.berkeley.edu:4231/pth.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/music/midi/lit/quizz/lit/multiple.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/music/midi/lit/quizz/lit/god.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/music/midi/lit/quizz/misc/colorart/ http://retailer.gocollect.com/do/session/1912687/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp http://www.affiliate.hpstore.hp.co.uk/do/session/380807/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/creative/entry.asp http://home.swipnet.se/~w-29806/Tab/Guitar/Svenska/h/Jakob%20Hellman/VACKERT_.TXT http://jupiter.u-3mrs.fr/~msc41www/releves/16860204.HTM http://citeseer.nj.nec.com/cidcontext/1003669 http://citeseer.nj.nec.com/cidcontext/1003675 http://citeseer.nj.nec.com/cidcontext/1003676 http://www.escribe.com/religion/nondualitysalon/m10801.html http://www.escribe.com/religion/nondualitysalon/m10824.html http://www.tvstore.com/browse/TV/PATCH/s.bCooTxTe http://digilander.iol.it/lorciao/computer.htm http://yosemite.epa.gov/r9/sfund/overview.nsf/ef81e03b0f6bcdb28825650f005dc4c1/1d8f2e36da9dc1de8825660b007ee696?OpenDocument&ExpandSection=-1,-8,-4 http://cn.egroups.com/post/ukr_liga?act=reply&messageNum=40 http://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/048720000079262000002260000000798302/Session_Expired_Page.wo/6144200000698302/0/-/prime http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=coadjuvaram&l=pt http://www.craft-supplies.co.uk/cgi-bin/psProdDet.cgi/LW132|972959517|Liming_&_Patinating|user|0|0,0,1,1 http://www.angelfire.com/va/boogiescamp http://www.kyotei.or.jp/JLC/VS/19/991209/0212.htm http://www.affiliate.hpstore.hp.co.uk/do/session/380800/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp http://www.city-map.nl/city/map/en/Niedersachsen/Landkreis_Cuxhaven/customers/Dr.rer.nat._Büro_für_Erdwiss.Untersuchungen_Udo_Lade/contact.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=consternais&l=pt http://muenchen.bda.de/freizeitparks/gastbuch/gaestebuch003.html http://www.linux.com/networking/network/industry/growth/editing/SAP/ http://www.linux.com/networking/network/industry/growth/editing/mobile/ http://lists.omnipotent.net/qmail/199909/msg00892.html http://lists.omnipotent.net/qmail/199909/msg00952.html http://lists.omnipotent.net/qmail/199909/msg00964.html http://ftp.cc.chuo-u.ac.jp/home/pub/lang/perl/CPAN/ports/msdos/old/?N=D http://www3.buch-per-sms.de/faq.jsp$ID=To7697mC5277111659640048At0.5320036065114109 http://www3.buch-per-sms.de/wir_ueber_uns.jsp$ID=To7697mC5277111659640048At0.5337056452821441 http://tradersdirectory.com/channel/jobs/insurance/insurance_policy_clerk/b.2166.g.2360.html http://www.mapion.co.jp/custom/nikkei/admi/13/13119/takashimadaira/7chome/27/ http://www.dispatch.co.za/1998/02/19/easterncape/MARCHANC.HTM http://www.techsupplies.com/sleuth/33/1/10703/523434/ http://fi.egroups.com/message/911dispatchers/171 http://polygraph.ircache.net:8181/services/define/toast/congress2000/http_-2www.sportfish.net/fish.htm http://polygraph.ircache.net:8181/services/define/toast/congress2000/MS.htm http://polygraph.ircache.net:8181/services/define/toast/congress2000/http_-2leader.linkexchange.com/1/X171400/clicklogo http://polygraph.ircache.net:8181/services/define/toast/congress2000/cfiref.htm http://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,daham,hilfe,individualverkehr,kultur,literatur,veranstaltungen,verkehr)/_fort/html/themen/aktuell/events/events.htm#regional http://dellnet.excite.de/computer/katalog/7054 http://read.cnread.net/cnread1/ztxs/b/baitian/lmss/006.htm http://www-d0.fnal.gov/d0dist/dist/releases/psim01.02.00/l2utils/GNUmakefile http://www.allgemeine-immobilien-boerse.de/Frankreich/Verkauf/Private-IB/Startseite/Gemeinsam/erreichenPartner/Gemeinsam/Inserieren/Allgemeine-IB/ http://wish.themes.tucows.com/adnload/14495.html http://wish.themes.tucows.com/preview/14494.html http://wish.themes.tucows.com/preview/78220.html http://www.uwm.edu/IMT/Computing/sasdoc8/sashtml/af/z0230835.htm http://www.bdnet.com/Taiga/H/Fulu/fiche_serie.htm http://se.egroups.com/message/clippingts/14?source=1 http://adelaida.net/music/texts/trex_s1.html http://archive.bitcon.no/pub/cica/handheld/desktop/ http://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/disclaimers/AAAksrACwAAACCMAAC http://ftp.cc.chuo-u.ac.jp/home/pub/TeX/CTAN/language/ethiopia/ethtex/lj_fonts/?N=D http://sirac.inrialpes.fr/Infos/Personnes/Christophe.Rippert/ressources/jdk1.3/docs/guide/jdbc/spec/jdbc-spec.frame16.html http://www.linux.com/networking/network/release/press_release/competition/web/ http://www.linux.com/networking/network/release/press_release/competition/internet/ http://www.linux.com/networking/network/release/press_release/competition/HTTP/ http://hughes.tucows.com/win2k/share2k_size.html http://icq.planetout.com/popcornq/movienews/98/10/23/money/careers http://go3.163.com/_NTES/~cntop07/files/k20808/zengby-k201/zengby-k201-09.html http://uunetnl.pda.tucows.com/palm/pqa_news_license.html http://uunetnl.pda.tucows.com/palm/preview/54359.html http://uunetnl.pda.tucows.com/palm/preview/58637.html http://uunetnl.pda.tucows.com/palm/adnload/72726_21807.html http://uunetnl.pda.tucows.com/palm/adnload/62079_21796.html http://uunetnl.pda.tucows.com/palm/preview/33674.html http://uunetnl.pda.tucows.com/palm/preview/33501.html http://uunetnl.pda.tucows.com/palm/adnload/52518_21780.html http://ftp.dei.uc.pt/pub/net/ip/trace/traffic/?N=D http://dreamgallery.simplenet.com/lobby/yrestless/sets/26/yrz19.htm http://sanqin.net/wenyuan/gudian/fengshen/a/fengshen24.html http://windows.tucows.com/preview/001-010-005-007C.html http://windows.tucows.com/preview/001-010-005-004C.html http://proshikanet.tucows.com/win2k/preview/37883.html http://www5.cplaza.ne.jp/auth/kingdom/bbs/rescue/no70/182.html http://www5.cplaza.ne.jp/auth/kingdom/bbs/rescue/no70/84.html http://www5.cplaza.ne.jp/auth/kingdom/bbs/rescue/no70/82.html http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,19,34,20,29 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=36,19,34,20,29 http://www.ne.jp/asahi/kume-kume/kume/photogellery/zoo/nihon_saru/html/nihon_saru04.html http://www.ne.jp/asahi/kume-kume/kume/photogellery/zoo/nihon_saru/html/nihon_saru05.html http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/showNextUnseen/fol/100001/2443194 http://www.chaos.dk/sexriddle/t/r/p/c/p/ http://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol007.htm http://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol024.htm http://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol025.htm http://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/16sol030.htm http://debian.linux.org.tw/debian/dists/Debian2.1r4/non-free/binary-alpha/oldlibs/?N=D http://www.tamil.net/list/2000-04/nav00304.html http://www.2pl.com/b/se/to/1/01/05/v2/1010500263-7.htm http://www.2pl.com/b/se/to/1/01/05/v2/1010500263-8.htm http://www.mirror.ac.uk/sites/ftp.microsoft.com/deskapps/powerpt/KB/Q129/5/ http://www.gbnf.com/genealogy/royal92/html/d0028/I307.HTM http://www-linux.gsi.de/linux-doc/libqt2/examples/qfd/?M=A http://www.arm.com/sitearchitek/support.ns4/html/sdt_debug!OpenDocument&ExpandSection=24,6,37,7 http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/kab/kab_kab1importer.h?sortby=log&only_with_tag=KDE_2_0_RELEASE http://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/bielefeld/Verkauf/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Private-IB/Gemeinsam/erreichenPartner/email3d.htm http://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/bielefeld/Verkauf/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Private-IB/3d-service/info.htm http://satlink.tucows.com/winme/htmleditme_rating.html http://satlink.tucows.com/winme/adnload/137630_29066.html http://satlink.tucows.com/winme/adnload/137653_29087.html http://yp.gates96.com/5/55/40/63.html http://yp.gates96.com/5/55/40/93.html http://yp.gates96.com/5/55/41/8.html http://yp.gates96.com/5/55/41/27.html http://yp.gates96.com/5/55/41/93.html http://yp.gates96.com/5/55/42/1.html http://yp.gates96.com/5/55/42/65.html http://yp.gates96.com/5/55/43/15.html http://yp.gates96.com/5/55/43/26.html http://yp.gates96.com/5/55/43/94.html http://yp.gates96.com/5/55/44/70.html http://yp.gates96.com/5/55/44/83.html http://yp.gates96.com/5/55/45/17.html http://yp.gates96.com/5/55/46/3.html http://yp.gates96.com/5/55/46/39.html http://yp.gates96.com/5/55/46/43.html http://yp.gates96.com/5/55/47/18.html http://yp.gates96.com/5/55/48/23.html http://yp.gates96.com/5/55/48/40.html http://yp.gates96.com/5/55/48/72.html http://yp.gates96.com/5/55/48/93.html http://yp.gates96.com/5/55/49/7.html http://yp.gates96.com/5/55/49/8.html http://yp.gates96.com/5/55/49/20.html http://yp.gates96.com/5/55/49/37.html http://yp.gates96.com/5/55/49/49.html http://yp.gates96.com/5/55/49/60.html http://yp.gates96.com/5/55/49/69.html http://www.ramtron.com/pages/visiters.htm http://genforum.genealogy.com/cgi-genforum/forums/oh/wayne.cgi?56 http://freebsd.ntu.edu.tw/perl/modules/by-module/DB_File/STAS/?N=D http://sunsite.org.uk/public/usenet/news-faqs/alt.answers/us-visa-faq/?D=A http://circumstance.co.kr/www.globalvillage.com/support/software.html http://mediate.magicbutton.net/do/session/625589/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html http://itcareers.careercast.com/texis/it/itjs/+9wwBmev6D86wwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGPndhBiwGna5O5BnManDtoDnnGamnVncdpoDtaBn5Baw1BdMwBodDaGn31oGnma5Aocc5anLpnGonDqnaGnwcaMFqhTfR20DzmeTtwwwpBm3eP0-dmwww5rmehDwwwBrmeZpwww/morelike.html http://library.bangor.ac.uk/search/dProtestant+churches+--+New+York+(State)+--+History+--+19th+century/dprotestant+churches+new+york+state+history+++19th+century/-17,-1,0,B/frameset&F=dprotestant+churches+england+history+++16th+century&2,,3 http://augustachronicle.com/stories/021299/fea_223-4914.000.shtml http://dreamcity.gaiax.com/www/dreamcity/k/n/kint/menu.html http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceMallCategories-BBC709D6_97E3_3D628A3FC67830F4FB7BD0E0AC833504 http://www.mirror.kiev.ua:8082/paper/2000/07/1251/text/07-09-1.htm http://www.burstnet.com/ads/ad7826a-map.cgi/1025131450 http://link.fastpartner.com/do/session/600341/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/se/ http://topcu.tucows.com/winme/adnload/137966_29370.html http://topcu.tucows.com/winme/adnload/137990_29378.html http://itcareers.careercast.com/texis/it/itjs/+9wwBmeS+D86swwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6hwAwMwoaBnqrDoqwcaqdD51cBoDta5wcn5aqdD51cBwDB5aBnqrDdcdton5apGd5pnqBoVnaq15BdMnG5apGdm1qBaBnwMaMFqtwAwMwoDzmehxwwwpBmeV+D86eqxwww5rmedDwwwBrmeZpwww/jobpage.html http://itcareers.careercast.com/texis/it/itjs/+DwwBmeoWD86eDqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6hwAwMwoaBnqrDoqwcaqdD51cBoDta5wcn5aqdD51cBwDB5aBnqrDdcdton5apGd5pnqBoVnaq15BdMnG5apGdm1qBaBnwMaMFqtwAwMwoDzmehxwwwpBmeV+D86eqxwww5rmeqDwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+QwwBme4+D86qxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6hwAwMwoaBnqrDoqwcaqdD51cBoDta5wcn5aqdD51cBwDB5aBnqrDdcdton5apGd5pnqBoVnaq15BdMnG5apGdm1qBaBnwMaMFqtwAwMwoDzmehxwwwpBmeV+D86eqxwww5rm+mwwBrmeZpwww/jobpage.html http://wwwbackup.trinler.net/anleitungen/manual/mod/mod_dll.html http://wwwbackup.trinler.net/anleitungen/manual/mod/mod_log_agent.html http://as400bks.rochester.ibm.com/pubs/html/as400/v4r5/ic2962/info/RZAIENETDOTDATA.HTM http://www.gov.ie/educ/000928.htm http://www.gov.ie/educ/speech/000928.htm http://pub3.ezboard.com/utaela.showPublicProfile?language=EN http://genforum.genealogy.com/cody/messages/700.html http://genforum.genealogy.com/cody/messages/525.html http://genforum.genealogy.com/cody/messages/494.html http://genforum.genealogy.com/cody/messages/447.html http://ftp.surfnet.nl/os/FreeBSD/cdrom/development/FreeBSD-CVS/ports/editors/psgml-emacs/files/home.html http://www.mic.hr/PGBURZA:135556 http://pub8.ezboard.com/fthecompanionswebboardfrm19 http://pub8.ezboard.com/fthecompanionswebboardarchive http://gallery2.simplenet.com/lobby/main/videocaps/ghoffman/precious/ghsp36.htm http://www.symantec.ru/avcenter/venc/data/unashamed.html http://www.symantec.ru/avcenter/cgi-bin/virauto.cgi?vid=7000 http://www.symantec.ru/avcenter/cgi-bin/virauto.cgi?vid=1685 http://www.symantec.ru/avcenter/cgi-bin/virauto.cgi?vid=5358 http://rex.skyline.net/navigate.cgi?reading,retail,hobbies,painting,arts http://rex.skyline.net/navigate.cgi?forsale,retail,hobbies,painting,arts http://pds.nchu.edu.tw/cpatch/ftp/cuteftp/?S=A http://www.tel.de/s/M/MCFIT.htm http://zeus.uni-trier.de/~ley/db/indices/a-tree/s/Stevenson:Allan.html http://www.alsapresse.com/jdj/00/07/14/SA/article_16.html http://link.fastpartner.com/do/session/600359/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/jobpilot.php http://link.fastpartner.com/do/session/600359/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/index.php http://news.dreamwiz.com/news_lg/04/20001025/joins/200010251653041653193.html http://news.dreamwiz.com/news_lg/04/20001025/joins/200010250820040820583.html http://windows.tucows.com/winnt/adnload/71593_30161.html http://213.36.119.69/do/session/152979/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/encheres/ http://213.36.119.69/do/session/152979/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/IT_IT/ http://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showNextUnseen/fol/100012/1220541 http://bigpanda.net/46/alphabetical.html http://bigpanda.net/46/io.html http://fi.egroups.com/message/puzzles/547 http://theaceshow.com/drawinglinda.html http://theaceshow.com/drawingsketch.html http://ftp.jp.debian.org/debian/dists/woody/main/binary-all/news/?D=A http://www.trax.nilex.co.uk/trax.cgi/A1S/A2L/1AS/B3U/B4L/C2S/ http://www.trax.nilex.co.uk/trax.cgi/A1S/A2L/1AS/B3U/B4L/C4D/ http://in.egroups.com/message/islaam/3 http://in.egroups.com/message/islaam/29 http://ustlib.ust.hk/search*chi/a%7B233e68%7D%7B215976%7D%7B213e2e%7D/a%7B233e68%7D%7B215976%7D%7B213e2e%7D/-5,-1,0,B/browse http://yp.gates96.com/13/8/20/68.html http://yp.gates96.com/13/8/21/25.html http://yp.gates96.com/13/8/21/32.html http://yp.gates96.com/13/8/21/49.html http://yp.gates96.com/13/8/21/63.html http://yp.gates96.com/13/8/21/88.html http://yp.gates96.com/13/8/22/2.html http://yp.gates96.com/13/8/22/10.html http://yp.gates96.com/13/8/22/67.html http://yp.gates96.com/13/8/22/79.html http://yp.gates96.com/13/8/23/19.html http://yp.gates96.com/13/8/23/31.html http://yp.gates96.com/13/8/25/64.html http://yp.gates96.com/13/8/25/68.html http://yp.gates96.com/13/8/25/73.html http://yp.gates96.com/13/8/26/6.html http://yp.gates96.com/13/8/26/11.html http://yp.gates96.com/13/8/26/12.html http://yp.gates96.com/13/8/26/39.html http://yp.gates96.com/13/8/26/54.html http://yp.gates96.com/13/8/26/55.html http://yp.gates96.com/13/8/26/82.html http://yp.gates96.com/13/8/27/89.html http://yp.gates96.com/13/8/28/22.html http://yp.gates96.com/13/8/28/61.html http://yp.gates96.com/13/8/29/13.html http://yp.gates96.com/13/8/29/33.html http://yp.gates96.com/13/8/29/83.html http://www.private-immobilien-boerse.de/baden-wuertemberg/ostalb-kreis/Verkauf/Versteigerungen-IB/Startseite/Gemeinsam/erreichenPartner/IIM-Teil/Startseite/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/indexbeginn.htm http://www2.so-net.ne.jp/mc/columns/nakama/1112/ http://ring.shibaura-it.ac.jp/archives/pack/x68/personal/tokei/00_index.txt http://yp.gates96.com/5/32/0/0.html http://yp.gates96.com/5/32/0/99.html http://yp.gates96.com/5/32/1/92.html http://yp.gates96.com/5/32/1/93.html http://yp.gates96.com/5/32/3/68.html http://yp.gates96.com/5/32/4/21.html http://yp.gates96.com/5/32/4/72.html http://yp.gates96.com/5/32/5/87.html http://yp.gates96.com/5/32/6/64.html http://yp.gates96.com/5/32/7/25.html http://yp.gates96.com/5/32/7/32.html http://yp.gates96.com/5/32/7/44.html http://yp.gates96.com/5/32/7/68.html http://yp.gates96.com/5/32/7/78.html http://yp.gates96.com/5/32/8/40.html http://yp.gates96.com/5/32/8/59.html http://yp.gates96.com/5/32/8/90.html http://yp.gates96.com/5/32/8/95.html http://yp.gates96.com/5/32/9/3.html http://yp.gates96.com/5/32/9/54.html http://yp.gates96.com/5/32/9/62.html http://yp.gates96.com/5/32/9/77.html http://tucows.soneraplaza.nl/winme/preview/138260.html http://www.cnnews.com/maya/finance/cjsy/gncj/item/2000_07/206341.shtml http://212.31.0.37/hur/turk/98/09/23/dunya/02dun.htm http://212.31.0.37/hur/turk/98/09/12/dunya/01dun.htm http://ftp.cwi.nl/ftp/mdr/LOCKED/ http://ftp.cwi.nl/ftp/mdr/PICH/ http://www.ncte.org/lists/ncte-talk/jan2000/msg02008.html http://www.russ.ru/forums/prav-dir/conf2/695_r.htm http://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex05/mjp97/?D=A http://www.affiliate.hpstore.hp.co.uk/do/session/380786/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp http://www.flapjack.de/main/2ndHP/jangl43637.htm http://195.166.55.201/vfg-uk/HTML/P145232.HTM http://www.greenleaves.com/bookcat/gb_0689826788.html http://webraft.its.unimelb.edu.au/730452/students/sgm/pub/ http://ring.omp.ad.jp/pub/NetBSD/packages/pkgsrc/print/teTeX-share/files/ http://ww.egroups.com/subscribe/wtcjk_purnawirawan http://167.8.29.14/life/travel/ski/skinj.htm http://www.nrk.no/finnmark/x26_5_97/fastesid/abonn.htm http://www.brio.de/BRIO.catalog/39fe2f41050aa9b82741d472aa7806dd/UserTemplate/6 http://207.25.71.143/golf/news/2000/04/18/heintz/ http://weekends.worldres.com/script/gen_review.asp?hotel_id=4291&n=1231 http://www.netitor.com/photos/schools/bc/sport/m-footbl/auto_pdf/weekly-release-082800.pdf http://www.3w-sciencefiction.de/SmytheRH/SmytheRH0785808744.htm http://www.zdnet.com/gamespot/stories/screens/0,10865,2617426-32,00.html http://ftp.lip6.fr/pub2/sgml-tools/website/HOWTO/Root-RAID-HOWTO/t1450.html http://webusers.siba.fi/doc/texmf/latex/ms/?M=A http://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A1U/A3S/1AS/ http://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A1U/A3S/D1U/ http://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A1U/A3S/D3S/ http://thaigate.rd.nacsis.ac.jp/ftp/thaisoft/nectec/linux.tle/6.01/Mandrake/?S=D http://www-ind5.cricket.org/link_to_database/ARCHIVE/2000-01/AUS_LOCAL/GRADE/NSW/SCA/WOMEN/SCA-WOMEN_2000-01_FIXTURES.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=abbratend&l=de http://www.webvillage.org/mBEDJPsite/html/downloadplugins.html http://www.gov.karelia.ru:8081/gov/Karelia/658/8.html http://www.private-immobilien-boerse.de/bayern/ingolstadt/Verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Inserieren/Gemeinsam/erreichenPartner/Ferien-IB/Startseite/ http://pillsonline.00go.com/lowfatdiet/lifetime_fitness.htm http://tecfa2.unige.ch/guides/java/examples/JavaClassLibExamples/io/FileReader/Main.class http://www.burstnet.com/ads/ad7826a-map.cgi/1933336291 http://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/Hong%2520Kong/aasia/talous/pika-+ja+perustilastoja/ http://home.tiscalinet.be/oaseidstad/vonk/optop2000.html http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=19,36,22,32,23 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=29,36,22,32,23 http://cn.egroups.com/messages/virtualaccess/194 http://jerken.grida.no/nor/soeno97/ozone/frames/pressure.htm http://online.excite.de/erotik/katalog/6213 http://online.excite.de/erotik/katalog/6187 http://online.excite.de/erotik/katalog/6221 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=28,7,35,25,13 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=31,7,35,25,13 http://genforum.genealogy.com/cgi-genforum/forums/loughlin.cgi?11 http://freesoftware.missouri.edu/pub/CPAN/authors/id/J/JS/JSWARTZ/?D=A http://link.fastpartner.com/do/session/600360/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/fastpartner.php http://www.jobvillage.com/channel/jobs/sciences/life_sciences/soil_plant_scientist/b.1041.g.251.html http://ftp.debian.org/dists/Debian2.2r0/non-free/binary-sparc/mail/?D=A http://generalstore.everdream.com/kore/catalog/Office_Supplies/General_Office_Supplies/Tape_Flags/Arrow/GRP-US6663/product.html http://www.hig.se/(date,if,set,tablify,user)/~jackson/roxen/ http://www.hig.se/(date,if,language,set,tablify)/~jackson/roxen/ http://www.cyber-pages.com/0prog/classifieds_display.cgi?oakland=WEMP=0 http://202.84.17.6/csnews/articles/141_18691.htm http://202.84.17.6/csnews/articles/142_18526.htm http://ftp.dti.ad.jp/pub/FreeBSD/FreeBSD-current/www/es/releases/1.1.5/ http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=9&discrim=247,207,129 http://ftp.up.pt/Linux/debian/dists/unstable/main/disks-i386/?M=A http://www.unterhaltungs-cd.de/HillJonny/B000025087.htm http://filebox.vt.edu/users/aneal/excess/_fpclass/ http://www.jamba.de/KNet/_KNet-JOt8j1-OEd-139q0/showInfo-presse.de/node.0/cde7f1uou http://www.tercera.cl/diario/1997/12/05/win.html http://yp.gates96.com/14/88/20/8.html http://yp.gates96.com/14/88/20/13.html http://yp.gates96.com/14/88/22/30.html http://yp.gates96.com/14/88/25/28.html http://yp.gates96.com/14/88/25/65.html http://yp.gates96.com/14/88/26/3.html http://bsdweb.pasta.cs.uit.no/bsdweb.cgi/~checkout~/pkgsrc/math/grace/pkg/ http://ftp.tokyonet.ad.jp/pub/Linux/debian-jp/dists/unstable-jp/contrib/binary-m68k/math/?S=A http://my.dreamwiz.com/piramos/lan.htm http://pub8.ezboard.com/fselfreliantlivingfrm16.showMessage?topicID=11.topic http://pub8.ezboard.com/fselfreliantlivingfrm16.showMessage?topicID=4.topic http://www.affiliate.hpstore.hp.co.uk/do/session/380798/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/vacationcards.asp http://systemlogic.neoseeker.com/Companies/productportfolios/NEC_Interchannel/?sortby=sections http://www.houses-apartment-rentals.com/Virginia/city_search_criteria.asp?state=VA&City=DALHART http://www.wcbcourses.com/wcb2/schools/MERCED/merced/dhauser/2/forums/forum2/messages/17.html http://www.wcbcourses.com/wcb2/schools/MERCED/merced/dhauser/2/forums/forum2/messages/10.html http://beautifulsavers.subportal.com/sn/Shell_and_Desktop/Quick_Shutdown_Tools/2702.html http://polygraph.ircache.net:8181/getting_started/http_-2www.lucent.com/micro/K56flex/http_-2home.netscape.com/comprod/mirror/http_-2www.wtcsf.org/mall/http_-2www.cdnow.com/http_-2www.microsoft.com/msoffice/publicaffairs.html http://polygraph.ircache.net:8181/getting_started/http_-2www.lucent.com/micro/K56flex/http_-2home.netscape.com/comprod/mirror/http_-2www.wtcsf.org/mall/http_-2www.cdnow.com/http_-2www.microsoft.com/msoffice/videobroadcast/ http://www.yagoo.co.kr/stats/pitching.asp?Mlbmanid=JESPEN7599 http://www.4hotfantasy.com/acommon/guests/python4.html http://boerseninfos.ksk-tut.de/dynamic/ak/adhoc/news/519000-20000316-150811.html http://boerseninfos.ksk-tut.de/dynamic/ak/adhoc/news/519000-19991025-082814.html http://cn.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Zhejiang/Cities_and_Towns/Li_Hsua/Business/Companies/Books/ http://www.affiliate.hpstore.hp.co.uk/do/session/380810/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp http://kuyper.calvin.edu/fathers2/NPNF1-01/npnf1-01-12.htm http://library.bangor.ac.uk/search/dModernism+(Literature)/dmodernism+literature/-5,-1,0,E/2browse http://aleph.tau.ac.il:4500/ALEPH/ENG/ATA/AAS/AAS/SHORT/410519/1/ http://pub1.ezboard.com/fflashboard1flashjunkiestalk.showAddReplyScreenFromWeb?topicID=190.topic&index=2 http://www.inforiese.de/db_cargo/typ_b_files/db_cargo_cargo_ansprechpartner.shtml http://www.gbnf.com/genealogy/dehart/html/d0005/I985.HTM http://btclickfam.excite.co.uk/directory/categories/670199 http://www.worldmedicus.com/servlet/Controller/$7008040516620000.sj_viewc/ http://www.worldmedicus.com/servlet/Controller/$7008040528250000.sj/ http://207.25.71.143/features/galleries/then_and_now/belinsky/belinsky01_lg_01.html http://wiem.onet.pl/wiem/002c66.html http://www.peopledaily.com.cn/GB/paper40/544/58242.html http://www.uihealthcare.com////PatientsVisitors/MedMuseum/CenturyOfCaring/UniversityHospitals/05Quarantine.html http://se.egroups.com/login.cgi?login_target=%2Fmessages%2Fwotccglist%2F333 http://se.egroups.com/message/wotccglist/334 http://se.egroups.com/message/wotccglist/350 http://se.egroups.com/message/wotccglist/358 http://www.msn.expedia.co.uk/wg/North_America/United_States/P30131.asp http://www.uol.com.br/cinemaonline/starwars http://www.perotech.ch/d/securedb/html/listtopic.php?7396 http://moviestore.zap2it.com/browse/X-FILES/POSTCARD/s.goFzN1Lb http://zeus.uni-trier.de/~ley/db/indices/a-tree/m/Morgoev:Vladimir_K=.html http://www.3w-buecher.de/GilliesRobertJ/GilliesRobertJ0122839803.htm http://www.buybuddy.com/sleuth/27/1/11002/6637/ http://ftp.uk.debian.org/debian/dists/unstable/contrib/binary-powerpc/oldlibs/?D=A http://no.egroups.com/login.cgi?login_target=%2Fgroup%2Fwww.members.xoom.com%2FLibertyFlame http://www.aelita.net/products/support/sitemap/Reg/QuoteRegister/news/company/Copyright.htm http://www.aelita.net/products/support/sitemap/Reg/QuoteRegister/news/services/default.htm http://www.amateurplatinum.com/spankingfantasy/fertiletrophy-wife/hot-hardcore-fuckinglongest/red-toenail-polishfeet-fucking-/vietnamesewomen/chinesechi/womenpetite.html http://www.amateurplatinum.com/spankingfantasy/fertiletrophy-wife/hot-hardcore-fuckinglongest/red-toenail-polishfeet-fucking-/vietnamesewomen/fuckinghard/actionsmacking.html http://genforum.genealogy.com/cgi-bin/print.cgi?fikes::26.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/programs/unlambda/lit/quizz/music/midi/ http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/programs/unlambda/lit/quizz/computers/callcc.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/programs/unlambda/lit/quizz/misc/colorart/ http://www.musiciansfriend.com/ex/ds/live/001030182726064208037002434823 http://www.musiciansfriend.com/ex/ds/home/funzone/001030182726064208037002434823?doc=doc,postcard.html http://www.musiciansfriend.com/ex/ds/home/platinum/001030182726064208037002434823?g,home.platinum.html http://www.musiciansfriend.com/ex/ds/home/articles/001030182726064208037002434823?dbase=gw,gwmain.html http://www.musiciansfriend.com/ex/ds/home/articles/001030182726064208037002434823?dbase=info,privacy.html http://preview.egroups.com/dir/Business/Training_and_Schools/Management_Training/Consultants?st=4 http://hammer.prohosting.com/~nieting/html1216/lmtf015.htm http://planetfreebies.subportal.com/sn/Information_Management/Misc__Information_Databases/12835.html http://dada.linuxberg.com/kdehtml/adnload/61589_33448.html http://www.wlu.ca/~wwwregi/95-96/cal/ucourses/GM/GM151.html http://walkabout.tucows.com/win2k/adnload/61015_28629.html http://www.1001e.net/02/qbt/09.htm http://se.egroups.com/post/webfaaa?act=reply&messageNum=3 http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/keats.admin.virginia.edu/asbestos/home.html http://www.hotelboulevard.com/fr/riviera/standard/htmlf752567459c6d803842381c50e94fd9f/sessionLang/ANG/gettingstarted.html http://ring.omp.ad.jp/pub/NetBSD/packages/pkgsrc/print/transfig/?N=D http://citeseer.nj.nec.com/cidcontext/2339336 http://www.uk.multimap.com/p/browse.cgi?pc=LS287DR http://topcu.linux.tucows.com/x11html/adnload/46019_3809.html http://www.mon.de/nr/stuemges http://www.tamil.net/list/1998-10/msg00212.html http://retailer.gocollect.com/do/session/1912682/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/terms_and_conditions.asp http://pl.php.net/manual/nl/function.pfpro-version.php http://members.tripod.co.jp/millenium/top.html http://community.webshots.com/photo/4331085/4331572GooaFzYUAJ http://community.webshots.com/photo/4331085/4331589oKrBmsJbga http://community.webshots.com/photo/4331085/4331620zgfyMLoSjs http://www.utdallas.edu/~chansen/text/qabbala9.html http://www.jobvillage.com/channel/jobs/installation_repair/safety_equipment/fire_alarm/b.2283.g.3516.html http://www.geocities.com/Area51/Chamber/8750/DoesKitEverTalkAboutTheSubjectOnHand.html http://www.geocities.com/Area51/Chamber/8750/TheMotherofAllMissleBoats.html http://www.geocities.com/Area51/Chamber/8750/Tomahawk2.html http://www.thecitizennews.com/main/archive-000628/thecitizennews/citizen.html http://links2go.publiweb.com/expert/topic/Mp3_Hardware http://webhelp.promovacances.net/S02/BL/BEGYP/SAI00512024/cal.htm?d=1013 http://205.161.150.96/cgi-bin/c2k/title_talent.html&id=143786&title_star=DOMINICK http://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/stable/non-free-jp/binary-all/net/?S=A http://wow-online.vhm.de/Wirtschaft/Unternehmen/Versicherungen/Versicherungsgesellschaften/Signal_Versicherung.html http://www.linux.com/networking/network/firewall/web/communications/?kw_offset=50 http://www.leg.wa.gov/pub/rcw%20-%20text/title_28b/chapter_056/rcw_28b_56_090.txt http://pub12.ezboard.com/flalaland96545listeningbooth.showMessage?topicID=74.topic http://www.fogdog.com/cedroID/ssd3040183156032/crs/pw__/wld/fogdog_sports/lee_sport/fan_memorabilia/apparel/new_york_yanke_2000_ameri_leagu_champ_tee_shi.html http://www.fogdog.com/cedroID/ssd3040183156032/nav/stores/adventure_travel/ http://www.hoovers.com/travel/cityguide/detailed/0,3368,46_119158,00.html http://user.chollian.net/~mlsc/ http://www.158china.com/data/stock/fundowner/default.asp?stck_cd=0548 http://www.affiliate.hpstore.hp.co.uk/do/session/380803/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/createbroch.asp http://rcsl.auto.inha.ac.kr/~treeman/Documents/HOWTO/Consultants-HOWTO-3.html http://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7056427&area=&ID=483330 http://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/http_-2www.netscape.com/download/http_-2www.microsoft.com/ie/http_-2207.91.150.20/links.html http://www.multicosm.com/facade/www.adobe.com/support/techguides/printpublishing/scanning/psscanning01b.html http://yp.gates96.com/0/50/10/62.html http://yp.gates96.com/0/50/10/95.html http://yp.gates96.com/0/50/11/1.html http://yp.gates96.com/0/50/11/18.html http://yp.gates96.com/0/50/11/49.html http://yp.gates96.com/0/50/12/55.html http://yp.gates96.com/0/50/13/48.html http://yp.gates96.com/0/50/13/96.html http://yp.gates96.com/0/50/14/15.html http://yp.gates96.com/0/50/14/73.html http://yp.gates96.com/0/50/15/50.html http://yp.gates96.com/0/50/15/80.html http://yp.gates96.com/0/50/16/1.html http://yp.gates96.com/0/50/16/8.html http://yp.gates96.com/0/50/17/50.html http://yp.gates96.com/0/50/17/71.html http://yp.gates96.com/0/50/18/25.html http://yp.gates96.com/0/50/18/73.html http://yp.gates96.com/0/50/18/82.html http://yp.gates96.com/0/50/18/84.html http://yp.gates96.com/0/50/18/90.html http://cisne.sim.ucm.es/search*spi/dBallets+--+Gran+Bretaña+--+Discos+compactos/dballets+gran+bretan~aa+discos+compactos/-29,-1,0,B/browse http://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20005025/-17,-1,0,B/browse http://www.trax.nilex.co.uk/trax.cgi/A1S/1AL/A3L/A4R/B1D/A3S/ http://php.nic.fi/manual/html/function.cpdf-open.html http://php.nic.fi/manual/html/function.cpdf-fill.html http://php.nic.fi/manual/html/function.cpdf-setrgbcolor-fill.html http://www.classiccmp.org/mail-archive/classiccmp/1998-04/1426.html http://text.csn.ul.ie/~danny/tabs/p/proclaimers/?N=D http://mirror.nucba.ac.jp/mirror/FreeBSD/branches/3.0-stable/ports/japanese/zangband/?N=D http://augustachronicle.com/stories/100197/spo_fishing.html http://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=10,8,9,5 http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/quizz/pics.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/quizz/lit/ldvelh.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/linux/music/quizz/misc/unitest/ http://mirror.nucba.ac.jp/mirror/FreeBSD/branches/3.0-stable/ports/japanese/ptex-pkfonts360/?N=D http://www.2pl.com/b/ru/fi/1/24/06/b1/1240601249-11023.htm http://galaxy.einet.net/galaxy/Community/United-States/States/Minnesota/Cities-and-Regions/Winona/Education/K--12/Middle/Public.html http://www.hotelboulevard.com/fr/paris/standard/htmlc866e5cecf73322551f00b0108eb84bc/sessionLang/ANG/prov/browse/cp/75001/resultatSearch.html http://btp1da.phy.uni-bayreuth.de/ftp/pub/FreeBSD/ports/japanese/dvipsk-vflib/pkg-descr http://32548news.subportal.com/sn/Utilities/Misc__Encryption_Utilities/ http://www.hongen.com/proedu/hext/zxks/dxyw/html/dxy62804.htm http://www.users.globalnet.co.uk/~roy/InternetTree/WC01/WC01_226.htm http://www2.msstate.edu/~eaddy/famtread/html/nti07339.htm http://www.trackinfo.com/trakdocs/hound/ca/RESULTS/ARCHIVE/1996/0996/GRCA19S.HTM http://www.idg.net/crd_essential_110984.html http://www.zdnet.de//news/artikel/2000/09/06015-wc.html http://www.secinfo.com/d114Cu.52.htm http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus141561/eus174865/eus327367/eus327527/eus331435/ http://enjoy100.com.cn/200005/23/ http://link.fastpartner.com/do/session/600348/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mediatransfer.php http://www.chaos.dk/sexriddle/t/z/p/b/b/ http://www.brio.de/BRIO.catalog/39fe2f4106ca8ce0273fd472aa7806ff/UserTemplate/6 http://link.fastpartner.com/do/session/600352/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/robinhus.php http://link.fastpartner.com/do/session/600352/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/index.php http://www.underground-online.com/companyfinder/filters/products/0,9996,1793-101,00.html http://mediate.magicbutton.net/do/session/625588/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/viewer.cfm http://aol.digitalcity.com/houston/recreation/event.dci?eid=6452 http://www.linux.com.hk/mirror/ldp/LDP/LG/issue10/lg_bytes10.html http://www.linux.com.hk/mirror/ldp/LDP/LG/issue10/issue10.txt http://www.beauty.net.cn/main/japanese/mie.htm http://www.allgemeine-immobilien-boerse.de/kanada/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/Ferien-IB/Startseite/Private-IB/Startseite/Default.htm http://www.kodak.co.uk/US/en/corp/store/catalog/Product.jhtml?PRODID=2113&CATID=2234 http://opac.lib.ntnu.edu.tw/search*chi/f373+017/f373+017/-5,-1,,B/browse http://ftp.du.se/disk3/mandrake/7.1/Mandrake/mdkinst/etc/pcmcia/?M=A http://www.teenplatinum.com/barelylegal/anal-sexass/taismall/almond-skinned/{gaylink} http://194.128.65.4/pa/cm199697/cmhansrd/vo970318/debtext/70318-11.htm http://netlondon.hotelbook.com/live/photos/19368 http://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/folderFrame/100205/0/author/1243894 http://www.teacherformation.org/html/od/facilitators.cfm/task1,login/discussion_id,2/xid,5474/yid,3022999 http://polygraph.ircache.net:8181/environment_energy/heritage/http_-2www.apache.org/ http://plat.debian.or.jp/debian/dists/unstable/main/binary-alpha/math/?D=A http://home.hiwaay.net/~bjacobs/genealogy/laster/html/d0054/g0000038.html http://www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/1005/www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/1037/www.northampton.ac.uk/lrs/Information/refword.html http://ustlib.ust.hk/search*chi/cPL1275+.F426+1991/cpl+1275+f426+1991/-5,1,1,E/frameset&F=cpl+1273+y36+1982&1,1, http://stormix.com/en/resources/packages/tex/devel/debmake http://stormix.com/en/resources/packages/tex/devel/doc++ http://stormix.com/en/resources/packages/tex/devel/ftnchek http://stormix.com/en/resources/packages/tex/devel/libnet0-dev http://stormix.com/en/resources/packages/tex/devel/libobgtk-dev http://stormix.com/en/resources/packages/tex/devel/netatalk-dev http://stormix.com/en/resources/packages/tex/devel/pact-base http://stormix.com/en/resources/packages/tex/devel/scalapack1-mpich http://members.tripod.co.jp/sugisaka/?M=A http://www.szinfo.com/book/wai/no/fa/h/hongyuhei/011.htm http://www.szinfo.com/book/wai/no/fa/h/hongyuhei/054.htm http://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/listUnseen/fol/100205/20,0/1230074 http://www.crutchfield.com/cgi-bin/S-p5rPnwuC0SA/Auto.asp http://www.abb.co.uk/global/seapr/SEAPR035.NSF/viewUNID/f79b6db19a951ce0c125697300319a41!OpenDocument&ExpandSection=6,4,8,5 http://freebsd.ntu.edu.tw/perl/authors/id/A/AO/AOCINAR/?S=A http://www.gaymencam.com/elke.html http://www.linux.com/networking/network/industry/new/web_server/website/ http://www.tccomputers.com/cgi-bin/bp/1899758621/products/removeabledrives/removeabledrives.htm http://www.tccomputers.com/cgi-bin/bp/1899758621/store/showcart.html http://www.highwired.net/Guidance/Section/0,1860,1779-27626,00.html http://gd.cnread.net/cnread1/net/zpj/r/repinsky/005.htm http://www.amateurplatinum.com/tubal-ligationmilk/pregnanttubal-ligation/off-the-ragnipples/jizz-dribbling-cumshotscumming/{amateurlink} http://home.dqt.com.cn/~why/wenzhang/ckpajq/.htm http://ftp.fi.debian.org/debian/dists/woody/non-free/binary-all/doc/?D=A http://www.linux.com/networking/network/website/hardware/howto/Linuxcare/ http://www.linux.com/networking/network/website/hardware/howto/sales/ http://shn.webmd.com/printing/asset/adam_imagepage_8626 http://www.geocities.co.jp/Outdoors/2127/bangai_makuyama.html http://www2.to/souhey http://www.hotelboulevard.com/fr/paris/standard/html73b90b9d262d517e98c9d779b3b09b7a/sessionLang/ANG/prov/browse/cp/75017/resultatSearch.html http://perso.wanadoo.fr/olivier.leieber/page22.html http://www.computer-networking.de/studenten/dv_labor/onlinebuecher/apache/sections.html http://saejong.pufs.ac.kr/~cilim/homepage/link.html http://cafe3.daum.net/Cafe-bin/Bbs.cgi/hopepds/qry/zka/B2-kCYFp/qqatt/^ http://www3.newstimes.com/archive99/jun1899/lch.htm http://www.7thlevel.com/python/cwot/demo/ http://www.paidmania.com/getpaid/signup/100/4632 http://yp.gates96.com/12/14/0/31.html http://yp.gates96.com/12/14/0/43.html http://yp.gates96.com/12/14/0/60.html http://yp.gates96.com/12/14/1/18.html http://yp.gates96.com/12/14/1/44.html http://yp.gates96.com/12/14/1/64.html http://yp.gates96.com/12/14/1/82.html http://yp.gates96.com/12/14/2/84.html http://yp.gates96.com/12/14/3/61.html http://yp.gates96.com/12/14/4/65.html http://yp.gates96.com/12/14/5/24.html http://yp.gates96.com/12/14/5/49.html http://yp.gates96.com/12/14/5/60.html http://yp.gates96.com/12/14/5/62.html http://yp.gates96.com/12/14/6/20.html http://yp.gates96.com/12/14/6/51.html http://yp.gates96.com/12/14/7/28.html http://yp.gates96.com/12/14/7/85.html http://yp.gates96.com/12/14/7/93.html http://planet.gaiax.com/home/kito/main http://www.svt.se/falun/packat/program/603/images/1rep/?D=A http://volunteersolutions.org/swt/volunteer/opp/one_151124_printer_detailed.html http://fyi.cnn.com/ASIANOW/asiaweek/97/1003/nat1.html http://www.farhi.org/ps09/ps09_233.htm http://yp.gates96.com/6/8/30/27.html http://biz.yahoo.com/apf/000929/tire_death_7.html http://www.studentadvantage.gamers.com/game/135583 http://www.studentadvantage.gamers.com/game/45759 http://yp.gates96.com/6/8/30/44.html http://yp.gates96.com/6/8/30/50.html http://yp.gates96.com/6/8/30/72.html http://yp.gates96.com/6/8/30/86.html http://yp.gates96.com/6/8/30/89.html http://yp.gates96.com/6/8/31/78.html http://yp.gates96.com/6/8/31/88.html http://yp.gates96.com/6/8/32/3.html http://yp.gates96.com/6/8/32/24.html http://yp.gates96.com/6/8/32/34.html http://yp.gates96.com/6/8/33/14.html http://yp.gates96.com/6/8/33/42.html http://yp.gates96.com/6/8/33/75.html http://yp.gates96.com/6/8/34/32.html http://yp.gates96.com/6/8/34/97.html http://yp.gates96.com/6/8/35/53.html http://yp.gates96.com/6/8/35/98.html http://yp.gates96.com/6/8/36/74.html http://yp.gates96.com/6/8/36/99.html http://yp.gates96.com/6/8/38/92.html http://yp.gates96.com/6/8/38/97.html http://yp.gates96.com/6/8/39/45.html http://yp.gates96.com/6/8/39/69.html http://tour.stanford.edu/tour/29.0/gMlPb http://idl.tucows.com/winme/adnload/138396_30343.html http://idl.tucows.com/winme/adnload/138395_29743.html http://web.singnet.com.sg/~tay7012i/family.htm http://www.chaos.dk/sexriddle/p/f/g/j/o/ http://lcweb2.loc.gov/ll/llnt/070/?S=A http://lcweb2.loc.gov/ll/llnt/070/0100/ http://www.crosswinds.net/~lucifern/ http://pub14.ezboard.com/fblazinofdablazinestdabattledome.subscribeUnregisteredToTopic?topicID=190.topic http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/computers/lit/quizz/programs/unlambda/misc/peanuts.html http://members.se.tripod.de/svdata/inglis/sida2.htm http://www.fogdog.com/cedroID/ssd3040183217284/crs/hp/nav/stores/golf/ http://198.103.152.100/search*frc/tOperations+guide+to+ZIM/toperations+guide+to+zim/-17,-1,0,E/2browse http://herndon1.sdrdc.com/cgi-bin/com_detail/C00186353 http://www.j2ee.com/products/javamail/javadocs/javax/mail/Flags.html http://www.j2ee.com/products/javamail/javadocs/javax/mail/Header.html http://www.intellicast.com/Sail/World/UnitedStates/FourCorners/Arizona/LakeMeadCanyon/LocalWinds/d1_18/ http://genforum.genealogy.com/cgi-bin/print.cgi?guill::871.html http://in.egroups.com/message/ucc-medicine/9 http://in.egroups.com/message/ucc-medicine/14 http://www-uk3.cricket.org/link_to_database/PLAYERS/WOMEN/AUS/WILSON_B_02011221/index.NSW-WOMEN.html http://ftp.du.se/disk4/FreeBSD/FreeBSD-current/www/ja/releases/?M=A http://www.citythek.de/koeln/eduscho/fsinhalt.htm http://198.103.152.100/search*frc/cCA1+MPY30+97C31/cca1+mpy30+97c31/-5,-1,,E/browse http://ftp.nsysu.edu.tw/Linux/RedHat/doc/en/HOWTOS/localization/Serbian/?N=D http://mk158.tripod.co.jp/old/praga1/do/bio.html http://oneplace.adbureau.net/accipiter/adclick/site=ONEPLACE/area=INDEX/POSITION=FOOTER/AAMSZ=468x60/ACC_RANDOM=449975866078 http://members.tripod.co.jp/Primrose/honeydcolumn3.html http://911codes.com/games/platform/n64/sect/div/cont/list_cheat/spray/y/id/0000009564/gid/0000003291/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/ http://iqseek.shop.goto.com/compperiph/monfol/mon/search/detail.jhtml?MANUF=ViewSonic&MODEL=E790 http://iqseek.shop.goto.com/compperiph/monfol/mon/search/detail.jhtml?MANUF=ViewSonic&MODEL=GA655 http://plat.debian.or.jp/debian/dists/stable/main/binary-powerpc/shells/?M=A http://retailer.gocollect.com/do/session/1912686/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/shipping_policy.asp http://vvv.geocities.co.jp/Playtown-Yoyo/5287/ http://vvv.geocities.co.jp/Playtown-Yoyo/5714/ http://vvv.geocities.co.jp/Playtown-Yoyo/5750/ http://genforum.genealogy.com/cgi-genforum/forums/charpia.cgi?3 http://www.amateurplatinum.com/tubal-ligationmilk/plus-sizecoushin-for-the-pushin/best-friendsjail-bait/vietnamese/ac/dclubrication/bisexualelbow-grease.html http://library.bangor.ac.uk/search/tContemporary+psychology+series/tcontemporary+psychology+series/-17,-1,0,B/2exact&F=tcontemporary+problems+in+geography&1,4 http://www-d0.fnal.gov/cgi-bin/cvsweb.cgi/calreco/VERSION?only_with_tag=p05-br http://www.158china.com/news/2000/08/21/52747.htm http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031009.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031106.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031208.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx031507.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx032406.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx032902.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx041501.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx041611.txt http://www.ln.cei.gov.cn/dh/hgjj/wscf/hx/hx1.txt http://wuarchive.wustl.edu/edu/math/software/multi-platform/SLATEC/G/G2/G2H/G2H2/sbols/ http://www.loststars.net/story4/ab200-2.html http://www.indian-express.com/ie/daily/19981219/35350564.html http://www.indian-express.com/ie/daily/19981219/35351234.html http://www.homestead.com/jennyb/pets.html http://www.allgemeine-immobilien-boerse.de/kanada/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/Versteigerungen-IB/Startseite/Gemeinsam/suche.htm http://www.sankei.co.jp/databox/paper/9808/06/paper/today/sports/soccer/06soc002.htm http://rex.skyline.net/navigate.cgi?history,collectibles,recreation,sculpture,arts http://tjohoo.se/sport/snowboard/2.php3 http://www.du-et.net/prof/n/nkaworu.html http://www.iwon.com/home/movies/movies_summary_page/0,13160,383543,00.html http://www.iwon.com/home/movies/movies_summary_page/0,13160,481885,00.html http://www.iwon.com/home/movies/movies_summary_page/0,13160,372508,00.html http://pub13.ezboard.com/fvisualbasicexplorergettingstarted.emailToFriend?topicID=861.topic http://www.fogdog.com/cedroID/ssd3040183158417/customer_service/ http://www.fogdog.com/cedroID/ssd3040183158417/cgi-bin/CedroCommerce?func=EditBasket http://www.fogdog.com/cedroID/ssd3040183158417/nav/products/cycling/1y/software/ http://www.niwl.se/wais/new/28/28189.htm http://retailer.gocollect.com/do/session/1912674/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www.trax.nilex.co.uk/trax.cgi/A1C/A2R/A2U/B3R/A1U/Resign/ http://www.sofitware.com/books/sci05/0471969664.html http://www.genome.wustl.edu:8021/gsc1/est/zebrafish_reports/old_rank_reports/zebrafish.rank.990322 http://www.genome.wustl.edu:8021/gsc1/est/zebrafish_reports/old_rank_reports/zebrafish.rank.991004 http://www.farhi.org/ps01/ps01_015.htm http://www-usa10.cricket.org/link_to_database/ARCHIVE/WORLD_CUPS/WC99/STATS/BY_TEAM/SL/WC99_BOWL_BEST_INNS_SR_SL.html http://www.online.kokusai.co.jp/Stock_corner/V0043480/wrd/G500/stock_corner/stock_corner.html http://www.online.kokusai.co.jp/Mmf_corner/V0043480/mmf_corner/mmf_corner/url http://mediate.magicbutton.net/do/session/625604/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-cust.html http://www.malaysia.net/lists/sangkancil/1999-05/frm00449.html http://www.bigstar.com/contest/index.cfm/4ae093fg371d8ddg3?fa=contest http://www.bigstar.com/tv/index.cfm/4ae093fg371d8ddg3 http://linux.tucows.dia.dk/gnomehtml/adnload/49933_5879.html http://dc.web.aol.com/roanoke/health/directories.dci?type=professionals http://dc.web.aol.com/roanoke/health/categories.dci?category=fitnessdiet http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux/drivers/isdn/icn/Makefile?only_with_tag=davem-cvs-merge http://dennou-h.gfd-dennou.org/arch/cc-env.old/db/?M=A http://www.envy.nu/wildcats/gare.html http://www.envy.nu/wildcats/horst.html http://www.linux.com/networking/network/release/performance/updates/Netscape/ http://ftpsearch.belnet.be/pub/os/linux/Linux-sunsite.unc/distributions/ultra/Users-Guide/?S=A http://www.chaos.dk/sexriddle/n/f/p/g/a/ http://pub24.ezboard.com/fphilosophersstonefrm7.showAddTopicScreenFromWeb http://pub24.ezboard.com/fphilosophersstonefrm7.showMessage?topicID=10.topic http://www.yorosiku.net:8080/-_-http://www2.biglobe.ne.jp/~animenet/jan222/note/bbs2.html http://www.web-chart.com/Detail.htm?s=2568&c=229 http://www.brio.de/BRIO.catalog/39fe2f5009021d362740d472aa780645/UserTemplate/8 http://www.service911.com/egghead/step/0,2743,10+55+157+24348+17295_2,00.html http://home.pchome.com.tw/computer/judy7777/fast-7.htm http://big5.peopledaily.com.cn/zdxw/11/20000126/200001261111.html http://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31792/lst/qqo/012D http://sunsite.org.uk/public/usenet/news-faqs/alt.answers/paranormal/faq http://newsone.net/nnr/listl/alt.bbs.elebbs/1 http://ourworld.compuserve.com/homepages/hallg/mg_vor.htm http://www.world001.com/forum/yue/1573.html http://www.greenleaves.com/bookcat/gb_1567112730.html http://quotidiano.monrif.net/chan/motori:1119539:/2000/10/30: http://quotidiano.monrif.net/chan/motori:926303:/2000/10/30: http://quotidiano.monrif.net/chan/motori:944719:/2000/10/30: http://home.online.tj.cn/~madgoe/subtitle/nt/nt363.htm http://home.online.tj.cn/~madgoe/subtitle/nt/nt352.htm http://home.online.tj.cn/~madgoe/subtitle/nt/nt343.htm http://home.online.tj.cn/~madgoe/subtitle/nt/nt327.htm http://home.online.tj.cn/~madgoe/subtitle/nt/nt320.htm http://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=Vincze http://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=ving http://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=Vinrye http://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=Vinzy http://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=violinist http://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=Violin http://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=vione http://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=viper0669 http://www.missouri.edu/HyperNews/get/writery/poetry/1.html?embed=-1 http://www.missouri.edu/HyperNews/get/writery/poetry/6.html?outline=1&embed=1 http://www.missouri.edu/HyperNews/get/writery/poetry/9.html?outline=-1&embed=1 http://www.missouri.edu/HyperNews/get/writery/poetry/20.html?outline=3&embed=1 http://www.missouri.edu/HyperNews/get/writery/poetry/21.html?outline=-1&embed=1 http://www.missouri.edu/HyperNews/get/writery/poetry/23.html?outline=1&embed=1 http://www.missouri.edu/HyperNews/get/writery/poetry/38.html?outline=1&embed=1 http://fi.egroups.com/messages/Avon3DayBoston/5 http://www.online.kokusai.co.jp/Demo/V0043481/wrd/G400/demo/ http://www.jamba.de/KNet/_KNet-TQt8j1-PEd-139qr/showInfo-werbung.de/node.0/cde7f1uou http://computalynx.tucows.com/winnt/adnload/73435_29524.html http://www.intellicast.com/Golf/World/UnitedStates/Northwest/Oregon/OregonDunes/THUNDERcast/d2_06/ http://202.105.55.146/h0/news/200009/20/jty7.htm http://pda.tucows.edisontel.com/newton/newtsfiction_size.html http://pda.tucows.edisontel.com/newton/adnload/33238_19961.html http://hem.fyristorg.com/lottaleman/LLfar/1_2942.htm http://www.norrblom.com/..\hund\1996\s2665496.htm http://www.ferien-immobilien.de/niedersachsen/weserbergland/Verkauf/Gemeinsam/MarketingStrategie/Allgemeine-IB/Gemeinsam/Super-Zins-Konditionen/Private-IB/Startseite/Default.htm http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=14,18,11,9,15,8 http://dennou-h.gfd-dennou.org/arch/cc-env.old/xtop/TEBIKI.top.rs590 http://www.amzn.com/exec/obidos/search-handle-url/index=vhs&field-director=Jim%20Stenstrum/ http://www.amzn.com/exec/obidos/tg/browse/-/169237/ http://www.flora.org/flora.oclug/old-6088 http://www.msn.expedia.co.uk/wg/Images/P24601.htm http://www.asahi-net.or.jp/~ei2h-kdu/photos/rail/sanin/amarube3.html http://au.yahoo.com/Business_and_Economy/Shopping_and_Services/Health/Providers/By_Region/U_S__States/Montana/Complete_List/ http://www.staroriental.net/nav/soeg/ihf,aai,n2,118,Electric+Wave+Girl+1998.html http://www.hig.se/(accessed,formoutput,referrer,smallcaps,sqlquery)/~jackson/roxen/ http://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=VAC http://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=GAA http://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=AAB http://carefinder.digitalcity.com/fargond/sports/team.dci?league=NF2&team=AAF http://newnova.tucows.com/preview/60922.html http://www-d0.fnal.gov/d0dist/dist/releases/test/l3fsmtcluster/rcp/?S=A http://www.cs.rit.edu/~ats/inferno/man/html/proto8.htm http://dandini.cranfield.ac.uk/vl=-39835473/cl=140/nw=1/rpsv/cw/web/nw1/browse.htm http://homepage.mac.com/nanameneko/job/architecture-oriented/OHP/Why/why_05.html http://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/games/CaribbeanStud/?M=A http://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/games/CaribbeanStud/distinfo http://ads3.zdnet.com/c/g=r734&c=a53975&idx=2000.10.30.21.30.24/www.zdnet.com/downloads/stories/info/0,,000FDG,.html http://yp.gates96.com/6/57/80/89.html http://yp.gates96.com/6/57/81/42.html http://yp.gates96.com/6/57/81/66.html http://yp.gates96.com/6/57/82/16.html http://yp.gates96.com/6/57/82/61.html http://yp.gates96.com/6/57/83/37.html http://yp.gates96.com/6/57/83/54.html http://yp.gates96.com/6/57/84/14.html http://yp.gates96.com/6/57/85/7.html http://yp.gates96.com/6/57/85/24.html http://yp.gates96.com/6/57/85/35.html http://yp.gates96.com/6/57/85/64.html http://yp.gates96.com/6/57/86/80.html http://yp.gates96.com/6/57/86/96.html http://yp.gates96.com/6/57/87/15.html http://yp.gates96.com/6/57/89/2.html http://yp.gates96.com/6/57/89/95.html http://www.oncology.com/v2_MainFrame/1,1614,_12|00332|00_21|002|00_04|0039|00_38|00188,00.html http://library.bangor.ac.uk/search/aEllis,+Gail/aellis+gail/-5,-1,0,B/exact&F=aellis+griffith+1844+1913&1,9 http://www.rezel.enst.fr/ftp/linux/distributions/debian/CD-2/debian/dists/unstable/contrib/source/mail/?S=A http://itcareers.careercast.com/texis/it/itjs/+SwwBmeYKD86e8hwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhPndhBiwGna5O5BnManDtoDnnGamn5otDamnVncdpaGnwcaBoMnaoDhdGMwBodDaDnBidGAanLpnGonDqnaMFqhTfR20Dzme4twwwpBmex_D86ejxwww5rme6dwwwBrmeZpwww/morelike.html http://esatnet.tucows.com/winnt/adnload/31316_29136.html http://home.c2i.net/w-225961/steinare/brosjyre.htm http://aleph.tau.ac.il:4500/ALEPH/ENG/ATA/AAS/AAS/FIND-ACC/0860271 http://www.chaos.dk/sexriddle/v/c/w/d/r/ http://www9.hmv.co.uk:5555/do/session/1347760/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d135_sd0_pt0.html http://tagesanzeiger.ch/archiv/99november/991122/79295.HTM http://www.pacifictech.com.cn/pcsoftware/sj/jq/00803.htm http://www.pacifictech.com.cn/pcsoftware/sj/jq/00430b.htm http://www.pacifictech.com.cn/pcsoftware/zl/syjq/dmtgj/old/tuxing/3d/20000131.html http://www.building.com/communities/texis/db/go/+DexVFdeKmYnwrmwxerJOwrmwx3exmww/profile.html http://my.egroups.com/message/mathies/43?source=1 http://www.brio.de/BRIO.catalog/39fe2f5706df064c273fd472aa78067c/UserTemplate/6 http://www.brio.de/BRIO.catalog/39fe2f5706df064c273fd472aa78067c/UserTemplate/9 http://www.egroups.com/messages/GollyBeenz/44 http://www.buybuddy.com/sleuth/15/1/1020507/495848/ http://www.brio.de/BRIO.catalog/39fe2f41010c308a2742d472aa7806a7/UserTemplate/5 http://www.ferien-immobilien.de/hessen/bad-hersfeld/Verkauf/IIM-Teil/Startseite/Private-IB/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm http://www.ferien-immobilien.de/hessen/bad-hersfeld/Verkauf/IIM-Teil/Startseite/Private-IB/Allgemeine-IB/Gemeinsam/impressum.htm http://beetle.marion.ohio-state.edu/Bratt2000/D0029/I10769.html http://members.tripod.lycos.co.kr/RAINBOR/?D=A http://www.eos.ncsu.edu/eos/info/bae/bae324_info/ http://www.chez.com/mousis/vg/aqui/pages/0006.htm http://search.chollian.net/cgi-bin/filter.cgi?cid=2052&p=1 http://channel.nytimes.com/1998/03/15/technology/cybertimes/eurobytes/ http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=13,4,2,7,11 http://uk.dir.yahoo.com/Regional/Countries/Mexico/States/Baja_California/Cities/Ensenada/Travel_and_Transportation/Accommodation/Caravan_Parks_and_Campgrounds/ http://ring.toyama-ix.net/archives/mac/info-mac/inet/_Mail/_Eudora/ http://sport.voila.fr/it/calcio/euro2000/teams/por/squad/nunogomes.html http://idefix-41.cs.kuleuven.ac.be/~henk/DPS/ http://library.bangor.ac.uk/search/dLaw+--+Study+and+teaching+--+Great+Britain/dlaw+study+and+teaching+great+britain/-5,-1,0,B/buttonframe&F=dlaw+study+and+teaching+great+britain&7,,7 http://www.eveclub.com/cgi-bin/eveclub.front/972959440822/Catalog/1000002 http://www.eveclub.com/cgi-bin/eveclub.front/972959440822/Catalog/1000062 http://ring.shibaura-it.ac.jp/archives/FreeBSD-PC98/dists/4.0-RELEASE/XF86336/PC98-Servers/?N=D http://www.uq.edu.au/site-index/index.phtml?site_tree_data=1,91,95,203,338,344,2,6,182,148 http://www.uq.edu.au/site-index/index.phtml?site_tree_data=1,91,95,203,338,344,2,6,182,163 http://www.xmission.com/(apocalypse,art,caffiene,geek,misc,music,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,people,places,shopping,stuffiuse,toys)/~bill/links.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=confinarias&l=pt http://www.xmission.com/(apocalypse,art,caffiene,cuseeme,geek,misc,music,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,places,privacy,stuffiuse,toys)/~bill/links.html http://www.gigclub.co.jp/tanigawa/tanigawa/980915/menu.html http://www.3w-sciencefiction.de/SmithWilliamK/SmithWilliamK0126528756.htm http://w3c1.inria.fr/Mobile/posdep/Presentations/Mogid/sld014.htm http://members.tripod.co.jp/view_i/p.html http://202.99.23.245/zdxw/11/20000317/200003171117.html http://www.jpc-music.com/7334085.htm http://library.bangor.ac.uk/search/aLibrary+Association/alibrary+association/-5,-1,0,B/buttonframe&F=alibrary+association&2,,64 http://www.sf.digitalcity.com/puntagordafl/sports/team.dci?league=FSL&team=CHA http://www.sf.digitalcity.com/puntagordafl/sports/team.dci?league=FSL&team=LAK http://brain.brent.gov.uk/__802564ff0045d739.nsf/vWebAllPagesByLocsSrvd!OpenView&Start=33&Count=60&Collapse=45 http://www.nypost.com/news/933.htm http://www.nypost.com/business/979.htm http://www.nypost.com/living/951.htm http://www.computer-networking.de/studenten/cn_intern/bauer/jobst/k07-graphik-gui/controls/swing/ http://194.55.30.33/albanian/tema_gjermane/67823.html http://194.55.30.33/albanian/tema_gjermane/65962.html http://yp.gates96.com/14/85/10/12.html http://yp.gates96.com/14/85/11/98.html http://yp.gates96.com/14/85/12/24.html http://yp.gates96.com/14/85/13/57.html http://yp.gates96.com/14/85/14/92.html http://yp.gates96.com/14/85/16/37.html http://yp.gates96.com/14/85/16/51.html http://yp.gates96.com/14/85/16/78.html http://yp.gates96.com/14/85/17/38.html http://yp.gates96.com/14/85/17/48.html http://yp.gates96.com/14/85/17/91.html http://yp.gates96.com/14/85/19/35.html http://yp.gates96.com/14/85/19/88.html http://genforum.genealogy.com/cgi-genforum/forums/deppen.cgi?3 http://www.ferien-immobilien.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/Private-IB/Startseite/Gemeinsam/Inserieren/Versteigerungen-IB/Startseite/Ferien-IB/Startseite/ http://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/51800 http://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/53510 http://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/52600 http://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/50510 http://www.redrocksports.com/sports/webSession/shopper/RR972959668-31057/store/dept-5/department/dept-5/item/50400 http://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/http_-2www.netscape.com/download/http_-2www.microsoft.com/ie/http_-2207.91.150.20/http_-2www.updowntowner.org/julyjamm/headliners.html http://www.ccurrents.com/magazine/national/1702/nets31702.html http://adept.subportal.com/sn/Themes/Vehicle_Themes/5090.html http://www.fogdog.com/cedroID/ssd3040183211390/nav/products/outlet/1a/fishing/ http://www.linux.com/networking/network/communications/article/unix/sales/ http://fyi.cnn.com/content/US/9902/25/germans.death.penalty.ap/ http://fyi.cnn.com/US/9902/09/monk.execute.ap.02/ http://fyi.cnn.com/WORLD/asiapcf/9902/06/PM-Philippines-DeathPena.ap/ http://pub11.ezboard.com/ucivik.showPublicProfile http://playboy.software.net/PKIN005896/prod.htm http://www.linux.com/networking/network/help/free/performance/install/ http://www.linux.com/networking/network/help/free/performance/X/ http://se.egroups.com/message/ghost_tales/1490 http://niteowl.userfriendly.net/linux/RPM/rawhide/1.0/i386/usr_src_linux-2.4.0_include_Tree.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=coexistissem&l=pt http://promed.univ-rennes1.fr/cerf/ico_an/IDRE/21_HADM.HTM http://promed.univ-rennes1.fr/cerf/ico_an/IDRE/25_HADM.HTM http://promed.univ-rennes1.fr/cerf/ico_an/IDRE/86_HADM.HTM http://promed.univ-rennes1.fr/cerf/ico_an/IDRE/88_HADM.HTM http://promed.univ-rennes1.fr/cerf/ico_an/IDRE/90_HADM.HTM http://promed.univ-rennes1.fr/cerf/ico_an/IDRE/HADM6.HTM http://www.estrelladigital.es/000814/articulos/economia/correos.htm http://itcareers.careercast.com/texis/it/itjs/+awwBme4CD86LxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewPPnBwpcnaqdGpdGwBnaoDhdGMwBodDahoDma5BdGnaq15BdMnGa5nGVoqnaqdDBwqBamo5BGox1BodDaMwDwtnMnDBaMFqrIRE7P0IDzme_xwwwpBmHe0B-deaqwww5rmsmwwBrme7Dwww/morelike.html http://yp.gates96.com/3/79/50/30.html http://yp.gates96.com/3/79/50/54.html http://yp.gates96.com/3/79/51/1.html http://yp.gates96.com/3/79/51/11.html http://yp.gates96.com/3/79/51/80.html http://yp.gates96.com/3/79/52/27.html http://yp.gates96.com/3/79/52/81.html http://yp.gates96.com/3/79/53/81.html http://yp.gates96.com/3/79/54/0.html http://yp.gates96.com/3/79/54/31.html http://yp.gates96.com/3/79/55/74.html http://yp.gates96.com/3/79/55/78.html http://yp.gates96.com/3/79/56/72.html http://yp.gates96.com/3/79/57/0.html http://yp.gates96.com/3/79/58/27.html http://yp.gates96.com/3/79/58/31.html http://yp.gates96.com/3/79/58/48.html http://yp.gates96.com/3/79/58/76.html http://yp.gates96.com/3/79/58/99.html http://yp.gates96.com/3/79/59/27.html http://yp.gates96.com/3/79/59/32.html http://yp.gates96.com/3/79/59/49.html http://yp.gates96.com/3/79/59/81.html http://yp.gates96.com/3/79/59/83.html http://startribune.atevo.com/misc/print_article/0,3869,4504302,00.html http://browse.carnaby.com/home/showcase/6/381/2078/A0638120780000EA01.html http://www.checkout.com/music/earmail/form/1,7650,325272-1761567,00.html http://ring.shibaura-it.ac.jp/archives/doc/jpnic/minutes/committee/200007/shiryou-4-1.txt http://www.secinfo.com/d1ZMQs.51h.htm http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/AtlantisPBEM/CVSROOT/modules?only_with_tag=MAIN http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/AtlantisPBEM/CVSROOT/modules?only_with_tag=HEAD http://ftp.bitcon.no/tucows/adnload/4961_28325.html http://yp.gates96.com/3/37/0/21.html http://yp.gates96.com/3/37/0/29.html http://yp.gates96.com/3/37/0/80.html http://yp.gates96.com/3/37/0/87.html http://yp.gates96.com/3/37/1/9.html http://yp.gates96.com/3/37/2/83.html http://yp.gates96.com/3/37/2/92.html http://yp.gates96.com/3/37/3/26.html http://yp.gates96.com/3/37/4/9.html http://yp.gates96.com/3/37/4/29.html http://yp.gates96.com/3/37/5/31.html http://yp.gates96.com/3/37/5/49.html http://yp.gates96.com/3/37/5/51.html http://yp.gates96.com/3/37/5/63.html http://yp.gates96.com/3/37/5/95.html http://yp.gates96.com/3/37/6/0.html http://yp.gates96.com/3/37/6/4.html http://yp.gates96.com/3/37/7/22.html http://yp.gates96.com/3/37/8/10.html http://yp.gates96.com/3/37/8/50.html http://yp.gates96.com/3/37/8/92.html http://yp.gates96.com/3/37/9/46.html http://ftp.digex.net/debian/dists/woody/contrib/binary-sh/libs/?N=D http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=4,15,12,16 http://in.egroups.com/group/bbw-uk http://home.swipnet.se/~w-20817/ http://shop.puretec.de/kunden/19867293/detailansicht_Aku1025B.html http://www.rezeptkoch.de/Rezepte/Heimisches_/Gemuse/Sommerliche_Gemusegerichte/sommerliche_gemusegerichte_2.html http://www.rezeptkoch.de/Rezepte/Heimisches_/Gemuse/Kohl/kohl_4.html http://www.rezeptkoch.de/Rezepte/Heimisches_/Gemuse/Kohl/kohl_11.html http://www.chinainvest.com.cn/C/Showdetail/20359.html http://tucows.sp-plus.nl/winme/preview/141310.html http://www.al-hujjat.grid9.net/gnomehtml/ent_enhance_rating.html http://www.warmbloods.net/breeding/_vti_bin/shtml.dll/disc123_post.htm?1260 http://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/net/ruby-snmp/Makefile http://basil.cs.uwp.edu/Documentation/java/jdk/docs/guide/sound/prog_guide/chapter3.fm.html http://tucows.1web.it/winme/preview/75525.html http://uk-wire.ukinvest.com/articles/200009180701200586R.html http://www.ozon.ru/detail.cfm/ent=33&id=953&add2navigator=1&txt=1 http://cometweb01.comet.co.uk/do!session=131984&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1 http://community.webshots.com/photo/3922869/3923445TSuTSQIWpD http://www.eveclub.com/cgi-bin/eveclub.front/972959447434/Catalog/1000040 http://www.tvstore.com/browse/TV/NIGHTSHI/s.nXZNPRgQ http://www.tvstore.com/browse/TV/COMIC/s.nXZNPRgQ http://www.xmwb.sh.cn/xmwb/19981016/GB/13389^8101623.htm http://helios.nlib.ee/search*est/tThe+threshold+series/tthreshold+series/-5,-1,0,B/frameset&F=tthrillers&1,1 http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=23,9,7,18 http://ftp.bitcon.no/pub/windowsce/epoc/desktop5.htm http://ftp.lip6.fr/pub2/sgml-tools/website/HOWTO/Multicast-HOWTO/t1595.html http://ftp.rge.com/pub/X/XFree86/3.3.3.1/untarred/xc/programs/Xserver/ http://ftp.rge.com/pub/X/XFree86/3.3.3.1/untarred/xc/programs/xwud/ http://syix.tucows.com/win2k/adnload/73370_29328.html http://yp.gates96.com/0/54/80/40.html http://yp.gates96.com/0/54/80/56.html http://yp.gates96.com/0/54/80/61.html http://yp.gates96.com/0/54/80/79.html http://yp.gates96.com/0/54/81/11.html http://yp.gates96.com/0/54/81/25.html http://yp.gates96.com/0/54/81/58.html http://yp.gates96.com/0/54/82/48.html http://yp.gates96.com/0/54/82/75.html http://yp.gates96.com/0/54/83/0.html http://yp.gates96.com/0/54/84/12.html http://yp.gates96.com/0/54/84/67.html http://yp.gates96.com/0/54/85/47.html http://yp.gates96.com/0/54/85/59.html http://yp.gates96.com/0/54/86/52.html http://yp.gates96.com/0/54/86/55.html http://yp.gates96.com/0/54/86/79.html http://yp.gates96.com/0/54/86/87.html http://yp.gates96.com/0/54/87/12.html http://yp.gates96.com/0/54/87/81.html http://yp.gates96.com/0/54/88/97.html http://yp.gates96.com/0/54/89/90.html http://www.yorosiku.net:8080/-_-http://liinwww.ira.uka.de/bibliography/Distributed/SIGCOMM.94.html http://news.pchome.com.tw/ftv/health/20000915/ http://www.emis.de/journals/EJDE/Volumes/Volumes/Monographs/1998/05/?N=D http://travelocity-dest.excite.com/DestGuides/0,1840,TRAVELOCITY|5706|3|1|159040|photo_id|4022,00.html http://travelocity-dest.excite.com/DestGuides/0,1840,TRAVELOCITY|5706|3|1|159040|photo_id|4020,00.html http://lhcbsoft.web.cern.ch/LHCbSoft/simmuon/v1/mgr/CVS/Root http://tucows.soneraplaza.nl/winme/adnload/137454_28942.html http://www.borland.nl/techpubs/jbuilder/jbuilder3/ui/wclass.html http://fi.egroups.com/links/dssf http://www.homestead.com/jcv2000/MBoard.html http://careershop.resumeshotgun.com/directory/italy/sardegna/o.10.p.4408.html http://www.hantsnet.co.uk/istcclr/cch32751.html http://www.hantsnet.co.uk/istcclr/cch16729.html http://www.hantsnet.co.uk/istcclr/cch03788.html http://www.hantsnet.co.uk/istcclr/cch05491.html http://www.hantsnet.co.uk/istcclr/cchr0418.html http://www.hantsnet.co.uk/istcclr/cchh2289.html http://www.hantsnet.co.uk/istcclr/cchh2074.html http://www.hantsnet.co.uk/istcclr/cch30426.html http://www.hantsnet.co.uk/istcclr/cch11726.html http://www.hantsnet.co.uk/istcclr/cch03858.html http://www.hantsnet.co.uk/istcclr/cche0920.html http://www.hantsnet.co.uk/istcclr/cch34768.html http://www.hantsnet.co.uk/istcclr/cchc2067.html http://www.hantsnet.co.uk/istcclr/cche1085.html http://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/53771000000443000000339400000065451/v2tvindex.wo/614720000055451/1.14/3/Webobjects1 http://www.sternonline.de/magazin/fotogalerie/hinz/index5.html http://www.envy.nu/Sing.html http://employment.subportal.com/sn/Themes/ http://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7002120&area=&ID=483332 http://wlink.tucows.com/winme/adnload/137847_29260.html http://tucows.computalynx.net/winnt/adnload/71633_28766.html http://ftp.up.pt/Linux/debian/dists/stable/main/disks-m68k/?M=A http://lcweb2.loc.gov/ll/llnt/009/0000/ http://www.magma.ca/~denisd/africa/day02.html http://www.magma.ca/~denisd/africa/day16.html http://content.health.msn.com/message_board_author/802072 http://ep.com/js/about/c0/189455 http://ep.com/js/about/c0/154005 http://www.realbig.com/miata/miata/1999-12/2340.html http://www.multimap.com/wi/33738.htm http://www.multimap.com/wi/148724.htm http://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/3d-service/Gemeinsam/versicherungen/lebensversicherung/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/MarketingStrategie/Strategie.htm http://link.fastpartner.com/do/session/600347/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/learn.htm http://pub16.ezboard.com/fisnforumsfrm16.subscribeUnregisteredToTopic?topicID=731.topic http://freesoftware.subportal.com/sn/Business/Application_Add-ins/726.html http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/deskutils/genius/files/?sortby=date http://www.madein.nnov.ru/stat/index.phtml?cid=418&t=3 http://citeseer.nj.nec.com/correct/294145 http://www.phillips.semiconductors.com/pip/PCF5001H http://www.tvstore.com/browse/TV/BANK/s.Vaphccqs http://www.tvstore.com/browse/TV/SCRIPT/s.Vaphccqs http://www.tvstore.com/aboutus/s.Vaphccqs http://www.fogdog.com/cedroID/ssd3040183205929/nav/products/featured_brands/3b/arm_warmers/ http://orders.mkn.co.uk/bear/steiff/classic/order/now.en$NOK?what-e=1 http://www.crutchfield.com/S-jtpRS1P7vRY/help/ http://www06.u-page.so-net.ne.jp/tb3/y-miyu/azure/kodatour.htm http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/japanese/escpf/distinfo http://no.egroups.com/subscribe/Theater_plays http://www.equipe.fr/Football/FootballFicheJoueur8954_0.html http://www.equipe.fr/Football/FootballFicheJoueur6039_0.html http://www.pmdc.org.uk/dogsdb/p00/P00133.HTM http://ip.tosp.co.jp/i.asp?i=nononatti3 http://tucows.wlink.com.np/adnload/144221_48889.html http://store.yahoo.co.jp/I/naturum_1590_147867488 http://providenet.office.tucows.com/adnload/77414_41755.html http://providenet.office.tucows.com/adnload/73011_41097.html http://www.goldersgreen.londonengland.co.uk/medicalequipmentrentalandleasing.htm http://www.online.kokusai.co.jp/Mmf_corner/V0043462/mmf_corner/mmf_corner/url http://www.qth.net/archive/packrats/200008/20000804.html http://www.expage.com/buffykat11nelly http://dk.egroups.com/login.cgi?login_target=%2Fmessages%2Fbbs_people http://dk.egroups.com/message/bbs_people/23 http://www.linux.com/networking/network/technology/free/development/learning/ http://www.chaos.dk/sexriddle/r/x/z/t/l/ http://www.opensecrets.org/lobbyists/98profiles/5918.htm http://www.cbs.sportsline.com/u/football/nfl/kids/players/3418.htm http://www.cbs.sportsline.com/u/football/nfl/kids/players/3868.htm http://www.cbs.sportsline.com/u/football/nfl/kids/players/133268.htm http://www.hig.se/(apre,clientname,countdown,language,set_cookie)/~jackson/roxen/ http://www.platogmbh.de/plato/home.nsf/c81870434660ba41c125652a0029a47a/fb7566ed772f8580c12566f00036ac59!OpenDocument&ExpandSection=4,8,11,12 http://www.fogdog.com/cedroID/ssd3040183211315/nav/products/featured_brands/2m/kick_sprint_boards/ http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/folderFrame/100001/0/alpha/2458960 http://www.jamba.de/KNet/_KNet-ONt8j1-NEd-139p9/showInfo-jobs.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-ONt8j1-NEd-139pf/browse.de/node.0/cdzqggtyb http://iland.tucows.com/win2k/adnload/38318_29882.html http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~020060~04880',00.html http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~020060~35840',00.html http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~020060~90237',00.html http://sunsite.org.uk/public/usenet/news.answers/alt.answers/self-impr-faq/part1 http://ftp.bitcon.no/pub/simtelnet/win95/fileutl/?S=A http://totalsports.aol.com/stats/bbo/mlb/20000517/bal.at.ana.game.html http://au.yahoo.com/Regional/U_S__States/Virginia/Counties_and_Regions/Henrico_County/Business_and_Shopping/Shopping_and_Services/Travel/ http://ftp.up.pt/Linux/debian/dists/unstable/main/binary-all/math/ http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=10,17,13,14 http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/japanese/vfghostscript/Makefile http://polygraph.ircache.net:8181/yp/User_Contribs/http_-2home.netscape.com/comprod/mirror/ http://www.emis.de/journals/EJDE/Volumes/Monographs/Volumes/1998/26/?S=A http://www.smartshop.com/cgi-bin/main.cgi?c=314&a=contactus http://213.36.119.69/do/session/152986/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/BE_NL/ http://www.outdoorwire.com/lists/dirt/200009/msg01273.html http://chicagocow.com/top/1,1419,M-Metromix-Home-Carryout!InputReview-9757--0,00.html http://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/659920000022582000008720100000129302/main.wo/9193100000029302/4/-/prime http://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0292493.htm http://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0292495.htm http://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0292496.htm http://www.outpersonals.com/cgi-bin/w3com/pws/out/jlhIVflnBPgWmpC4eFAjXlk3QXcFhcK-b9D_cbZyHLtTP5aigpMrgot7TKiIhNzg8y23_mmQAn7GVTQsvALIGIvJI8RFNXRZDuyGCzJ8JFs6ysbZfjgM3ik0nyIt5yhT_ujQhRI-42lzAOeb666j http://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/admission/972959588-- http://www.intellicast.com/Golf/World/UnitedStates/MidAtlantic/Virginia/RoyalNewKentGC/LocalWinds/d1_12/ http://gbchinese.yahoo.com/headlines/001028/sports/ycwb/ycba28c003txttyxw00102800.html http://gbchinese.yahoo.com/headlines/001028/sports/ycwb/ycba28c004txttyxw00102800.html http://mx.php.net/manual/hu/language.references.unset.php http://www.cbtravelguide.com/north_america/united_states/info_2.htm?sortby=city http://www.intellicast.com/Sail/World/UnitedStates/Northwest/Idaho/Targhee/LocalWinds/d1_03/ http://ftp.sunet.se/pub/FreeBSD/ports/ports-current/devel/libgii/distinfo http://biblioteca.upv.es/bib/doc/doc_fisbd/816/149599//C/1826373/0////25/S/MLTPAI http://willsmith.sonicnet.com/events/jay_z/index_sonicnet.jhtml http://tucows.soneraplaza.nl/winme/tucowsme_license.html http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/usr.sbin/fdcontrol/Makefile?only_with_tag=MAIN http://www.kurit.com/ip/a5iu/dungeon/showsw1.html http://www.mapion.co.jp/custom/AOL/admi/13/13118/minamisenju/3chome/index-30.html http://yp.gates96.com/3/2/10/4.html http://yp.gates96.com/3/2/10/19.html http://yp.gates96.com/3/2/10/48.html http://yp.gates96.com/3/2/10/52.html http://yp.gates96.com/3/2/10/82.html http://yp.gates96.com/3/2/11/10.html http://yp.gates96.com/3/2/11/13.html http://yp.gates96.com/3/2/13/31.html http://yp.gates96.com/3/2/13/41.html http://yp.gates96.com/3/2/13/43.html http://yp.gates96.com/3/2/14/3.html http://yp.gates96.com/3/2/14/19.html http://yp.gates96.com/3/2/15/54.html http://yp.gates96.com/3/2/15/72.html http://yp.gates96.com/3/2/16/84.html http://yp.gates96.com/3/2/17/22.html http://yp.gates96.com/3/2/17/61.html http://yp.gates96.com/3/2/18/1.html http://yp.gates96.com/3/2/18/41.html http://yp.gates96.com/3/2/18/58.html http://yp.gates96.com/3/2/19/56.html http://yp.gates96.com/3/2/19/79.html http://www.stas.net/lonlywtrsoul/minesweeper/ms.html http://ksu.freeyellow.com/ http://www.genome.wustl.edu:8021/gsc10/est/yt/yt69/ http://www.genome.wustl.edu:8021/gsc10/est/yt/yt82/ http://www.winsite.com/info/pc/win95/miscutil/cutty10.exe/downltop.html http://habenix.uni-muenster.de/Rektorat/Forschungsberichte-1997-1998/fo05bbe03.htm http://www.jobvillage.com/channel/jobs/installation_repair/bicycle/g.3370.html http://www.mordkommission.de/ratgeber/praxis/service/broschueren/40504/ http://www.aelita.net/products/news/solutions/sitemap/company/library/default.htm http://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=acejet http://cgi1.washingtonpost.com/wp-dyn/metro/va/alexandria/ http://www.linux.com/networking/network/applications/interface/linux/distro/ http://www2.brent.gov.uk/bv1nsf.nsf/031d5c68638196618025664000760871/963fe55ca97ccaa5802568f900503269!OpenDocument&Start=57.3&Count=60&Expand=69 http://www2.brent.gov.uk/bv1nsf.nsf/031d5c68638196618025664000760871/963fe55ca97ccaa5802568f900503269!OpenDocument&Start=57.3&Count=60&Expand=72 http://www2.brent.gov.uk/bv1nsf.nsf/031d5c68638196618025664000760871/963fe55ca97ccaa5802568f900503269!OpenDocument&Start=57.3&Count=60&Expand=87 http://genforum.genealogy.com/cgi-genforum/forums/youngs.cgi?26 http://www.tvstore.com/browse/TV/CAP/s.IRspZRIy http://210.178.135.1/netbbs/Bbs.cgi/nhic30592/qry/zka/B2-kB2-p/pno/0/qqo/012A/qqatt/^ http://home.sol.no/~leskjerv/aner/12063.htm http://pub6.ezboard.com/fwatckkeepersgeneralwatchkeeperdiscussion?page=5 http://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/folderFrame/100217/0/def/1210456 http://ftp.sunet.se/pub/FreeBSD/ports/ports-stable/games/xosmulti/?S=A http://opac.lib.rpi.edu/search/ddata+processing+english+language+style/7,-1,0,B/browse http://yp.gates96.com/7/40/0/5.html http://yp.gates96.com/7/40/0/33.html http://yp.gates96.com/7/40/1/27.html http://yp.gates96.com/7/40/3/25.html http://yp.gates96.com/7/40/3/36.html http://yp.gates96.com/7/40/4/67.html http://yp.gates96.com/7/40/4/77.html http://yp.gates96.com/7/40/6/28.html http://yp.gates96.com/7/40/6/49.html http://yp.gates96.com/7/40/6/89.html http://yp.gates96.com/7/40/7/21.html http://yp.gates96.com/7/40/9/24.html http://indonesian.wunderground.com/geo/GizmoTempBigPromo/global/stations/07434.html http://www.teenplatinum.com/barelylegal/anal-sexass/legsred-toenail-polish/swallowspit/submissiondiscipline/maledomspanking/hardcorebondage.html http://cgi.cnnsi.com/basketball/college/women/scoreboards/aeast/2000/10/18/ http://cgi.cnnsi.com/basketball/college/women/scoreboards/aeast/2000/10/16/ http://bellona.itworld.com:8080/cwi/Printer_Friendly_Version/frame/0,1212,NAV63-128-1357-1367_STO48482-,00.html http://cdrwww.who.int/fsf/ehec.pdf http://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Jiangxi/Cities_and_Towns/Nanchang/Real_Estate/ http://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Jiangxi/Cities_and_Towns/Nanchang/Society_and_Culture/ http://www.camden-industrial.com/supply/webSession/shopper/CI972959657-31048/store/dept-8 http://www.msb.malmo.se/search*swe/mQdfm/mqdfm/-5,-1,0,E/2browse http://tagesanzeiger.ch/archiv/96september/960903/213235.htm http://yp.gates96.com/3/7/20/3.html http://yp.gates96.com/3/7/20/28.html http://yp.gates96.com/3/7/20/42.html http://yp.gates96.com/3/7/21/5.html http://yp.gates96.com/3/7/21/61.html http://yp.gates96.com/3/7/22/18.html http://yp.gates96.com/3/7/22/20.html http://yp.gates96.com/3/7/22/24.html http://yp.gates96.com/3/7/23/33.html http://yp.gates96.com/3/7/23/49.html http://yp.gates96.com/3/7/23/57.html http://yp.gates96.com/3/7/24/22.html http://yp.gates96.com/3/7/24/23.html http://yp.gates96.com/3/7/24/27.html http://yp.gates96.com/3/7/24/36.html http://yp.gates96.com/3/7/24/45.html http://yp.gates96.com/3/7/25/98.html http://yp.gates96.com/3/7/26/56.html http://yp.gates96.com/3/7/26/77.html http://yp.gates96.com/3/7/26/94.html http://yp.gates96.com/3/7/27/10.html http://yp.gates96.com/3/7/27/17.html http://yp.gates96.com/3/7/27/61.html http://yp.gates96.com/3/7/27/73.html http://yp.gates96.com/3/7/27/81.html http://yp.gates96.com/3/7/27/82.html http://yp.gates96.com/3/7/27/87.html http://yp.gates96.com/3/7/28/48.html http://yp.gates96.com/3/7/29/1.html http://yp.gates96.com/3/7/29/8.html http://yp.gates96.com/3/7/29/32.html http://www.crit.org/http://www-mel.nrlmry.navy.mil/%ff:words:(MEL-is-a-sponsored-distributed-environmental-data-access-system-which-allows-users-to-search-for-browse-and-retrieve-environmental-data-from-distributed-sources) http://www.crit.org/http://crit.org/pub/radiks.net/jwoods/%ff:words:jwoods-radiks-net-(A-More-Graceful-Transition)-An-expanded-definition http://shn.webmd.com/roundtable_reply/802056 http://shn.webmd.com/roundtable_author/802056 http://bbs.bianca.com/mforums/e/expounder/posts/2000_Jan_09/3067/3073.html http://www.spaindustry.com/ita/geosearch/navarra/navarra/ESLAVA.html http://www.backflip.org/members/rj2nagle/4643211 http://www.backflip.org/members/rj2nagle/7211888 http://www.backflip.org/members/rj2nagle/5066953 http://www.backflip.org/members/rj2nagle/5346740 http://www.backflip.org/members/rj2nagle/5382951 http://www.linux.com/networking/network/performance/help/va_linux_systems/server/ http://www.secinfo.com/d178s.ad.htm http://www.secinfo.com/d178s.9d.htm http://www.secinfo.com/d178s.8b.htm http://www.secinfo.com/d178s.8y.htm http://iceberg.adhomeworld.com/cgi-win/redirect.exe/1153874888 http://tmxy.363.net/refer-e.htm http://www.narodnaobroda.sk/20000210/10_007.html http://retailer.gocollect.com/do/session/1912712/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/index.asp http://retailer.gocollect.com/do/session/1912712/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/halloween/halloween.asp http://www.larevista.elmundo.es/documentos/secciones/ciencia.html http://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/brightnet/?M=A http://www.5a8.com/book/zt/zpj/k/kelisidi/wanshenjie/006.htm http://www.5a8.com/book/zt/zpj/k/kelisidi/wanshenjie/019.htm http://www.northwoods.bigsmart.com/mall/cat_automotive.cfm?drop_menu=yes http://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_220.txt http://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_364.txt http://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_400.txt http://www.leg.wa.gov/pub/rcw%20-%20text/title_41/chapter_004/rcw_41_04_630.txt http://bsd.tucows.mol.com/x11html/adnload/69206_8129.html http://ldp.teihal.gr/LDP/LG/issue22/notes-mode.html http://ldp.teihal.gr/LDP/LG/issue22/haters.html http://members.nbci.com/design_res/software_ftp.htm http://www.nativeamerican-jewelry.com/necklace53.htm http://members.theglobe.com/pamile/Pamela0004.html http://webtools.familyeducation.com/whatworks/item/front/0,2551,22-9696-7350-1099-49655,00.html http://wwws.br-online.de/geld/boerse/970909/072001.html http://212.31.0.37/fix98/75yil/1938.htm http://212.31.0.37/fix98/75yil/1950.htm http://212.31.0.37/fix98/75yil/26ekl.htm http://212.31.0.37/fix98/75yil/28ekl.htm http://212.31.0.37/fix98/75yil/38ekl.htm http://212.31.0.37/fix98/75yil/67ekl.htm http://212.31.0.37/fix98/75yil/92ekl.htm http://212.31.0.37/fix98/75yil/15ekl.htm http://www.insurequotes.com/wa2/71J2.html http://cn.egroups.com/message/csreye/112 http://ring.crl.go.jp/archives/lang/perl/CPAN/authors/id/J/JA/JARIAALTO/?D=A http://ds.dial.pipex.com/town/drive/kch36/select/s31/ch027.html http://ds.dial.pipex.com/town/drive/kch36/select/s31/ch056.html http://ds.dial.pipex.com/town/drive/kch36/select/s31/ch043.html http://202.99.23.245/huadong/199905/25/no_4.html http://www.linux.com/networking/network/industry/training/services/business/ http://www.writtenbyme.com/articles/849308468.shtml http://members.tripod.com/TroupeLynx/index_m.htm http://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/https_-2www.truste.org/validate/http_-2www.ziplink.net/~ralphb/newsroom/http_-2www.travelsc.com/industry/home.html http://ftp.bitcon.no/pub/tucows/preview/1095.html http://ftp.bitcon.no/pub/tucows/preview/870.html http://ftp.bitcon.no/pub/tucows/preview/144675.html http://ftp.bitcon.no/pub/tucows/preview/144869.html http://ftp.bitcon.no/pub/tucows/preview/31162.html http://ftp.bitcon.no/pub/tucows/preview/7724.html http://ftp.bitcon.no/pub/tucows/preview/2691.html http://ftp.bitcon.no/pub/tucows/preview/72841.html http://ftp.bitcon.no/pub/tucows/preview/72185.html http://www.jacksonhewitt.com/ctg/cgi-bin/JacksonHewitt/company_profile/AAAksrACwAAABtvAAX http://search.excaliburfilms.com/moviepgs/goodbadanddirty.htm?currency=NOK&stock=8377V1 http://search.excaliburfilms.com/moviepgs/goodbadanddirty.htm?currency=FRF&stock=8377V1 http://genforum.genealogy.com/cgi-bin/print.cgi?torian::44.html http://retailer.gocollect.com/do/session/1912702/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/newintros.asp http://www.retrobytes.org/classiccmp/9911/msg00941.html http://ftp.support.compaq.com/public/dunix/v3.2d-1/dce/?S=A http://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=CoyoteChief http://www.collectingnation.com/cgi-bin/bn/request_email.mod?EHANDLE=cpatch http://www.beanienation.com/cgi-bin/bn/view_feedback.mod?HANDLE=cpegasus http://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/483ed12afec2b31d002564ac0039427a!OpenDocument&ExpandSection=7,6,5 http://www.luecos.de/wow/art/mu_newsc_12080.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/quizz/misc/lit/programs/simple/pages_new.html http://library.cuhk.edu.hk/search*chi/aChen,+Hui-fen./achen+hui+fen/31,-1,0,E/frameset&F=achen+hung&4,,0 http://www.vedomosti.spb.ru/2000/arts/spbved-82-art-2.html http://www.vedomosti.spb.ru/2000/arts/spbved-82-art-21.html http://www.vedomosti.spb.ru/2000/arts/spbved-82-art-45.html http://caller-times.com/1999/june/26/today/national/2447.html http://cafe5.daum.net/Cafe-bin/Bbs.cgi/vision20pds/lst/qqeq/1/zka/B2-kB2Np http://www.crutchfield.com/S-q8jdM6hvouc/sales.html http://www.crutchfield.com/S-q8jdM6hvouc/cgi-bin/Catalog.asp?sid=S-q8jdM6hvouc http://www.crutchfield.com/S-q8jdM6hvouc/copyright.html http://deliveryc.aftonbladet.se/puls/stockholmsguiden/presentation/0,1714,2000023149,00.html http://deliveryc.aftonbladet.se/puls/stockholmsguiden/presentation/0,1714,2000023162,00.html http://deliveryc.aftonbladet.se/puls/stockholmsguiden/presentation/0,1714,2000023220,00.html http://www.tnonline.com/archives/news/2000weeklies/09.20/pocono/pocono/police.html http://retailer.gocollect.com/do/session/1912688/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/sports/index.asp http://ftp.fas.org/irp/world/iraq/hadi/ http://rusf.ru/kb/stories/kogda_chapaev_ne_utonul/text.htm http://ring.yamanashi.ac.jp/pub/FreeBSD-PC98/dists/4.1-RELEASE/packages/chinese/?M=A http://www3.buch-per-sms.de/anmeldung0.jsp$ID=To7737mC4935289641883087At0.9095524774481786 http://www3.buch-per-sms.de/impressum.jsp$ID=To7737mC4935289641883087At0.9104482951702283 http://ftp.uni-bremen.de/pub/linux/dist/suse/6.4/i386.de/suse/contents/ http://ftp.uni-bremen.de/pub/linux/dist/suse/6.4/i386.de/suse/pay3/ http://ftp.uni-bremen.de/pub/linux/dist/suse/6.4/i386.de/suse/xdev2/ http://www.mlbworldseries.com/u/baseball/mlb/players/moreplayer_7649.htm http://www.rismedia.com/consumer/27/5192/ http://www.rismedia.com/consumer/27/18760/ http://library.cuhk.edu.hk/search*chi/aZhang,+Wei-Yuan./azhang+wei+yuan/-5,-1,0,B/browse http://itcareers.careercast.com/texis/it/itjs/+XwwBmeSFy86xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8awn5otDanDtoDnnGaxdo5na5BwBnazdxanLpnGonDqnamnVncdpaBnwMahoGMiwGna31wcohoqwBodDaMFqpl0bP0RRe2PftgQE2yDzmesxwwwpBmeAFy86Kwww5rmepdwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+zwwBmerEy86e+xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8awn5otDanDtoDnnGaxdo5na5BwBnazdxanLpnGonDqnamnVncdpaBnwMahoGMiwGna31wcohoqwBodDaMFqpl0bP0RRe2PftgQE2yDzmesxwwwpBmeAFy86Kwww5rmeADwwwBrmeZpwww/jobpage.html http://itcareers.careercast.com/texis/it/itjs/++wwBmex8286xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8awn5otDanDtoDnnGaxdo5na5BwBnazdxanLpnGonDqnamnVncdpaBnwMahoGMiwGna31wcohoqwBodDaMFqpl0bP0RRe2PftgQE2yDzmesxwwwpBmeAFy86Kwww5rm6mwwBrmeZpwww/jobpage.html http://archive.soccerage.com/s/de/09/b2445.html http://archive.soccerage.com/s/de/09/b2408.html http://archive.soccerage.com/s/de/09/b2272.html http://archive.soccerage.com/s/de/09/b2256.html http://archive.soccerage.com/s/de/09/b2249.html http://archive.soccerage.com/s/de/09/b2245.html http://archive.soccerage.com/s/de/09/b2246.html http://archive.soccerage.com/s/de/09/b2237.html http://archive.soccerage.com/s/de/09/b2207.html http://genforum.genealogy.com/cgi-genforum/forums/wickham.cgi?296 http://ftpsearch.belnet.be/packages/CPAN/authors/id/N/NE/NEDKONZ/?S=A http://www.cheatscape.com/amiga/a/game53cindex_1.htm http://www.best.com/~radko/lounge/messages/3572.html http://www.best.com/~radko/lounge/messages/3542.html http://www.best.com/~radko/lounge/messages/3563.html http://www.best.com/~radko/lounge/messages/3502.html http://www.best.com/~radko/lounge/messages/3431.html http://user.tninet.se/~lrg243i/leo2.htm http://www.pocketbible.co.kr/new/hebrews/hebrews07/hebrews7-5.htm http://www.pocketbible.co.kr/new/hebrews/hebrews07/hebrews7-10.htm http://members.tripod.co.jp/sugart/?D=A http://www.linux.com/networking/network/industry/growth/new/server/ http://kdecvs.stud.fh-heilbronn.de/cvsweb/kdegames/kspaceduel/sprites/?hideattic=0&sortby=log http://karate.list.ru/catalog/10621.html http://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,hilfe,individualverkehr,kultur,mix,nuernberg,sense,software,verkehr)/_fort/html/themen/aktuell/verkehr.htm http://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,hilfe,individualverkehr,kultur,mix,nuernberg,sense,software,verkehr)/_fort/html/themen/aktuell/fahrzeug/fahrzeug.htm http://www.digitaldrucke.de/(aktuell,arbeitsvermittlung,computer,creaccess,hilfe,individualverkehr,kultur,mix,nuernberg,schnellübersicht,sense,software,verkehr,von)/_fort/html/themen/hilfe/getall.htm http://polygraph.ircache.net:8181/http_-2www.infolane.com/http_-2www.neosoft.com/~nitemoon/technical/http_-2www2.davidweekleyhomes.com/advancedproj.html http://wow-online.vhm.de/Regional/Sri_Lanka/Nachrichten.html http://www.bell.bellnet.com/suchen/sport/rodeo.html http://netway.pda.tucows.com/palm/adnload/67796_21902.html http://netway.pda.tucows.com/palm/preview/48544.html http://netway.pda.tucows.com/palm/adnload/139037_47478.html http://netway.pda.tucows.com/palm/adnload/73256_21914.html http://netway.pda.tucows.com/palm/adnload/71930_21910.html http://netway.pda.tucows.com/palm/adnload/136499_47294.html http://netway.pda.tucows.com/palm/adnload/77938_21926.html http://wap.jamba.de/KNet/_KNet-g_v8j1-4Fd-13aaq/browse.de/node.0/cde7f2elw http://www.oreilly.com/medical/autism/news/research.html http://www.geocities.co.jp/HeartLand-Namiki/5523/kopen.html http://br-online.de/wissenschaft/wimfs/tm/tm9611/tt9611ol.htm http://retailer.gocollect.com/do/session/1912709/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/preorder.asp http://rac.co.kr/www.avm.de/ http://rac.co.kr/www.aztech.com.sg/ http://rac.co.kr/www.simple.com.au/drivers.htm http://www.egroups.com/messages/Wrestlings2ndComing/263 http://mediate.magicbutton.net/do/session/625584/vsid/3342/tid/3342/cid/88020/mid/2008/rid/2313/chid/2648/url/http://www1.getmapping.com/index.cfm http://ben.aspads.net/ex/c/643/874990125 http://www.hri.org/docs//statedep/1998/98-05-26.std.html http://member1.shangdu.net/home2/longing/byzs/036.htm http://web.tiscalinet.it/informacitta/n2Maggio2000/n2Maggio2000/Pagine/P16.htm http://www.eveclub.com/cgi-bin/eveclub.front/972959455723/Catalog/11000155 http://www.eveclub.com/cgi-bin/eveclub.front/972959455723/Basket/View/1000038 http://student.monterey.edu/sz/troxellphillipju/campus/ http://readers.thevines.com/leaf/AA0000401329/45///&act=24-1-11&bref=1601 http://caller-times.com/1999/september/30/today/business/750.html http://www.online.kokusai.co.jp/Mmf_corner/V0043482/mmf_corner/mmf_corner/url http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=27,33,21,19,32 http://jupiter.u-3mrs.fr/~msc41www/GRATXT/PD6483.HTM http://webtools.familyeducation.com/whatworks/item/front/0,2551,1-9696-7765-539-51377,00.html http://parallel.fh-bielefeld.de/ti/vorlesung/sp/jdk_doc/java/text/class-use/FieldPosition.html http://cinemabilia.de/details/katnr/239509/ http://ftp.sunet.se/pub/FreeBSD/FreeBSD-current/ports/games/xgolgo/pkg-comment http://yp.gates96.com/13/2/50/12.html http://yp.gates96.com/13/2/50/68.html http://yp.gates96.com/13/2/52/56.html http://yp.gates96.com/13/2/53/71.html http://yp.gates96.com/13/2/54/13.html http://yp.gates96.com/13/2/54/21.html http://yp.gates96.com/13/2/54/43.html http://yp.gates96.com/13/2/54/52.html http://yp.gates96.com/13/2/54/94.html http://yp.gates96.com/13/2/55/25.html http://yp.gates96.com/13/2/55/57.html http://yp.gates96.com/13/2/56/95.html http://yp.gates96.com/13/2/57/24.html http://yp.gates96.com/13/2/57/34.html http://yp.gates96.com/13/2/57/35.html http://yp.gates96.com/13/2/57/64.html http://yp.gates96.com/13/2/58/92.html http://yp.gates96.com/13/2/59/2.html http://yp.gates96.com/13/2/59/31.html http://www.outpersonals.com/cgi-bin/w3com/pws/out/RLhI7rcI1D4JxQFT7-3mEP5SJK8AVzq_FCHTmPD4oB4tzM54LVISOGr6gaW80TieiLj3vEEhfqMBuYuDKIQXk3pROAhdckz6dDnbPsi72aC9ZSsK2o3j3J8YlLpw-uOtcBIEsA4ZZATUNj1D6atp66I4 http://www.dulux.co.uk/UKRETAIL:1938649915:DFinity.1QJiP4jRabmkmb http://www.dulux.co.uk/UKRETAIL:1938649915:DFinity.1QJiP4jMomdoclfieh http://www.egroups.com/messages/raite-dvd/1442 http://www3.newstimes.com/archive2000/jun28/bzd.htm http://yp.gates96.com/2/75/20/35.html http://yp.gates96.com/2/75/20/42.html http://yp.gates96.com/2/75/20/48.html http://yp.gates96.com/2/75/21/28.html http://yp.gates96.com/2/75/21/88.html http://yp.gates96.com/2/75/21/91.html http://yp.gates96.com/2/75/21/93.html http://yp.gates96.com/2/75/21/96.html http://yp.gates96.com/2/75/22/23.html http://yp.gates96.com/2/75/23/50.html http://yp.gates96.com/2/75/24/13.html http://yp.gates96.com/2/75/24/47.html http://yp.gates96.com/2/75/24/90.html http://yp.gates96.com/2/75/25/33.html http://yp.gates96.com/2/75/25/46.html http://yp.gates96.com/2/75/25/84.html http://yp.gates96.com/2/75/26/37.html http://yp.gates96.com/2/75/26/40.html http://yp.gates96.com/2/75/27/30.html http://yp.gates96.com/2/75/27/66.html http://yp.gates96.com/2/75/27/81.html http://yp.gates96.com/2/75/28/34.html http://yp.gates96.com/2/75/28/55.html http://yp.gates96.com/2/75/29/12.html http://yp.gates96.com/2/75/29/19.html http://yp.gates96.com/2/75/29/45.html http://yp.gates96.com/2/75/29/56.html http://yp.gates96.com/2/75/29/86.html http://yp.gates96.com/2/75/29/99.html http://cn.egroups.com/message/agribusiness1/31 http://biblio.cesga.es:81/search*gag/jLugo+(Provincia).+Mapas+topográficos.+[1890%3F]/jlugo+provincia+mapas+topograficos+1890/31,-1,0,B/browse http://bbs.lineone.net/news/uknews/msg01030.html http://bbs.lineone.net/news/uknews/msg01047.html http://bbs.lineone.net/news/uknews/msg01026.html http://bbs.lineone.net/news/uknews/msg00976.html http://bbs.lineone.net/news/uknews/msg00960.html http://bbs.lineone.net/news/uknews/msg00952.html http://idl.tucows.com/winnt/adnload/1380_28802.html http://retailer.gocollect.com/do/session/1912681/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/christmas/holiday_shoppe.asp http://www1.zdnet.co.uk/software/fstore/A/9/000BA9.html http://polygraph.ircache.net:8181/home/http_-2www.tauchbali.com/SERV.HTM http://channel.nytimes.com/1998/05/01/technology/cybertimes/artsatlarge/ http://ftp.sunet.se/pub/FreeBSD/ports/ports/japanese/linux-netscape47-communicator/?D=A http://www9.hmv.co.uk:5555/do/session/1347757/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/hiddenframe.html http://www9.hmv.co.uk:5555/do/session/1347757/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/logoframe.html http://www-usa9.cricket.org/link_to_database/ARCHIVE/1999-2000/WI_IN_NZ/ARTICLES/ http://www-usa9.cricket.org/link_to_database/ARCHIVE/1999-2000/WI_IN_NZ/SCORECARDS/ http://a228.g.akamai.net/7/228/289/55d96730f1ea56/news.indiainfo.com/2000/08/13/floods.html http://caller-times.com/1999/august/08/today/texas_me/4241.html http://ftp.uni-bremen.de/pub/doc/news.answers/movies/winona-ryder-faq/part3 http://www.globalsources.com/gsol/owa/website.gold/GP3/8801728414/HOME.HTM http://eds.kse.or.kr/jaemoo/jipyo_e/k_grp/E01683.htm http://eds.kse.or.kr/jaemoo/jipyo_e/i_grp/E01116.htm http://eds.kse.or.kr/jaemoo/jipyo_e/i_grp/E01126.htm http://eds.kse.or.kr/jaemoo/jipyo_e/d_grp/E00366.htm http://eds.kse.or.kr/jaemoo/jipyo_e/h_grp/E00929.htm http://www.jobvillage.com/channel/jobs/cleaning/pruner/g.1276.html http://www.affiliate.hpstore.hp.co.uk/do/session/380817/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp http://gamingplace.zeelandnet.nl/poker_rating.html http://no.egroups.com/message/DVD-Info/111 http://www.relax.ch/static/it/lazurigo/mercatodellavoro/oben.html http://internet.exit.de/mees-online/left_geld.html http://www.redrocksports.com/sports/webSession/shopper/RR972959658-31049/store/dept-5/department/dept-5/item/footwear http://www.redrocksports.com/sports/webSession/shopper/RR972959658-31049/store/dept-5/department/dept-5/item/52550 http://www11.cplaza.ne.jp/babyweb/bbs/bdnmp01/no16/61N.html http://www.daimi.au.dk/dIntProg/java/jdk1.2.2/docs/api/javax/swing/plaf/basic/BasicScrollBarUI.ArrowButtonListener.html http://www.daimi.au.dk/dIntProg/java/jdk1.2.2/docs/api/javax/swing/plaf/basic/BasicScrollBarUI.ModelListener.html http://www.angelfire.com/nc/Percosolation/POSDerisions.html http://yp.gates96.com/3/4/40/80.html http://yp.gates96.com/3/4/41/23.html http://yp.gates96.com/3/4/41/24.html http://yp.gates96.com/3/4/41/37.html http://yp.gates96.com/3/4/41/90.html http://yp.gates96.com/3/4/42/26.html http://yp.gates96.com/3/4/42/71.html http://yp.gates96.com/3/4/42/90.html http://yp.gates96.com/3/4/44/44.html http://yp.gates96.com/3/4/45/52.html http://yp.gates96.com/3/4/45/75.html http://yp.gates96.com/3/4/45/77.html http://yp.gates96.com/3/4/46/0.html http://yp.gates96.com/3/4/46/85.html http://yp.gates96.com/3/4/47/19.html http://yp.gates96.com/3/4/47/20.html http://yp.gates96.com/3/4/47/23.html http://yp.gates96.com/3/4/47/72.html http://yp.gates96.com/3/4/48/4.html http://yp.gates96.com/3/4/48/16.html http://yp.gates96.com/3/4/48/45.html http://yp.gates96.com/3/4/48/51.html http://yp.gates96.com/3/4/49/16.html http://ftpsearch.belnet.be/pub/mirror/sunsite.cnlab-switch.ch/mirror/harvest/contrib/Example-Customizations/?S=A http://pub9.ezboard.com/fgaprforeignrelationdepartment.showAddTopicScreenFromWeb http://pub9.ezboard.com/fgaprforeignrelationdepartment.showMessage?topicID=4.topic http://www.asstr.org/nifty/gay/authoritarian/adonis-brotherhood/adonis-brotherhood-3 http://www.brio.de/BRIO.catalog/39fe2f4c06d41844273fd472aa7806a9/UserTemplate/8 http://itcareers.careercast.com/texis/it/itjs/+HwwBmeH_D86aqwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew6nxqdDdMoqax15oDn55a5BwhhawDwcO5o5aqd5Ban5BoMwBoDtaGo5Aa5nGVoqnaADdicnmtnaBddc5aMFqhTfR20DzmenxwwwpBmeWWD86exhwww5rmeWcwwwBrmeZpwww/jobpage.html http://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.updowntowner.org/julyjamm/frmain.htm http://213.36.119.69/do/session/152987/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/spectacles/ http://www.jobvillage.com/channel/jobs/health_care/physician/anesthesiologist/b.9467.g.1575.html http://www.private-immobilien-boerse.de/friesland/verkauf/IIM-Teil/Startseite/Gemeinsam/Super-Zins-Konditionen/Gemeinsam/Inserieren/Gemeinsam/MarketingStrategie/inhalt.htm http://se.egroups.com/message/yemdiscussion/38 http://se.egroups.com/message/yemdiscussion/45 http://home.bip.net/kerstin.hjelm/Stamtavla%20Z-kullen.html http://mediate.magicbutton.net/do/session/625616/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-abou.html http://members.tripod.lycos.co.kr/KWEN3607/?S=A http://cpan.clix.pt/authors/id/B/BP/BPOWERS/String-StringLib-1.02.readme http://www.gbnf.com/genealogy/bookout/html/d0001/I3283.HTM http://m4.findmail.com/group/Opera2Developers http://m4.findmail.com/group/acctworks http://retailer.gocollect.com/do/session/1912690/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1 http://retailer.gocollect.com/do/session/1912690/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp http://platsbanken.amv.se/kap/text/47/001023,170030,140912,11,1276051947.shtml http://www.gamespot.com/features/dunesg/dune6a.html http://tucows.iquest.net/winme/preview/138053.html http://tucows.iquest.net/winme/preview/137529.html http://tucows.iquest.net/winme/preview/138641.html http://archive.soccerage.com/s/pt/09/03721.html http://archive.soccerage.com/s/pt/09/07102.html http://www10.nytimes.com/library/national/science/health/021500hth-women-diabetes.html http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.phy.bnl.gov/e949/e949_update.txt http://www.mapion.co.jp/custom/AOL/admi/13/13105/otsuka/3chome/index-7.html http://go18.163.com/_NTES/~starseeker/gin/saga/gin01/gin0100.htm http://village.infoweb.ne.jp/~fvgg8450/t91.html http://clickahouse.mp2.homes.com/content/articles/locks.html http://findmail.com/messages/studentdoctor/354 http://ldp.mirror.nettuno.it/Linux/LDP/LDP/lkmpg/node3.html http://ldp.mirror.nettuno.it/Linux/LDP/LDP/lkmpg/node13.html http://fi.egroups.com/group/sandycove http://www.fogdog.com/cedroID/ssd3040183219992/boutique/nike/ http://www.fogdog.com/cedroID/ssd3040183219992/boutique/harbinger/ http://www.fogdog.com/cedroID/ssd3040183219992/customer_service/employment.html http://www.genoma.de/shop/736a8b4b4c331e80f780899842a4b0b4/99/b http://sjsulib1.sjsu.edu:81/search/tbraille+transcription+project+of+santa+clara+county+inc/-5,-1,1,B/frameset&tbook+reviews+in+the+humanities&1,1, http://students.washington.edu/emgall/eng481/final/ http://www.vc-graz.ac.at/ilct/ffe_349_99.htm http://www.vc-graz.ac.at/ilct/ffe_372_00.htm http://www.vc-graz.ac.at/ilct/ffe_375_00.htm http://www.escribe.com/computing/virtcom/m452.html http://members.tripod.com/~TreasureIsland/welcom/e.htm http://augustachronicle.com/stories/022699/obi_038-5494.001.shtml http://augustachronicle.com/stories/022699/obi_038-5477.001.shtml http://ring.edogawa-u.ac.jp/archives/X/opengroup/R6.5.1/xc/lib/Imakefile http://www.elop.de/d0-1015-2044-3001-top.html http://www.ibiblio.org/pub/languages/java/blackdown.org/JDK-1.1.7/i386/glibc/v1a/?S=D http://www.linux.com/networking/network/enterprise/integration/management/Linux/ http://www.mapion.co.jp/custom/AOL/admi/13/13221/matsuyama/2chome/index-7.html http://www.mapion.co.jp/custom/AOL/admi/13/13221/matsuyama/2chome/index-12.html http://ftp.sunet.se/pub/FreeBSD/ports/ports/japanese/tcl76/Makefile http://ftp.lip6.fr/pub2/sgml-tools/website/HOWTO/Consultants-HOWTO/t19977.html http://www.irishnews.com/archive2000/06072000/sportuk1.html http://allmacintosh.ii.net/adnload/71893.html http://allmacintosh.ii.net/adnload/70339.html http://www.museumshops.co.uk/Bonnefoit-Alain/Bonnefoit-Alain-Die-Schoene-mit-dem-Pelz-3000062.html http://www.timesoc.com/editions/orange/20001030/t000103758.html http://www.musiciansfriend.com/ex/ds/bv/001030182803064208037039434033 http://www.beneteau-owners.com/library.nsf/Library+By+System!OpenView&Start=41.4&Count=45&Expand=49 http://www.musiciansfriend.com/ex/search/guitar/001030182759064208037059215342?FIND=BABX&q=c http://www.musiciansfriend.com/ex/search/guitar/001030182759064208037059215342?FIND=ASAX&q=c http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/showNextUnseen/fol/100001/2467632 http://tucows.wish.net/winme/adnload/137243_28721.html http://yp.gates96.com/3/71/10/71.html http://yp.gates96.com/3/71/11/12.html http://yp.gates96.com/3/71/11/27.html http://yp.gates96.com/3/71/11/34.html http://yp.gates96.com/3/71/11/40.html http://yp.gates96.com/3/71/11/62.html http://yp.gates96.com/3/71/11/78.html http://yp.gates96.com/3/71/12/70.html http://yp.gates96.com/3/71/13/34.html http://yp.gates96.com/3/71/13/38.html http://yp.gates96.com/3/71/13/82.html http://yp.gates96.com/3/71/14/94.html http://yp.gates96.com/3/71/15/0.html http://yp.gates96.com/3/71/15/88.html http://yp.gates96.com/3/71/17/28.html http://yp.gates96.com/3/71/17/85.html http://yp.gates96.com/3/71/18/37.html http://yp.gates96.com/3/71/18/69.html http://yp.gates96.com/3/71/19/55.html http://www.kodak.ca/US/en/corp/jobs/samplingMechanicalProds.shtml http://ring.crl.go.jp/archives/lang/perl/CPAN/authors/id/G/GR/GRICHTER/HTML-Embperl-1.3b4.readme http://www7.freeweb.ne.jp/photo/lystra/a/n_aikawa.html http://www.imagesofengland.org.uk/31/73/317339.htm http://webraft.its.unimelb.edu.au/110080/students/ojb/pub/?D=A http://pub.chinaccm.com/13/news/200010/31/155751.asp http://pub.chinaccm.com/13/news/200010/21/162140.asp http://go18.163.com/_NTES/~chen0580/y25.htm http://pub17.ezboard.com/fcometalkfreetalk.showMessage?topicID=15.topic http://pub17.ezboard.com/fcometalkfreetalk.showMessage?topicID=6.topic http://mediate.magicbutton.net/do/session/625593/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-tips.html http://213.36.119.69/do/session/152982/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/wap/lancement.html http://wap.jamba.de/KNet/_KNet-Drs8j1-yEd-1395x/showInfo-presse.de/node.0/cde7f1uou http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=choramingar&l=pt http://www.amcity.com/philadelphia/stories/1998/11/09/story5.html?t=email_story http://www.mic.hr/PGMARKET:553666 http://cn.egroups.com/messages/KristinChenoweth/2280 http://quest7.proteome.com/databases/YPD/PombePD/SPAC343.03.html http://www.engines.org.uk/white/fld19/ http://www.engines.org.uk/white/fld27/ http://se.egroups.com/subscribe/plusgothswap http://www.headlight.com/invoice_process/1,1074,adpa-4049-2423-69-718,00.html http://www.findarticles.com/cf_0/m4PRN/1999_Nov_3/57153314/p1/article.jhtml http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/folderFrame/100001/0/alpha/2480022 http://archive.soccerage.com/s/it/06/10903.html http://innopac.lib.tsinghua.edu.cn/search*chi/dProduction+engineering/dproduction+engineering/-5,-1,0,B/browse http://www.consource.com/communities/profile_categories/1759/1510 http://column.daum.net/Column-bin/Bbs.cgi/thinkaboutrbs/new/zka/B2-kB2Np http://wwws.br-online.de/geld/boerse/960301/0730.html http://www.2pl.com/asp/tools/fili1.asp?sp=ro&fi=pppp0003zi http://www.proviser.co.uk/regional/towns/alford/property_prices/compare_current_prices/terraced.html http://cometweb01.comet.co.uk/do!session=131998&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsm0utt0cZX5qkXLjbzKMfaLblpLbom0bos0bom04M4Lbom0miXLvboLp1 http://cometweb01.comet.co.uk/do!session=131998&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsm0uqo0cZX5qkXLjbzKG3pLibo0miX5mqlLmpbKomb0osb0oml1odXLkfpLbopL http://www.geocities.co.jp/Milano/8578/profile.html http://ftp.dti.ad.jp/pub/XFree86/3.3.3/binaries/NetBSD-1.2/Servers/?N=D http://ftp.dti.ad.jp/pub/XFree86/3.3.3/binaries/NetBSD-1.2/Servers/?D=A http://www.best.com/~radko/lounge/messages/3742.html http://www.best.com/~radko/lounge/messages/3711.html http://www.best.com/~radko/lounge/messages/3619.html http://www.linux.com/networking/network/help/email/business/RuleSpace/ http://www.financialexpress.com/fe/daily/20000918/fco17026.html http://209.67.27.70/comics/dilbert/scott/dawn/pg19.html http://209.67.27.70/comics/dilbert/scott/dawn/pg22.html http://flamingo.promote.ru/href.pl?fct_051 http://pda.saa.net/palm/adnload/34404_22152.html http://www.outpersonals.com/cgi-bin/w3com/pws/out/q6tIzhLNlKeaaMXYVAPJiOq7V33Ul08VcQoPAomjWMQzOxA0cR6_kRLx42D4nA_uumPVc2DRZtv6CVpWQCyNUgVZQ2P9F7bqqvcf_5WqCdUM7UIRKBdjb9lTbrCrrl5_jZ6cQsstJDqry3XrFI0toILqSCSm66j2 http://www.home.ch/~spaw9012/ps11/ps11_003.htm http://help.sap.com/saphelp_45b/helpdata/de/1c/e464b20437d1118b3f0060b03ca329/frameset.htm http://abc.ru/cgi-bin/get_firminfo.pl?firm=comsys http://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1749-art-28.html http://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1749-art-32.html http://admin.afiliando.com/do/session/189435/vsid/1507/tid/1507/cid/23455/mid/1025/rid/1168/chid/1205/parser/yes/imref/eqqLmwlGltt5tkpHrYjLXofLklkKZljLkju5lZa5l0/url/http://www.submarino.com.mx/pesquisa/jutherC.asp?id_categoria=57&id_tipo=C http://admin.afiliando.com/do/session/189435/vsid/1507/tid/1507/cid/23455/mid/1025/rid/1168/chid/1205/parser/yes/imref/eqqLmwlGltt5tkpHrYjLXofLklkKZljLkju5lZa5l0/url/http://www.submarino.com.mx/extra/talk_to_sub.asp http://cometweb01.comet.co.uk/do!session=131998&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsn0mvm0cZX5qkXLjbzKGelLkbpL http://yp.gates96.com/3/39/30/1.html http://yp.gates96.com/3/39/30/53.html http://yp.gates96.com/3/39/31/22.html http://yp.gates96.com/3/39/32/0.html http://yp.gates96.com/3/39/32/39.html http://yp.gates96.com/3/39/32/41.html http://yp.gates96.com/3/39/32/45.html http://yp.gates96.com/3/39/32/97.html http://yp.gates96.com/3/39/34/39.html http://yp.gates96.com/3/39/34/50.html http://yp.gates96.com/3/39/34/68.html http://yp.gates96.com/3/39/34/72.html http://yp.gates96.com/3/39/35/14.html http://yp.gates96.com/3/39/35/84.html http://yp.gates96.com/3/39/36/3.html http://yp.gates96.com/3/39/36/19.html http://yp.gates96.com/3/39/36/20.html http://yp.gates96.com/3/39/36/84.html http://yp.gates96.com/3/39/36/88.html http://yp.gates96.com/3/39/37/37.html http://yp.gates96.com/3/39/38/60.html http://yp.gates96.com/3/39/38/63.html http://yp.gates96.com/3/39/39/52.html http://yp.gates96.com/3/39/39/56.html http://yp.gates96.com/3/39/39/58.html http://yp.gates96.com/3/39/39/63.html http://yp.gates96.com/13/9/80/14.html http://yp.gates96.com/13/9/80/92.html http://yp.gates96.com/13/9/81/23.html http://yp.gates96.com/13/9/81/47.html http://yp.gates96.com/13/9/82/45.html http://yp.gates96.com/13/9/82/59.html http://yp.gates96.com/13/9/82/65.html http://yp.gates96.com/13/9/82/71.html http://yp.gates96.com/13/9/82/77.html http://yp.gates96.com/13/9/83/86.html http://yp.gates96.com/13/9/83/88.html http://yp.gates96.com/13/9/84/4.html http://yp.gates96.com/13/9/84/28.html http://yp.gates96.com/13/9/84/77.html http://yp.gates96.com/13/9/85/34.html http://yp.gates96.com/13/9/85/59.html http://yp.gates96.com/13/9/86/22.html http://yp.gates96.com/13/9/86/28.html http://yp.gates96.com/13/9/86/30.html http://yp.gates96.com/13/9/86/37.html http://yp.gates96.com/13/9/86/85.html http://yp.gates96.com/13/9/87/1.html http://yp.gates96.com/13/9/87/2.html http://yp.gates96.com/13/9/88/58.html http://yp.gates96.com/13/9/89/17.html http://yp.gates96.com/13/9/89/49.html http://yp.gates96.com/13/9/89/51.html http://yp.gates96.com/13/9/89/64.html http://yp.gates96.com/13/9/89/69.html http://yp.gates96.com/13/9/89/79.html http://www.diogenes.ch/4DACTION/web_rd_aut_frlist_az/ID=483337&chr=D http://ngi.tucows.com/win2k/adnload/37473_28857.html http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=1,4,21,7,17 http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=2,4,21,7,17 http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=15,4,21,7,17 http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=16,4,21,7,17 http://www.susi.de/cgi-bin/order/segelzentrum-kagerer/c134-5021905270003,de http://www.egroups.com/messages/iraq-l/9973 http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=29,24,30,11 http://www.etoys.com/prod/book/51604361 http://link.fastpartner.com/do/session/600358/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/itjobbank.php http://link.fastpartner.com/do/session/600358/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/shopnett.php http://mirror.nucba.ac.jp/mirror/FreeBSD/branches/2.2-stable/ports/devel/mips64orion-rtems-objc/?S=A http://www-uk5.cricket.org/link_to_database/NATIONAL/ENG/FC_TEAMS/SOMERSET/STATS/CAREER/SOMERSET_CAREER_J.html http://www.linux.com/networking/network/performance/install/distro/industry/ http://www.linux.com/networking/network/performance/install/distro/tools/ http://www.linux.com/networking/network/performance/install/distro/enterprise/ http://mx.php.net/manual/de/language.basic-syntax.php http://mx.php.net/manual/fr/language.basic-syntax.php http://moviestore.zap2it.com/browse/MOVIES/SCRIPT/s.UxBwM3db http://www.armouries.org.uk/bjarni/introduction.htm http://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/C/CT/CTWETEN/?D=A http://atlanta.webmd.com/related_results/1/25/article/1738.50204 http://www.ccnet.com/tzimmer/?M=A http://go2.163.com/~xinhua/ http://www.ualberta.ca/FTP/OpenBSD/src/regress/lib/libc/_setjmp/CVS/Root http://www.dqt.com.cn/wymb/military/jinyong/金庸全集.htm http://www.hole.kommune.no/hole/journweb.nsf/7e180336094ef23a412568cd004a5093/2fd09f96f20814cac12568e300443d50!Navigate&To=Next http://classifieds.alberta.com/js/mi/c16000/b16000/n15/858640.html http://classifieds.alberta.com/js/mi/c16000/b16000/n15/861013.html http://homepages.go.com/homepages/b/n/g/bngholo/ http://www.aelita.net/products/news/library/support/Reg/Subscribe/library/default.htm http://www.chaos.dk/sexriddle/j/a/b/s/e/ http://www.chaos.dk/sexriddle/j/a/b/s/t/ http://213.36.119.69/do/session/152985/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/contact/info-publicite.html http://www.indian-express.com/fe/daily/19990807/corporate.html http://web.cln.com/archives/atlanta/newsstand/atl100795/1316.htm http://web.cln.com/archives/atlanta/newsstand/atl100795/1317.htm http://plaza.gaiax.com/www/plaza/k/n/kenta/friends.html http://polygraph.ircache.net:8181/docs/eudora/http_-2www.kentuckylake.com/rates/http_-2www.hubbell-wiring.com/NEMA/admin/additional.html http://gd.cnread.net/cnread1/wxxs/d/dongfangying/pljc/015.htm http://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/versicherungen/unfall/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/versicherungen/gebaeude/anforderungsformular.htm http://www.linux.com/networking/network/help/free/red_hat/competition/ http://www.linux.com/networking/network/help/free/red_hat/development/ http://www.linux.com/networking/network/help/free/red_hat/SuSE/ http://search.chollian.net/d/%b1%e2%be%f7,%c8%b8%bb%e7/%b0%e1%c8%a5/%c5%e4%c5%bb%bf%fe%b5%f9%bc%ad%ba%f1%bd%ba/16.html http://no.egroups.com/message/plowshares/840 http://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1872-art-13.html http://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/erreichenPartner/Startseite/Gemeinsam/versicherungen/lebensversicherung/Top-Darlehens-Konditionen/Gemeinsam/versicherungen/unfall/anforderungsformular.htm http://www.affiliate.hpstore.hp.co.uk/do/session/380819/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/main/respect/ http://www-rn.informatik.uni-bremen.de/home/ftp/pub/linux/redhat/updates/6.2EE/i586/ http://archive.soccerage.com/s/es/09/12718.html http://www.intel.es/kr/hangul/pressroom/archive/releases/dp990218.htm http://www.intel.es/kr/hangul/pressroom/archive/releases/dp990105.htm http://sunsite.informatik.rwth-aachen.de/cgi-bin/ftp/ftpshow/pub/Linux/sunsite.unc.edu/distributions/caldera/eServer/updates/2.3/021/RPMS/ http://library.bangor.ac.uk/search/aMatis,+James+H/amatis+james+h/-5,-1,0,B/browse http://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/html/http_-2www.sharkyextreme.com/hardware/hercules_tnt/ http://ring.nihon-u.ac.jp/archives/pack/win95/net/fee/?N=D http://dbc.copystar.com.tw/bcbchat/199804/msg03730.htm http://dbc.copystar.com.tw/bcbchat/199804/msg03761.htm http://dbc.copystar.com.tw/bcbchat/199804/msg03787.htm http://www.private-immobilien-boerse.de/nordrhein-Westfalen/grevenbroich/Verkauf/Gemeinsam/Super-Zins-Konditionen/Exklusiv-IB/Startseite/IIM-Teil/Startseite/Gemeinsam/IIMMitglieder.htm http://www.private-immobilien-boerse.de/nordrhein-Westfalen/grevenbroich/Verkauf/Gemeinsam/Super-Zins-Konditionen/Exklusiv-IB/Startseite/IIM-Teil/Startseite/Gemeinsam/vertriebspartner.htm http://pd.shiseido.co.jp/s9604tub/html_00/win00051.htm http://solaris.license.virginia.edu/os_product_patches/patches/5.7/107094-04/SUNWdtbas/pkgmap http://www.eveclub.com/cgi-bin/eveclub.front/972959470432/Catalog/11000034 http://www.sportinggreen.com/news/20001007/fbo/fbc/aar/001007.0607.html http://www-x500-1.uni-giessen.de:8890/Lcn%3dBelloch%20Belloch%5c,%20Juana%20Maria,ou%3dFacultad%20de%20Medicina%20y%20Odontologia,o%3dUniversidad%20de%20Valencia,c%3dES http://retailer.gocollect.com/do/session/1912723/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/limited_editions.asp http://www.jufo.com/netcenter/chemistry/item/000904/16888.htm http://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d29/b14,8,1f,1d,1d,,19,,1f,19, http://www.2pl.com/b/ru/to/1/24/16/v2/1241600107-8.htm http://ring.htcn.ne.jp/pub/text/CTAN/fonts/metrics/polish/plpsfont/?D=A http://config.tucows.com/winme/adnload/26398_28890.html http://ocean.ntou.edu.tw/search*chi/aRadojcic,+Riko,+jt.+auth./aradojcic+riko/-5,-1,0,B/frameset&F=aradomsky+nellie+a&1,1 http://www.intellicast.com/Sail/World/UnitedStates/Northwest/Montana/Beaverhead/LocalWinds/d1_09/ http://www.bild.de/service/archiv/2000/mar/31/sport/coulthard/coulthard.html http://ustlib.ust.hk/search*chi/a%7B215a36%7D%7B213246%7D%7B215e42%7D+1926/a{215a36}{213246}{215e42}+1926/-5,-1,0,B/frameset&F=a{215a36}{213230}{214e70}&1,1 http://mediate.magicbutton.net/do/session/625620/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html http://mediate.magicbutton.net/do/session/625620/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-corp.html http://www.amateurplatinum.com/mouthlicking/eunuchhershey-highway/bad-girlsubmission/petitebeauties/actionno-boundaries/fellatiogoing-down-on/give-headcock-suckers.html http://www.brd.net/brd-cgi/brd_dkameras/filmscanner_fotodrucker/FZ00F0EF/beurteilung/ci=972751646.htm http://www.niwl.se/WAIS/31607/31607073.htm http://www.magicvillage.de/Login/magicvillage/magiclife/Lucullus/%2328706045/Reply http://polygraph.ircache.net:8181/consumer/rel_meet_main.html http://sunsite.informatik.rwth-aachen.de/cgi-bin/ftp/ftpshow/pub/Linux/sunsite.unc.edu/distributions/debian/dists/potato/non-free/binary-i386/x11/ http://www.great-cyber-mall.com/SelectCompany.asp?CityID=67&CatID=5 http://www.great-cyber-mall.com/SelectCompany.asp?CityID=67&CatID=50 http://rainforest.parentsplace.com/dialog/get/bradley2/39/1/1.html?embed=2 http://www.users.yun.co.jp/cgi-bin/moriq/pigeon/pigeon.cgi/DataSet.after_post?c=e http://www.chaos.dk/sexriddle/n/f/p/x/x/ http://www.amcity.com/dayton/stories/2000/03/20/smallb1.html?t=email_story http://www.linux.com/networking/network/industry/web_server/windows_nt/Red_Hat/ http://www.du-et.net/cgi/mail.cgi?NickName=naiki http://gameboyz.com/g/demos_p1_c41_lV_w2.html http://intelinfo.subportal.com/sn/Games/Strategy_Games/9289.html http://home.kimo.com.tw/maso-kid/index2.html http://citeseer.nj.nec.com/nrelated/1377121/289677 http://citeseer.nj.nec.com/nrelated/0/289677 http://ccar.ust.hk/~dataop/rs_ocean_cd/WVS/wvsplus/wvs003m/bat/q/h/lf/ http://home.baoding.cn.net/~tjhlove/dzrwy/l11.htm http://home.baoding.cn.net/~tjhlove/dzrwy/l23.htm http://208.178.109.85/msgshow.cfm/msgboard=129014524422386&msg=3558983275052&page=1&idDispSub=-1 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=4,9,33,27,35 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=29,9,33,27,35 http://config.tucows.com/win2k/adnload/76944_30007.html http://www1.zdnet.com/zdnn/stories/news/0,4586,1021147,00.html http://www.fogdog.com/cedroID/ssd3040183236187/nav/stores/snowboarding/ http://www.fogdog.com/cedroID/ssd3040183236187/nav/stores/institutional/ http://debian.linux.org.tw/debian/dists/sid/main/disks-powerpc/current/source/?M=A http://satftp.soest.hawaii.edu/dlr/slides/ql21176.html http://www.linux.com/networking/network/industry/new/help/internet/ http://www.linux.com/networking/network/industry/new/help/growth/ http://flint.freethemes.com/skins/winamp/preview/46994.html http://flint.freethemes.com/skins/winamp/preview/24628.html http://flint.freethemes.com/skins/winamp/preview/25113.html http://flint.freethemes.com/skins/winamp/preview/24645.html http://flint.freethemes.com/skins/winamp/preview/25319.html http://flint.freethemes.com/skins/winamp/preview/25017.html http://flint.freethemes.com/skins/winamp/preview/26154.html http://flint.freethemes.com/skins/winamp/preview/24669.html http://flint.freethemes.com/skins/winamp/preview/24674.html http://flint.freethemes.com/skins/winamp/preview/69522.html http://flint.freethemes.com/skins/winamp/preview/58805.html http://flint.freethemes.com/skins/winamp/preview/71909.html http://flint.freethemes.com/skins/winamp/preview/24389.html http://flint.freethemes.com/skins/winamp/preview/25052.html http://flint.freethemes.com/skins/winamp/preview/77185.html http://flint.freethemes.com/skins/winamp/preview/56733.html http://flint.freethemes.com/skins/winamp/preview/24736.html http://flint.freethemes.com/skins/winamp/preview/24408.html http://flint.freethemes.com/skins/winamp/preview/24744.html http://flint.freethemes.com/skins/winamp/preview/24424.html http://flint.freethemes.com/skins/winamp/preview/25075.html http://flint.freethemes.com/skins/winamp/preview/71807.html http://nomade.fr/cat/informatique_tele/informatique/progiciels_logiciel/utilitaires/communication http://pub9.ezboard.com/umetalman5566.showPublicProfile?language=EN http://archiv.leo.org/pub/comp/usenet/comp.binaries.atari.st/texinfo31/texif31b.zoo/ http://www.maas.ccr.it/cgi-win/hiweb.exe/a18/d13/b261,4,d,,be,d, http://citeseer.nj.nec.com/cidcontext/608466 http://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/strategia/kansainv%E4listyminen/ulkomaankauppa/kansainv%E4linen+kauppa/ http://cms.letsmusic.com/directory/search/albuminfo/1,1125,af0127818000000,00.asp http://www.musiciansfriend.com/ex/ds/other/001030182805064208037054818832 http://www.musiciansfriend.com/ex/search/other/001030182805064208037054818832?FIND=IBAX&q=c http://www.mapion.co.jp/custom/tv/admi/13/13106/kuramae/3chome/19/ http://dblab.comeng.chungnam.ac.kr/~dolphin//db/journals/ac/ac11.html http://archive.soccerage.com/s/de/09/c4816.html http://archive.soccerage.com/s/de/09/c4698.html http://archive.soccerage.com/s/de/09/c4664.html http://archive.soccerage.com/s/de/09/c4463.html http://archive.soccerage.com/s/de/09/c4423.html http://archive.soccerage.com/s/de/09/c4422.html http://workingfamilies.digitalcity.com/tampabay/penpals/browse.dci?cat=teens&sort=f http://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/Inserieren/Startseite/Gemeinsam/immolink/Top-Darlehens-Konditionen/Gemeinsam/versicherungen/unfall/anforderungsformular.htm http://www.samba.org/cgi-bin/cvsweb/gnokii/xgnokii/docs/help/en_US/windows/main/?sortby=log http://www.accesslasvegas.com/shared/health/adam/ency/article/002669sym.html http://www.egroups.com/message/gaywrestle/33 http://lfs.cyf-kr.edu.pl:8888/3Lcn%3dDirectory%20Manager,%20o%3dSPRITEL,%20c%3dES http://www.acfas.ca/congres/congres66/S10.htm http://hansard.www.act.gov.au/2000/week02/423.htm http://207.25.71.142/cycling/2000/tour_de_france/stages/4/ http://207.25.71.142/cycling/2000/tour_de_france/news/2000/07/20/pantani_reflects http://207.25.71.142/cycling/2000/tour_de_france/news/2000/07/19/driver_charged/ http://207.25.71.142/POLL/results/1142011.html http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=6,14,27,22 http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=29,14,27,22 http://www.affiliate.hpstore.hp.co.uk/do/session/380816/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/ http://www.affiliate.hpstore.hp.co.uk/do/session/380816/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/products/entry.asp http://ads.carltononline.com/accipiter/adclick/site=purejamba/area=jamba.home_page/AAMSZ=POPUP/ACC_RANDOM=972959547609 http://retailer.gocollect.com/do/session/1912714/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp http://208.178.101.41/news/1998/12/10newsd.html http://208.178.101.41/news/1998/03/05news.html http://208.178.101.41/news/1998/03/03news.html http://208.178.101.41/news/1998/01/09news.html http://hff.shunde.net/mobile/radio2000.163.net/radio2000.163.html http://hff.shunde.net/mobile/www.tohome.net/www.tohome.html http://www.egroups.com/login.cgi?login_target=%2Fmessages%2FShayrs%2F31 http://moviestore.zap2it.com/browse/MOVIES/BANK/s.bsk4qCBs http://moviestore.zap2it.com/browse/MOVIES/STATION/s.bsk4qCBs http://moviestore.zap2it.com/browse/MOVIES/VIDEO/s.bsk4qCBs http://ftp.fi.debian.org/debian/dists/unstable/contrib/source/x11/?N=D http://link.fastpartner.com/do/session/600364/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/jobs.htm http://pub16.ezboard.com/uprieni.showPublicProfile http://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-servers/XFree86-4-FontServer/ http://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-servers/XttXF98srv-NKVNEC/ http://www.generation-formation.fr/services/adrutils/GUIDES/CCI.HTM---o21zAo0UaWo0Ol9A074fo65iyfmKlze8SUeecTAseLvI5ehw7se7NeCfeZJPAPfVbNyqgBecVktePbBxehwwlezc9fAb0vyApuRtAhGqGdisSLdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbu.htm http://www.generation-formation.fr/services/adrutils/GUIDES/DRIRE.HTM---o21zAo0UaWo0Ol9A074fo65iyfmKlze8SUeecTAseLvI5ehw7se7NeCfeZJPAPfVbNyqgBecVktePbBxehwwlezc9fAb0vyApuRudNnJpo1XCjdRsR3djaPfdNjfcdRsR3djakUApvGdhcmdfbv.htm http://198.103.152.100/search*frc/aMayer,+Anita/amayer+anita/-5,-1,0,B/frameset&F=amaybank+j+e&1,1 http://198.103.152.100/search*frc/aMayer,+Anita/amayer+anita/-5,-1,0,B/2exact&F=amaycunich+ann&1,3 http://kobenhavn.icepage.se/hilfe/XFree86/3.9.18/DECtga2.html http://itcareers.careercast.com/texis/it/itjs/+YwwBmeJf5C6wwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyhw1Bdmn5AanLnq1BoVnawmMoDo5BGwBoVnazdxamnpwGBMnDBaGnpdGB5a5BdGnaqddGmoDwBnanMwoca5Aocc5aMFqoEuRZy0IQDzmeJqwwwpBmeBFZ86mwww5rmehpwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+cwwBmetKD86eMmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyhw1Bdmn5AanLnq1BoVnawmMoDo5BGwBoVnazdxamnpwGBMnDBaGnpdGB5a5BdGnaqddGmoDwBnanMwoca5Aocc5aMFqoEuRZy0IQDzmeJqwwwpBmeBFZ86mwww5rmeODwwwBrmeZpwww/morelike.html http://bbs.syu.ac.kr/NetBBS/Bbs.dll/scbbs008/rcm/zka/B2-kB27p/qqo/005A/qqatt/^ http://musicmabey.subportal.com/sn/Themes/Misc__Themes/ http://www.intel.it/eBusiness/pdf/prod/ia64/SAS_IA-64_Paper.pdf http://elflife.bigpanda.net/2866/io.html http://www.excelsior.com.mx/9609/960911/nac11.html http://www.allgemeine-immobilien-boerse.de/ungarn/verkauf/Private-IB/Ferien-IB/Startseite/Allgemeine-IB/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/indexbeginn.htm http://www.allgemeine-immobilien-boerse.de/ungarn/verkauf/Private-IB/Ferien-IB/Startseite/Allgemeine-IB/Gemeinsam/geschaeftsbedingungen.htm http://www.wingateinns.com/ctg/cgi-bin/Wingate/look_over/AAAksrACwAAACCPAAT http://my.netian.com/~rakyun/?N=D http://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/gebaeude/Gemeinsam/immolink/Top-Darlehens-Konditionen/Gemeinsam/Inserieren/Gemeinsam/suche.htm http://www.mirror.kiev.ua:8083/paper/2000/04/1251/text/04-07-5.htm http://ring.toyama-u.ac.jp/archives/NetBSD/packages/1.4.2/sun3/?N=D http://ring.toyama-u.ac.jp/archives/NetBSD/packages/1.4.2/sun3/lang/ http://www.vstore.com/vstorecomputers/8store/ http://indiadirectory.indiatimes.com/webdirectory/1514pg1.htm http://indiadirectory.indiatimes.com/webdirectory/1513pg1.htm http://www.online.kokusai.co.jp/Map/V0002508/wrd/G400/demo/ http://www.gamespot.com.au/features/everquest_gg/creatures1.html http://www.jxi.gov.cn/yw-ty001.nsf/view!OpenView&Start=38.11&Count=30&Expand=40 http://www.jxi.gov.cn/yw-ty001.nsf/view!OpenView&Start=38.11&Count=30&Expand=42 http://yp.gates96.com/6/0/40/22.html http://yp.gates96.com/6/0/40/85.html http://yp.gates96.com/6/0/41/26.html http://yp.gates96.com/6/0/41/94.html http://yp.gates96.com/6/0/42/50.html http://yp.gates96.com/6/0/43/30.html http://yp.gates96.com/6/0/43/76.html http://yp.gates96.com/6/0/44/43.html http://yp.gates96.com/6/0/44/61.html http://yp.gates96.com/6/0/44/99.html http://yp.gates96.com/6/0/45/37.html http://yp.gates96.com/6/0/45/84.html http://yp.gates96.com/6/0/47/33.html http://yp.gates96.com/6/0/47/43.html http://yp.gates96.com/6/0/47/54.html http://yp.gates96.com/6/0/48/30.html http://yp.gates96.com/6/0/48/47.html http://yp.gates96.com/6/0/49/5.html http://hammer.prohosting.com/~kobeweb/cgi-bin/nagaya/nagaya.cgi?room=036&action=mente http://www.petropages.com/kproduct/k4267p.htm http://webraft.its.unimelb.edu.au/536029/students/plam/pub/?M=A http://www.ld.com/cbd/archive/1999/09(September)/13-Sep-1999/Fawd001.htm http://www.caijing.yesky.com/33554432/36700160/122010.htm http://yp.gates96.com/14/85/0/7.html http://yp.gates96.com/14/85/2/86.html http://yp.gates96.com/14/85/3/90.html http://yp.gates96.com/14/85/6/37.html http://yp.gates96.com/14/85/8/82.html http://yp.gates96.com/14/85/8/88.html http://cn.egroups.com/messages/Toledo_Storm/228 http://mediate.magicbutton.net/do/session/625598/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-cart.html http://rainforest.parentsplace.com/dialog/thread.pl/bradley2/10/2.html?dir=prevResponse http://tvstore.zap2it.com/browse/TV/JACKET/s.CmMildAx http://tvstore.zap2it.com/browse/TV/CLOCK/s.CmMildAx http://findmail.com/post/studentdoctor?act=forward&messageNum=2315 http://www.chaos.dk/sexriddle/d/j/l/a/y/ http://gandalf.neark.org/pub/distributions/OpenBSD/src/gnu/egcs/libstdc++/testsuite/libstdc++.tests/?D=A http://gd.cnread.net/cnread1/net/zpj/s/shenfang/004.htm http://www.imagesignworks.com/vinylmasksforacidetching/index.nhtml http://209.249.170.32/stores/dir/bycat/Holiday_and_Seasonal/Christmas.shtml http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959867726/Catalog/1000107 http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959867726/Catalog/1000108 http://www.linux.com/networking/network/applications/interface/microsoft/IBM/ http://www.linux.com/networking/network/applications/interface/microsoft/Corel/ http://www.linux.com/networking/network/applications/interface/microsoft/?kw_offset=50 http://www.tiefbau-suhl.de/Leistung/Stuetzmauern/stuetzmauern2.htm http://providenet.tucows.com/win2k/adnload/38394_29124.html http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/index.opentext.net/weather/detail.cgi?us-dc http://iceberg.adhomeworld.com/cgi-win/redirect.exe/2133549064 http://www.dc.digitalcity.com/charlestonwvarea/announce/main.dci?page=letusknow http://members.tripod.co.jp/yoshihiro_2/yotete.html http://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/immolink/Startseite/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/ http://ftp.debian.org/dists/Debian2.2r0/non-free/binary-arm/web/?N=D http://www.complete-skier.co.uk/resorts/survey/submit.asp?ResortID=1755 http://members.tripod.com/~BHS_CC/boys_times_1997.html http://fi.egroups.com/post/mens-health?act=forward&messageNum=11 http://nomade.fr/cat/famille_sante/sante/medecine_pratique/medecine_generale/ http://home.att.net/~mlbvault/mac8.htm http://mirror.nucba.ac.jp/mirror/Perl/authors/id/ROSCH/String-ShellQuote-1.00.readme http://www.nrk.no/finnmark/x12_9_96/nyh6.htm http://ftp.debian.org/dists/Debian2.2r0/non-free/binary-m68k/editors/?N=D http://134.84.160.1/infoserv/lists/nih-image/archives/nih-image-9702/0141.html http://www.philly.digitalcity.com/saintjosephmo/penpals/browse.dci?cat=seniors&sort=m http://www.idg.net/crd_percent_19960.html http://204.202.130.51/playerfile/profile/mark_karcher.html http://www.redrocksports.com/sports/webSession/shopper/RR972959692-31077/store/dept-5/department/dept-5/item/52800 http://www.redrocksports.com/sports/webSession/shopper/RR972959692-31077/store/dept-5/department/dept-5/item/52900 http://www.online.kokusai.co.jp/Service/V0043510/wrd/G200/service/service.html http://www.service911.com/mvu/step/0,2632,1+13+139+23899+17191_4,00.html http://216.34.146.180/141000afp/14worl21.htm http://www.chaos.dk/sexriddle/t/p/v/r/i/ http://www.chaos.dk/sexriddle/t/p/v/r/x/ http://www.ualberta.ca/FTP/Mirror/debian/dists/potato-proposed-updates/eruby_0.0.9-1potato1_arm.changes http://www.hbdaily.com.cn/scznb/20000622/BIG5/scznb^1104^16^Zn16014.htm http://www.linux.com/networking/network/administrator/internet/ftp/install/ http://bsdweb.pasta.cs.uit.no/bsdweb.cgi/xsrc/xc/lib/Xt/PassivGrab.c?sortby=author http://bsdweb.pasta.cs.uit.no/bsdweb.cgi/xsrc/xc/lib/Xt/ConstrainP.h?sortby=author http://www.jamba.de/KNet/_KNet-EAA8j1-vFd-13b95/browse.de/node.0/cdel3j591 http://vvv.geocities.co.jp/SiliconValley-SanJose/5688/sn-3.html http://vvv.geocities.co.jp/SiliconValley-SanJose/5688/n.html http://www.amel.net/english/computer/games/b/X0006_Backstab__.html http://www.amel.net/english/computer/games/b/X0059_Bumper_Ships_1.1.html http://retailer.gocollect.com/do/session/1912693/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/sports/index.asp http://www.hig.se/(apre,formoutput,modified,set,set_cookie)/~jackson/roxen/ http://yp.gates96.com/3/73/80/18.html http://yp.gates96.com/3/73/81/27.html http://yp.gates96.com/3/73/81/48.html http://yp.gates96.com/3/73/81/58.html http://yp.gates96.com/3/73/82/38.html http://yp.gates96.com/3/73/83/30.html http://yp.gates96.com/3/73/83/43.html http://yp.gates96.com/3/73/83/49.html http://yp.gates96.com/3/73/83/52.html http://yp.gates96.com/3/73/84/33.html http://yp.gates96.com/3/73/84/75.html http://yp.gates96.com/3/73/85/2.html http://yp.gates96.com/3/73/85/44.html http://yp.gates96.com/3/73/85/70.html http://yp.gates96.com/3/73/86/37.html http://yp.gates96.com/3/73/86/59.html http://yp.gates96.com/3/73/87/97.html http://yp.gates96.com/3/73/87/99.html http://yp.gates96.com/3/73/88/58.html http://yp.gates96.com/3/73/88/63.html http://yp.gates96.com/3/73/88/97.html http://yp.gates96.com/3/73/89/31.html http://yp.gates96.com/3/73/89/40.html http://deseretbook.com/products/4108132/stock-38.html http://workingfamilies.digitalcity.com/madison/search/ http://debian.linux.org.tw/debian/dists/Debian2.2r0/main/disks-sparc/current/?D=A http://debian.linux.org.tw/debian/dists/Debian2.2r0/main/disks-sparc/current/base-contents.txt http://www.wizardsoftheweb.com/news/183.shtml http://mathematics.fiz-karlsruhe.de/stn/whyonline/why_0367.html http://www.nrk.no/finnmark/x27_11_98/nyh3.htm http://rex.skyline.net/navigate.cgi?computers,agriculture,nature,agriculture,computers http://www.secinfo.com/d1ZG7r.78.htm http://www.secinfo.com/d1ZG7r.74.htm http://www.freesoftware.com.cn/python.org.cn/doc/essays/ppt/hp-training/tsld051.htm http://www.nrk.no/finnmark/x28_5_96/nyh1.htm http://www.areteoutdoors.com/channel/snow/downhilling/b.354.g.2944.html http://www.areteoutdoors.com/channel/snow/downhilling/b.357.g.2944.html http://www.mywebmd.net/roundtable_message/662348 http://lovers-lane.porncity.net/216/ http://myhome.thrunet.com/~estefe/seng/sen18.htm http://myhome.thrunet.com/~estefe/seng/sen42.htm http://myhome.thrunet.com/~estefe/seng/sen52.htm http://myhome.thrunet.com/~estefe/seng/sen73.htm http://no.egroups.com/login.cgi?login_target=%2Fmessages%2Fenglish-zone http://www.uzp.gov.pl/biulety/1998/100/100_1327.html http://www.uzp.gov.pl/biulety/1998/100/100_1341.html http://www.uzp.gov.pl/biulety/1998/100/100_1372.html http://www.uzp.gov.pl/biulety/1998/100/100_1377.html http://www.uzp.gov.pl/biulety/1998/100/100_1428.html http://www.hotelboulevard.com/fr/riviera/standard/html40f8403856d2fa84c9080a860b7608ba/sessionLang/ANG/prov/browse/lstLieu[0]/Saint-Tropez/resultatSearch.html http://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/speeches/Pages/funds/portfolio.html http://www9.hmv.co.uk:5555/do/session/1347778/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d40_sd0_pt0.html http://edc.uni-augsburg.de/doc/susehilf/pak/paket_doinst_insure.html http://www.schlagerplatten.de/NewmanJimmyC/B000009PXU.htm http://cn.egroups.com/message/pro92/604 http://wwws.br-online.de/geld/boerse/980107/190001.html http://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-3.html http://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-46.html http://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-105.html http://faqs.bilkent.edu.tr/faqs/sgi/faq/performer/section-111.html http://newsone.net/nnr/prep/maus.soziales.recht http://www.mapion.co.jp/custom/tv/admi/14/14131/yako/3chome/1/ http://info.verwaltung.uni-freiburg.de/doc/packages/qt/html/qpicture-members.html http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959870915/ContentView/1000091/1/1200207 http://tour.stanford.edu/cgi/locate2.prl/135.5/jltA http://mapquest.digitalcity.com/daytonarea/salaries/main.dci?page=admin http://linuxberg.zeelandnet.nl/x11html/adnload/9146_6809.html http://medwebplus.com/subject/Alternative%20and%20Complementary%20Medicine/Population/Lists%20of%20Internet%20Resources?^ftc=240&^cc=ftc http://ftp.du.se/disk0/slackware/slackware-current/contrib/ham/login/package_descriptions http://yp.gates96.com/12/56/70/0.html http://yp.gates96.com/12/56/70/14.html http://yp.gates96.com/12/56/70/62.html http://yp.gates96.com/12/56/71/19.html http://yp.gates96.com/12/56/71/38.html http://yp.gates96.com/12/56/71/46.html http://yp.gates96.com/12/56/72/49.html http://yp.gates96.com/12/56/72/78.html http://yp.gates96.com/12/56/72/91.html http://yp.gates96.com/12/56/73/18.html http://yp.gates96.com/12/56/73/52.html http://yp.gates96.com/12/56/74/15.html http://yp.gates96.com/12/56/74/54.html http://yp.gates96.com/12/56/74/79.html http://yp.gates96.com/12/56/75/28.html http://yp.gates96.com/12/56/75/68.html http://yp.gates96.com/12/56/75/71.html http://yp.gates96.com/12/56/75/76.html http://yp.gates96.com/12/56/75/88.html http://yp.gates96.com/12/56/75/94.html http://yp.gates96.com/12/56/76/27.html http://yp.gates96.com/12/56/76/57.html http://yp.gates96.com/12/56/76/73.html http://yp.gates96.com/12/56/77/60.html http://yp.gates96.com/12/56/78/3.html http://yp.gates96.com/12/56/78/45.html http://yp.gates96.com/12/56/78/64.html http://yp.gates96.com/12/56/78/86.html http://yp.gates96.com/12/56/78/91.html http://yp.gates96.com/12/56/78/95.html http://yp.gates96.com/12/56/79/39.html http://yp.gates96.com/12/56/79/75.html http://www.alldata.com/TSB/19/831915CS.html http://polygraph.ircache.net:8181/iisadmin/libraries/http_-2www.travelsc.com/welcome_v3/form1.html http://majordomo.cgu.edu/cgi-bin/lwgate/NEMAI/archives/nemai.archive.0003/Date/article-9.html http://home.tiscalinet.be/fysinet/studententips/tipsVanStudentenNicolas/sld007.htm http://www4.netease.com/~abac/writting/zpnr/xw.htm http://64.209.212.162/learnlots/step/0,2891,47+75+26299+10981_5,00.html http://www.adcentral.com/cgi-bin/w3com/pws/adsites/KLhIZjY9X9xD5moK2JGI9yyxCV4tsONpzxjYyzP1Uq5ZFTlQAg3Wd-d9dlZbdFK8g3p8_O5GT8q_tKPHmrHXekF-PEpGmxPO69EhQYYR0fwhi_k2GqJa7eAy8n4PQUv0fLw2IIBwNP_qQkQpWEvx666v http://www.nrc.nl/W2/Nieuws/1998/08/01/ http://online.excite.de/unterhaltung/katalog/38320 http://202.167.121.158/ebooks/jetro/tra1-1-1.html http://ftp.uni-paderborn.de/aminet/aminet/demo/tp94/Blur.readme http://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=11,14,12,26 http://www.intellicast.com/Ski/World/UnitedStates/Northeast/NewYork/WingedFootGCWest/WindChill/d1_12/ http://yp.gates96.com/10/17/80/25.html http://yp.gates96.com/10/17/80/66.html http://yp.gates96.com/10/17/80/92.html http://yp.gates96.com/10/17/82/56.html http://yp.gates96.com/10/17/82/80.html http://yp.gates96.com/10/17/83/48.html http://yp.gates96.com/10/17/83/71.html http://yp.gates96.com/10/17/83/85.html http://yp.gates96.com/10/17/84/9.html http://yp.gates96.com/10/17/84/20.html http://yp.gates96.com/10/17/84/56.html http://yp.gates96.com/10/17/84/63.html http://yp.gates96.com/10/17/85/88.html http://yp.gates96.com/10/17/86/4.html http://yp.gates96.com/10/17/86/43.html http://yp.gates96.com/10/17/86/45.html http://yp.gates96.com/10/17/86/89.html http://yp.gates96.com/10/17/86/97.html http://yp.gates96.com/10/17/87/2.html http://yp.gates96.com/10/17/87/46.html http://yp.gates96.com/10/17/88/0.html http://yp.gates96.com/10/17/89/21.html http://yp.gates96.com/10/17/89/83.html http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.w3.org/International/O-URL-and-ident http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(9,6)+21,0+3,0 http://polygraph.ircache.net:8181/http_-2www.hystuff.com/nrc.htm http://jproxy.uol.es/jproxy/http://www.ocregister.com/beaches/capistrano http://www1.zdnet.com/companyfinder/filters/products/0,9996,38071-58,00.html http://www.ftp.uni-erlangen.de/pub/mirrors/_other/afterstep.foo.net/AfterStep/binaries/?M=A http://www.genome.wustl.edu:8021/gsc10/mouse/up/?D=A http://www.genome.wustl.edu:8021/gsc10/mouse/up/up24/ http://rotten-tomatoes.com/movies/browse/1074473/reviews.php?view=reviews.source http://www.virtual-impact-mktg.com/fx110001.htm http://genforum.genealogy.com/hagen/messages/164.html http://genforum.genealogy.com/hagen/messages/111.html http://genforum.genealogy.com/hagen/messages/7.html http://genforum.genealogy.com/hagen/messages/271.html http://genforum.genealogy.com/hagen/messages/40.html http://nt.mortgage101.com/partner-scripts/1024.asp?p=cashsolutions http://nt.mortgage101.com/partner-scripts/1026.asp?p=cashsolutions http://library.cuhk.edu.hk/search*chi/t龍情三地+%26%2359%3B+[3]/t%7B21632b%7D%7B213e5b%7D%7B213024%7D%7B213779%7D++++3/-5,-1,0,B/browse http://ftp.net.uni-c.dk/pub/linux/redhat/redhat-6.2/sparc/misc/src/anaconda/isys/?S=A http://ftp.net.uni-c.dk/pub/linux/redhat/redhat-6.2/sparc/misc/src/anaconda/isys/modutils/ http://cobrand.altrec.com/shop/detail/8273/30 http://pegasus.infor.kanazawa-it.ac.jp/~hatlab/kaga/docs/jdk1.3-beta_api/jdk1.3/docs/api/java/lang/class-use/ClassFormatError.html http://bci.tucows.com/winnt/adnload/58788_28761.html http://www.buybuddy.com/sleuth/33/1/1020503/300/ http://203.116.23.91/computer/pages2/it120800e.html http://203.116.23.91/special/newspapers/2000/pages4/computer030700.html http://203.116.23.91/computer/pages1/software131197.html http://dic.empas.com/show.tsp/?q=anarchically&f=B http://noodle.tigris.org/source/browse/subversion/subversion/libsvn_vcdiff/tests/target0.txt http://www.dbservicestore.de/home/db_reise_touristik/angebote/db_rt_gat_muenster.shtml http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=2&discrim=16,237,275 http://www.narodnaobroda.sk/20000926/06_006.html http://mandijin.chinamarket.com.cn/C/Showdetail_company/22591.html http://202.167.121.158/ebooks/jetro/t6.html http://a228.g.akamai.net/7/228/289/dd50406be5fc91/news.indiainfo.com/2000/08/17/world-index.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=disaminerei&l=it http://polygraph.ircache.net:8181/http_-2www.eastnebr.net/html/conversions.htm http://www.secinfo.com/d2wVq.7ar.htm http://www.secinfo.com/d2wVq.7B5.htm http://www.secinfo.com/d2wVq.6cd.htm http://www.secinfo.com/d2wVq.59x.htm http://www.jamba.de/KNet/_KNet-xdz8j1-mFd-13b2b/browse.de/node.0/cenv0b09a http://213.36.119.69/do/session/152991/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html http://www.dailyexcelsior.com/99sep30/edit.htm http://www.dailyexcelsior.com/99sep30/sports.htm http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/misc/misc/music/lit/quizz/computers/netwars.html http://cometweb01.comet.co.uk/do!session=132020&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0 http://www.affiliate.hpstore.hp.co.uk/do/session/380832/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp http://208.216.182.15/exec/obidos/ASIN/0516206443/qid=972959559/sr=1-22/ http://fi.egroups.com/messages/alau/2350 http://ads.puntopartenza.com/cgi-bin/redirect.cgi/31033631 http://pds.nchu.edu.tw/cpatch/ftp/ftpctrl/?N=D http://www.brio.de/BRIO.catalog/39fe2f5606def942273fd472aa7806e2/UserTemplate/5 http://ep.com/js/mi/c7246/b0/832275.html http://ep.com/js/mi/c7246/b0/837505.html http://ep.com/js/mi/c7246/b0/764046.html http://www.fogdog.com/cedroID/ssd3040183223072/nav/products/nhl/pittsburgh_penguins/fan/gender/autographed_pucks/ http://netway.pda.tucows.com/palm/preview/33567.html http://netway.pda.tucows.com/palm/preview/34007.html http://cometweb01.comet.co.uk/do!session=132006&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0 http://www.udn.com.tw/ARCHIVE/2000/08/04/DOMESTIC/YUNLIN/587058.htm http://www.linux.com/networking/network/support/web/news/services/ http://www.linux.com/networking/network/support/web/news/website/ http://www.linux.com/networking/network/support/web/news/business/ http://ads.carltononline.com/accipiter/adclick/site=purejamba/area=jamba.home_page/AAMSZ=IAB_FULL_BANNER//ACC_RANDOM=972959548213 http://www-x500-1.uni-giessen.de:8890/Lcn%3dConsuelo%20Alvarez,ou%3dDpto.%20Fisiologia%20y%20Biologia%20Animal,o%3dUniversidad%20de%20Sevilla,c%3dES http://www.chaos.dk/sexriddle/b/q/v/y/n/ http://www.cs.kuleuven.ac.be/~java/docs/tutorial/uiswing/converting/example-1dot1/ListDemo.html http://golfonline.comfluent.net/cgi.pan$player&lpga82&Debbie_Raso&lpga?golfstats http://acetoys.com/cgi-bin/exec/modify_cart_button=1&cart_id=1999923.7130.303&page=/tystore/htmlfiles/eden/dw.html http://www.bigchurch.com/cgi-bin/w3com/pws/bc/y1hIyNzn0Bl2XX5GzG9wVnUEhWD8GTd-XbpDm6aNI4ZMGTnV_YsP2OjB0RrwLpDbJub1pKlzEMrInSQi9hRM-Rz4WNq8C1vKJ9STiU9leUD_a3PBVh-7OMZDzJtyEBAXTehiRqme6jBR http://www.bigchurch.com/cgi-bin/w3com/pws/bc/mChIR_iy1798J8x9InaTkzOfisuwH2hv2KUj0e64IQ9CeS327muTnTo70bT5YC4YznUddEOY5WdX70keIPRlsQibJtG6uzZtaaPmL58O5zJ0z_2PkJNxmBS5dj5-gWoeBgE0zaSvCbi66Grq http://wap.jamba.de/KNet/_KNet-8qB8j1-FFd-13blo/browse.de/node.0/cde7f2elw http://collection.nlc-bnc.ca/100/201/300/info_tabac/html/1997/bull7/fdacarol.html http://pub17.ezboard.com/fzhaostempleofenlightenmentzhaosforum.showMessage?topicID=116.topic http://www.home.ch/~spaw4360/HOWTO_fr/Ethernet-HOWTO-5.html http://www.chaos.dk/sexriddle/s/g/n/y/j/ http://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/https_-2www.truste.org/validate/page3.html http://marketbiz.subportal.com/sn/Themes/Sports_Themes/288.html http://www.chinaccm.com/04/news/200004/20/120305.asp http://www.american.webtourist.net/travel/northamerica/usa/lagunabeach/bwlagunareefinn.htm http://elib.zib.de/pub/visual/avs/mirror/imperial/new/?S=A http://www.burstnet.com/ads/ad7826a-map.cgi/969206790 http://yp.gates96.com/14/82/10/81.html http://yp.gates96.com/14/82/12/82.html http://yp.gates96.com/14/82/13/55.html http://yp.gates96.com/14/82/14/27.html http://yp.gates96.com/14/82/14/31.html http://yp.gates96.com/14/82/15/52.html http://yp.gates96.com/14/82/17/16.html http://yp.gates96.com/14/82/17/93.html http://www.outpersonals.com/cgi-bin/w3com/pws/out/P2hI5ODQEZ1-vIl-agOzeOeNg4wShDlZrsCbdT5YZ3TrprEU4rb4NnnDXiGmf5cX3dh8ltMer04TMDd3q-cE5Mne85eH57ltxsi4ZQfER6vkktoaaYlS9JFTzylmCJZ2_PAT9uu2oWvIjgMzt9toyeuV http://www.mirror.ac.uk/sites/ftp.microsoft.com/deskapps/powerpt/KB/Q226/7/ http://mirror.nucba.ac.jp/mirror/Perl/authors/id/MIKEKING/?M=A http://lists.insecure.org/linux-kernel/2000/Jun/4357.html http://www.nlc-bnc.ca/indexmus-bin/resultsum/m=0/e=0/h=25/p=1/f=AU/t=Siroir,+Maryse+Angrignon http://genforum.genealogy.com/cgi-bin/print.cgi?leavy::19.html http://www.egroups.com/message/malaysiakini/219 http://wuarchive.wustl.edu/graphics/mirrors/ftp.povray.org/.3/netlib/ode/rksuite/?S=A http://www.earthsystems.org/list/greenyes/jan2000/1999-2/0858.html http://pp3.shef.ac.uk:4040/search=browse/dn=countryName%3DGB%40organizationName%3DUniversity+of+Sheffield%40organizationalUnitName%3DAutomatic+Control+and+Systems+Engineering%40commonName%3DI+D+Durkacz http://cobrand.altrec.com/shop/detail/6133/15/sizing http://cobrand.altrec.com/shop/detail/5624/17/write http://members.theglobe.com/inwardpath/history.htm http://findmail.com/post/studentdoctor?act=reply&messageNum=5168 http://www.service911.com/everythingtele/step/0,2675,3+26057+24201+16394_0,00.html http://www.linux.com/networking/network/free/release/development/mysql/ http://www.nbip.com.cn/books/xdwx/Hongyan/hongyan14.html http://ftp.jp.debian.org/debian-non-US/dists/sid/non-US/non-free/binary-hurd-i386/?N=D http://homepage.swissonline.ch/chico_logo/www.Link008 http://homepage.swissonline.ch/chico_logo/www.Link009 http://citeseer.nj.nec.com/cidcontext/3719857 http://itcareers.careercast.com/texis/it/itjs/+CwwBme3AT+6e-xwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXnmoBGnamwBwxw5naBnqrDdcdtOaOnwGaMdDBramwOaqmwBwamn5otDamnVncdpoDtanDtoDnnGoDtaMFqhTfR20DzmebmwwwpBme3AT+6ekxwww5rmeXdwwwBrmeZpwww/jobpage.html http://www.amazon.com.hk/exec/obidos/tg/stores/detail/-/pro-tools/B0000224UB/customer-reviews/ref=th_hp_rs_2_6/ http://www.ard-buffet.de/buffet/teledoktor/1998/02/16/ http://pub19.ezboard.com/fmissionimplausiblewhatpeoplearesaying.emailToFriend?topicID=41.topic http://no.egroups.com/message/NikonCoolPix/211 http://www.gasex.com/free.gay.sex/gay.men.dick.dicks.html http://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/showFolder/100001/1255931 http://www.uni-duesseldorf.de/ftp/ftp/pf/s/yagirc-0.65.6/?N=D http://www.outpersonals.com/cgi-bin/w3com/pws/out/uIhI1DhpdvAdxVFONIJuaNcvtSTejSMmZIBgOwsZamHFS4JpS3i6VWNOSb8LsLcmqmG0gp2hs1YjuScHwXmociV5L_3_fCYngafHC4CIYDuKoI-rOZldw1RU5K3jOfh5d3PxatRmmHqB662F http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/elax176954/eus53832/eus155852/eus53907/eus62316/ http://www.magictraders.com/cgi-bin/ubb/ubbmisc.cgi?action=getbio&UserName=Ammo187 http://fi.egroups.com/login.cgi?login_target=%2Fgroup%2Fweirdchicks http://www.accesslasvegas.com/shared/health/adam/ency/article/000589.images.html http://pp3.shef.ac.uk:4040/search=browse/dn=countryName%3DGB%40organizationName%3DAberdeen+University%40organizationalUnitName%3DGeneral+Practice%40commonName%3DMorrison+S http://worldres.lycos.com/script/gen_amen.asp?hotel_id=2252&n=2089 http://tulips.ntu.edu.tw/search*chi/dSymbolism+in+fairy+tales/dsymbolism+in+fairy+tales/-5,-1,0,B/browse http://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-clocks/pclock/ http://ftp.du.se/disk4/FreeBSD/branches/4.0-stable/ports/x11-clocks/xtimer/ http://polygraph.ircache.net:8181/cgi-win/lincoln/$cgi4wpro.exe/http_-2www.k56.com/http_-2www.webexplorer.net/c/SHLFFREZ.HTM http://www.ecs.soton.ac.uk/~seg7/private/contact.html http://wiem.onet.pl/wiem/00de68-s.html http://lcweb2.loc.gov/ll/llnt/008/?M=A http://www.alladvantage.com/pressroom.asp?refid=CBI-463 http://herndon1.sdrdc.com/cgi-bin/ind_detail/FERRELL|PORTER|FORT+WORTH|TX|76107|SINGLE+SERVER+COMMUNICATIONS/ http://herndon1.sdrdc.com/cgi-bin/ind_detail/HARRIS|WILLIAM|FAIRFAX|VA|22031|HARRIS+AND+ASSOCIATES/ http://herndon1.sdrdc.com/cgi-bin/ind_detail/HUTCHER|LARRY|NEW+YORK|NY|10023|DAVIDOFF+AND+MALITO/ http://herndon1.sdrdc.com/cgi-bin/ind_detail/ISIKOFF|NATHAN+R|WASHINGTON|DC|20007|CAREY-WINSTON+CO/ http://www.linux.com/networking/network/communications/security/wireless/protocol/ http://www.linux.com/networking/network/communications/security/wireless/technology/ http://retailer.gocollect.com/do/session/1912719/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp http://retailer.gocollect.com/do/session/1912719/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/limited_editions.asp http://retailer.gocollect.com/do/session/1912719/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www9.hmv.co.uk:5555/do/session/1347779/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/hiddenframe.html http://pub9.ezboard.com/fwestlifedublinmessageboardwestlifemessageboard.showMessage?topicID=8.topic http://no.egroups.com/subscribe/hardzero http://link.fastpartner.com/do/session/600378/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/index.php http://link.fastpartner.com/do/session/600378/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/gosafe.php http://link.fastpartner.com/do/session/600378/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/bitconomy.php http://www.hello.co.jp/~daichi2/ http://bbs.nsysu.edu.tw/txtVersion/treasure/ChiaYi/M.937783175.A/M.959916136.M.html http://chat.hani.co.kr/NetBBS/Bbs.dll/chosun21/lst/qqeq/1/zka/B2-kB2Bp/qqo/PRMY http://www.gartenfachmarkt.de/haus/schleifen/so.htm http://links2go.publiweb.com/topic/US_Department_of_Agriculture http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=14,15,6,36,22 http://www.linux.com/networking/network/new/hardware/open_source/operating_system/ http://www.linux.com/networking/network/new/hardware/open_source/availability/ http://tokyo.cool.ne.jp/pure0101/Oblivion_dust.html http://www.digitaldrucke.de/(aktuell,computer,gaestebuch,hilfe,hilfeallgemein,individualverkehr,kultur,onlineservice,peripherie,sense,veranstaltungen,verkehr)/_fort/html/themen/computer/hard/links/mitsu.htm http://www.gbnf.com/genealogy/jenkins/html/d0097/I4129.HTM http://www.geocities.co.jp/Outdoors-River/1625/hakuba0502.htm http://ftp.fi.debian.org/OpenBSD/src/regress/share/man/ http://www3.buch-per-sms.de/angemeldet.jsp$ID=To7767mC050667397857644736At0.8818825373175998 http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=15,25,16,27 http://debian.tod.net/debian/dists/sid/main/binary-sparc/electronics/?D=A http://hs1.takeoff.ne.jp/~hatuse/ http://polygraph.ircache.net:8181/Keyboards/http_-2www.sky.net/~robertf/handson/engine.html http://www.gbnf.com/genealogy/jenkins/html/d0005/I3818.HTM http://sepwww.stanford.edu/oldreports/sep67/old_src/jon/extend/junk.listing http://www.kol.net/~calldj/cyberstar/map/dw25a.htm http://citeseer.nj.nec.com/cidcontext/1297195 http://citeseer.nj.nec.com/cidcontext/1297207 http://books.hyperlink.co.uk/xt2/Peace_Verses_War/Cole/Derek/0722329539 http://www.spousehouse.com/ http://futures.homeway.com.cn/lbi-html/news/special/zhzt/jdht/twparty/zhengfu94652.shtml http://www.yorosiku.net:8080/-_-http://www.zdnet.co.jp/zdii/interviews/interviews.html http://library.cwu.edu/search/aIdaho+State+University/aidaho+state+university/-5,-1,0,E/frameset&F=aidaho+state+university&2,,0 http://pelit.saunalahti.fi/.1/tucows/preview/68721.html http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=34,20,30,36,32 http://pike-community.org/(base=/forums/show.html,forum=7,show=146,t=972959487953431)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=185,t=972959487953431)/forums/show.html http://pike-community.org/(base=/forums/show.html,explode=763,forum=7,t=972959487953431)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=870,t=972959487953431)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=890,t=972959487953431)/forums/show.html http://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d3/b34,8,1,,1f,1,65,,1f,65, http://www.telematik.informatik.uni-karlsruhe.de/osf/sw/v4.0x/lp2/bst320/kit/ http://cafe3.daum.net/Cafe-bin/Bbs.cgi/harukypds/rnw/zka/B2-kB2Zq http://www.digitaldrucke.de/(computer,hilfe)/_fort/html/themen/computer/hard/links/escom.htm http://www2.ipc.pku.edu.cn/scop/pdb.cgi?sid=d6stdb_ http://www2.ipc.pku.edu.cn/scop/pdb.cgi?sid=d4stdc_ http://www.shopworks.com/index.cfm/action/specials/userid/00029735-2E1C-19FE-AF65010C0A0A8CF2 http://www.shopworks.com/index.cfm/action/search/userid/00029735-2E1C-19FE-AF65010C0A0A8CF2 http://www.helpnow.net.cn/helpnow/hardware/bbs/cpu/?D=A http://books.hyperlink.co.uk/xt1/Light_My_Fire/Manzarek/Ray/0099280655 http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/src/crypto/heimdal/appl/ftp/ftp/?sortby=author http://tucows.interbaun.com/winme/adnload/5147_28523.html http://tucows.interbaun.com/winme/adnload/137019_28530.html http://moviestore.zap2it.com/browse/MOVIES/COLLECTI/s.NedNjpDf http://moviestore.zap2it.com/browse/MOVIES/STRAW/s.NedNjpDf http://www.online.kokusai.co.jp/Words/V0043505/wrd/G700/words/kana_main.html http://www.mirror.edu.cn/res/sunsite/pub/X11/contrib/window_managers/gwm/patches/gwm_patch_1.8a_001 http://www.musicblvd.com/cgi-bin/tw/270242907922133_20_hip http://www.cowo.de/archiv/1991/21/9121c045.html http://www.russ.ru:8080/netcult/nevod/19990827-pr.html http://usol.linux.tucows.com/x11html/preview/26680.html http://usol.linux.tucows.com/x11html/preview/10385.html http://yp.gates96.com/7/22/20/54.html http://yp.gates96.com/7/22/20/67.html http://yp.gates96.com/7/22/20/71.html http://yp.gates96.com/7/22/22/26.html http://yp.gates96.com/7/22/22/55.html http://yp.gates96.com/7/22/22/74.html http://yp.gates96.com/7/22/22/94.html http://yp.gates96.com/7/22/23/38.html http://yp.gates96.com/7/22/23/59.html http://yp.gates96.com/7/22/24/43.html http://yp.gates96.com/7/22/24/60.html http://yp.gates96.com/7/22/24/64.html http://yp.gates96.com/7/22/24/66.html http://yp.gates96.com/7/22/24/72.html http://yp.gates96.com/7/22/24/85.html http://yp.gates96.com/7/22/26/11.html http://yp.gates96.com/7/22/26/69.html http://yp.gates96.com/7/22/27/3.html http://yp.gates96.com/7/22/27/11.html http://yp.gates96.com/7/22/27/22.html http://yp.gates96.com/7/22/27/48.html http://yp.gates96.com/7/22/27/69.html http://yp.gates96.com/7/22/28/13.html http://yp.gates96.com/7/22/28/30.html http://yp.gates96.com/7/22/29/39.html http://yp.gates96.com/7/22/29/58.html http://www.allgemeine-immobilien-boerse.de/frankfurt/verkauf/Gemeinsam/Super-Zins-Konditionen/Private-IB/Startseite/IIM-Teil/Startseite/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm http://cobrand.altrec.com/shop/detail/8470/9/description http://oa-nett.no/0/73/90/2.html http://www.nordi.no/~steinsk/ http://www02.geocities.co.jp/Stylish/6692/ http://no.egroups.com/login.cgi?login_target=%2Fmessages%2Fsan-diego-tango http://no.egroups.com/message/san-diego-tango/390 http://www.jamba.de/KNet/_KNet-m_C8j1-PFd-13bt7/showInfo-special1.de/node.0/cenv0b09a http://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/immolink/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Startseite/Gemeinsam/versicherungen/gebaeude/Startseite/froben.htm http://it.egroups.com/post/pimnews-homeworker?act=reply&messageNum=661 http://members.es.tripod.de/remoto/t2/p3b.htm http://no.egroups.com/post/Translat2000?act=reply&messageNum=530 http://www.opengroup.com/pabooks/081/0816631352.shtml http://www6.freeweb.ne.jp/feminine/ki18/portrait10/p21.htm http://genforum.genealogy.com/cgi-genforum/forums/cantrell.cgi?2117 http://www9.hmv.co.uk:5555/do/session/1347769/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d30_sd0_pt0.html http://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2www.perrypip.com/http_-2www.scruz.net/~dvb/cam.html http://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2www.perrypip.com/~logan/ http://polygraph.ircache.net:8181/docs/Win95/MSdialer/http_-2www.fastcounter.com/http_-2www.perrypip.com/http_-2hits.omino.com/ http://javatest.a-net.nl/servlet/pedit.Main/http://epidem13.plantsci.cam.ac.uk/~js/glossary/course-glossary.html http://www.hellefors.se/ulf/akno/alla/p0349c5e1e.html http://home.no.net/islamnor/had.sira.html http://www.gutenberg2000.de/immerman/muenchim/muen1171.htm http://www.gutenberg2000.de/immerman/muenchim/muen3091.htm http://www.gutenberg2000.de/immerman/muenchim/muen7011.htm http://www.sikhnet.com/sikhnet/music.nsf/by%20Shabad!OpenView&Start=30&Count=20&Expand=2 http://www.proteome.com/databases/PombePD/reports/SPCC613.01.html http://www.midwestvanlines.com/oh/indexC.html http://ring.tains.tohoku.ac.jp/pub/linux/debian/debian-jp/dists/stable/contrib/binary-arm/electronics/?S=A http://members.tripod.com/~infolog/Genhouses/Chap12.htm http://www.4positiveimages.com/4positiveimages/1998693855/UserTemplate/2 http://www.greenleaves.com/bookcat/gb_096855900X.html http://www-rn.informatik.uni-bremen.de/home/X11R6/xc/doc/hardcopy/test/?M=A http://rex.skyline.net/html/Shipping_of_Goods.html?48,airplanes,transportation,collectibles,transportation http://rex.skyline.net/html/Automobile_Classified_Listings.html?59,airplanes,transportation,collectibles,transportation http://www.admin.co.martin.fl.us/GOVT/depts/cas/corresp/2000/cas00l.133.html http://www.admin.co.martin.fl.us/GOVT/depts/cas/corresp/2000/cas00l.126.html http://www.affiliate.hpstore.hp.co.uk/do/session/380834/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hpstore.hewlett-packard.fr/gp http://link.fastpartner.com/do/session/600367/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/no/ http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-library.lbl.gov/photo/gallery/ http://dogbert.wu-wien.ac.at/UniverCD/cc/td/doc/product/core/cis12012/bfrcfig/4334acps/?M=A http://ftp.uni-stuttgart.de/pub/tex/nonfree/support/latexdraw/doc/ltdmanual.html.g/node10.html http://se.egroups.com/message/911dispatchers/718 http://ftp.eecs.umich.edu/.1/people/jfr/Pinata_Book/?D=A http://community.bigchalk.com/servlet/schools_ProcServ/DBPAGE=cge&GID=66001000660906746080215398&PG=66001000660906746080492039 http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=16,27,29,4 http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=22,27,29,4 http://pds.nchu.edu.tw/cpatch/ftp/dap/cdap_4002.txt http://pds.nchu.edu.tw/cpatch/ftp/dap/source/ http://kuyper.calvin.edu/fathers2/ANF-03/anf03-22.htm http://kuyper.calvin.edu/fathers2/ANF-03/anf03-27.htm http://blisty.internet.cz/1250/9908/19990813a.html http://ring.shibaura-it.ac.jp/archives/doc/jpnic/minutes/committee/200008/shiryou-2-8-2.txt http://194.128.65.4/pa/cm199697/cmhansrd/vo970306/text/70306w14.htm http://www.mortgagemag.com/guide/c096/c096573.htm http://link.fastpartner.com/do/session/600369/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php http://link.fastpartner.com/do/session/600369/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/gosafe.php http://cometweb01.comet.co.uk/do!session=132008&vsid=692&tid=20&cid=37051&mid=1000&rid=1060&chid=1702&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0 http://www.vh.org///////Patients/IHB/FamilyPractice/AFP/November1994/HormoneReplacement.html http://ftp.sunet.se/pub/unix/OpenBSD/distfiles/md5/74892a6ae002937d011d3e1102269b7f/?M=A http://www.pcdads.com/pressroom/archive/releases/cn112999.htm http://www.pcdads.com/pressroom/archive/releases/Fe90199a.htm http://www.pcdads.com/pressroom/archive/releases/Cn042199.htm http://www.cheap-cds.com/surf/order/017172 http://www.hani.co.kr/ECONOMY/data/9909/day09/print/p00909060.html http://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/MarketingStrategie/Startseite/Gemeinsam/Inserieren/Gemeinsam/Gemeinsam/versicherungen/unfall/anforderungsformular.htm http://www.sj-rmall.com/Mall/Catalog/Product/ASP/product-id/57419/store-id/1000400121.html http://www.travelodge.com/ctg/cgi-bin/Travelodge/home/AAAksrACwAAABvTAAd http://ctc.org.cn/ctc2/news/internet/develop/news0322-6.htm http://www.schlagertempel.de/FallbachTrio/B000025MBP.htm http://www.fogdog.com/cedroID/ssd3040183238127/nav/products/nike/1b/all/10.html http://www.fogdog.com/cedroID/ssd3040183238127/customer_service/security_policy.html http://in.egroups.com/login.cgi?login_target=%2Fgroup%2Fradiotutorium http://yp.gates96.com/7/87/70/43.html http://yp.gates96.com/7/87/70/61.html http://yp.gates96.com/7/87/71/85.html http://yp.gates96.com/7/87/72/75.html http://yp.gates96.com/7/87/73/1.html http://yp.gates96.com/7/87/73/5.html http://yp.gates96.com/7/87/73/60.html http://yp.gates96.com/7/87/74/34.html http://yp.gates96.com/7/87/75/9.html http://yp.gates96.com/7/87/75/50.html http://yp.gates96.com/7/87/75/92.html http://yp.gates96.com/7/87/76/2.html http://yp.gates96.com/7/87/76/59.html http://yp.gates96.com/7/87/76/92.html http://yp.gates96.com/7/87/78/30.html http://yp.gates96.com/7/87/78/32.html http://yp.gates96.com/7/87/78/75.html http://yp.gates96.com/7/87/78/85.html http://yp.gates96.com/7/87/78/93.html http://yp.gates96.com/7/87/79/30.html http://yp.gates96.com/7/87/79/50.html http://yp.gates96.com/7/87/79/71.html http://yp.gates96.com/7/87/79/85.html http://interhotel.com/luxembourg/es/hoteles/45691.html http://interhotel.com/luxembourg/es/hoteles/73094.html http://bart.kullen.rwth-aachen.de/~quake3/Html_log/471_chat.html http://search.yam.com.tw/en/search/rec/travel/domest/resorts/miaolir/ http://www.narodnaobroda.sk/19991009/23_006.html http://news.china.com/zh_cn/social/1007/20001027/7624.html http://www.fila.com.br/ http://www.jobvillage.com/channel/jobs/health_care/female_health/b.3122.g.2360.html http://online.excite.de/bildung/katalog/35461 http://deportes.ole.com/ocio/articulo/articulo.cfm?ID=OCI8055 http://yp.gates96.com/3/36/90/2.html http://yp.gates96.com/3/36/90/37.html http://yp.gates96.com/3/36/90/55.html http://yp.gates96.com/3/36/90/79.html http://yp.gates96.com/3/36/91/7.html http://yp.gates96.com/3/36/92/59.html http://yp.gates96.com/3/36/92/95.html http://yp.gates96.com/3/36/93/76.html http://yp.gates96.com/3/36/93/88.html http://yp.gates96.com/3/36/94/41.html http://yp.gates96.com/3/36/94/64.html http://yp.gates96.com/3/36/95/16.html http://yp.gates96.com/3/36/95/33.html http://yp.gates96.com/3/36/95/39.html http://yp.gates96.com/3/36/96/36.html http://yp.gates96.com/3/36/96/53.html http://yp.gates96.com/3/36/99/30.html http://yp.gates96.com/3/36/99/73.html http://download.sourceforge.net/mirrors/turbolinux/turbolinux-cn/pub/turbolinux/updates/TLC3.0.2/?S=D http://www.jobvillage.com/channel/jobs/administrative/mrd/courier/b.4728.g.3366.html http://www.jobvillage.com/channel/jobs/administrative/mrd/shipping_clerk/b.4713.g.3366.html http://quote.fool.com/simple.asp?symbols=NS http://itcareers.careercast.com/texis/it/itjs/+NwwBmeIXD86dxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewXhmoBGnaqdGpdGwBodDaqdMp1BnGadpnGwBodD5aMw55wqr15nBB5aqdGpdGwBnahoDwDqowcaMwocaBn5BoDtapGdxcnMaMFqhTfR20DzmetmwwwpBme_9D86eYmwww5rme1DwwwBrmeZpwww/jobpage.html http://www.shopworks.com/index.cfm/action/info/userid/00066256-1160-19FE-A703010D0A0A8CF2 http://isbn.nu/0716723212/fatbrain http://isbn.nu/0716723212/amazon.ceo.html http://ftp.nacamar.de/pub/NetBSD/NetBSD-current/pkgsrc/www/p5-URI/?N=D http://213.36.119.69/do/session/152993/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/preparer/sante.htm http://213.36.119.69/do/session/152993/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html http://213.36.119.69/do/session/152993/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/DE_DE/ http://www.linux.com/networking/network/support/open_source/investors/consulting/ http://www.linux.com/networking/network/support/open_source/investors/research/ http://sunsite.uakom.sk/doc/FAQ/alt-sex/fetish-fashion/?S=A http://sunsite.uakom.sk/doc/FAQ/alt-sex/fetish-fashion/?D=A http://phnet.tucows.com/winme/preview/75994.html http://www.fivedoves.com/letters/june99/trish67.htm http://www.teacherformation.org/html/od/facilitators.cfm/task1,about/discussion_id,2/xid,8571/yid,4064381 http://pub24.ezboard.com/fnightmagicfrm1.showMessage?topicID=3.topic http://infoserv2.ita.doc.gov/efm/efm.nsf/Sources!OpenView&Start=53.28&Count=30&Expand=54 http://www.linux.com/networking/network/communications/management/windows_nt/website/ http://www.linux.com/networking/network/communications/management/windows_nt/?kw_offset=50 http://www.epinions.com/cmd-review-593A-C9BAC2B-3987B6DC-prod1 http://www.bande-dessinee.org/bd/bd02.nsf/InterDescenaristes!OpenView&Start=1&Count=50&Collapse=51 http://www.business-partner.ch/static/fr/pourlesfirmes/lesgrandesentreprises/whateveryouwant/solutionsspecifiquesalabranche/transport/main.html http://ads.carltononline.com/accipiter/adclick/site=purejamba/area=JAMBA.HOME_PAGE/AAMSZ=KSJAMBA//ACC_RANDOM=972959547161 http://expert.cc.purdue.edu/~yoko/simpsons/front.html http://dailynews.sina.com.cn/society/2000-06-14/97332.html http://ftp.dti.ad.jp/pub/Linux/debian-jp/dists/potato/main/binary-all/editors/?M=A http://www.babyheirlooms.com/catalog/htmlos.cat/041124.1.5608817466 http://www9.hmv.co.uk:5555/do/session/1347791/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d100_sd0_pt0.html http://www.jobvillage.com/channel/jobs/health_care/pharmaceutical/pharmacist/b.3231.g.1267.html http://yp.gates96.com/11/24/80/12.html http://yp.gates96.com/11/24/80/18.html http://yp.gates96.com/11/24/80/84.html http://yp.gates96.com/11/24/80/90.html http://yp.gates96.com/11/24/81/6.html http://yp.gates96.com/11/24/81/9.html http://yp.gates96.com/11/24/81/54.html http://yp.gates96.com/11/24/81/74.html http://yp.gates96.com/11/24/81/98.html http://yp.gates96.com/11/24/82/17.html http://yp.gates96.com/11/24/82/96.html http://yp.gates96.com/11/24/83/54.html http://yp.gates96.com/11/24/83/58.html http://yp.gates96.com/11/24/84/44.html http://yp.gates96.com/11/24/84/52.html http://yp.gates96.com/11/24/84/63.html http://yp.gates96.com/11/24/85/35.html http://yp.gates96.com/11/24/85/77.html http://yp.gates96.com/11/24/85/78.html http://yp.gates96.com/11/24/87/15.html http://yp.gates96.com/11/24/87/77.html http://yp.gates96.com/11/24/88/0.html http://yp.gates96.com/11/24/88/63.html http://yp.gates96.com/11/24/89/93.html http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/listUnseen/fol/100001/20,0/2498053 http://www.zeenzone.com/movies/1,4003,1040-21565,00.html http://www.zeenzone.com/movies/1,4003,1040-99354,00.html http://www.zeenzone.com/movies/1,4003,1040-109493,00.html http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/author/627181 http://moshkow.rsl.ru/alt/MORUA/letters.txt http://members.tripod.co.jp/muttley2000/?M=A http://www.shopworks.com/index.cfm/action/specials/userid/000A8C31-2EFD-19FE-9038010B0A0ADCF2 http://www.bookhome.net/xiandangdai/other1/chunjiang/006.html http://www.bookhome.net/xiandangdai/other1/chunjiang/013.html http://www.dailyrush.dk/clans/145 http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/auto/0210/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/brandenburg/0011/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0077/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0009/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0111/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0117/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/lokales/0014/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/sport/0018/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/sport/0158/ http://www.berlinonline.de/wissen/berliner_kurier/archiv/2000/0429/tv/0209/ http://www.multicosm.com/facade/www.contigo.com/ http://www.boston.digitalcity.com/cincinnati/health/conditions.dci?condition=sids http://www.onlineathens.com/1998/041498/0414.a2zbriefs.html http://ist.linux.tucows.com/conhtml/adnload/52224_1782.html http://www.outpersonals.com/cgi-bin/w3com/pws/out/-2hIv4VApV7948YHO6tPdd62dgSdHSwg0xTrLhYidK4__IjhefvQTQrwpTMkkPdR5C5XRGbdA57_pJIxtMRvHJmrtjKdnzn_di6Er9p9vwIk1rLYwssqdvQbgeNAvSgd2M1a7O5NWleCth4ETxMfqPQS http://www.outpersonals.com/cgi-bin/w3com/pws/out/VwhIXbmwUfG9PK362Tf07_xy8BQY7YBwNspFlCmPD_syQhuUcYEAU2eNoW3Liccn5fOj3JHbx2nCG9Tkl-PZwI9bR0uW5_3bO8O3kRwFm2Sp0E8MBNqJ9FvuLKt4pS_X3qzA8sbHcygn7lFrBe9ZZqi565Rs http://www.crutchfield.com/cgi-bin/S-5ILchLS19Z9/auto.asp http://www.quzhou.gov.cn/flfg.nsf/0a043ae26eb50247002564640039f21d/7cdda9dbc7e2b2bb002564ac00393b48!OpenDocument&ExpandSection=1,7,6 http://opac.lib.ntnu.edu.tw/search*chi/m92+R627/m92+r627/-5,-1,0,B/buttonframe&F=m92+r449m&1,1 http://www03.u-page.so-net.ne.jp/fc4/kazumasa/tdl/side2/side2.html http://launchbase.com/Home/Personal_Organization/communication/information/Bank_Rates_&_Info.htm http://launchbase.com/Home/Personal_Organization/communication/entertainment/Sports.htm http://launchbase.com/Home/Personal_Organization/communication/shopping/Flowers.htm http://launchbase.com/Home/Personal_Organization/communication/shopping/Pro-Audio.htm http://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/admission/972959587-- http://channel.nytimes.com/1998/10/15/technology/ http://www.la.gunma-u.ac.jp/S97/thtml/m/kiso/41808.html http://www1.ocn.ne.jp/~yaiba/_private/kobanasi/tyouhen/haraguroido/noroi.htm http://www.duluxvalentine.com/FRANCE:1161209847:DFinity.1QJiP4jmPgipihoa http://fi.egroups.com/messages/mediamalle-letter/6 http://personal.wol.com.cn/lxz20a/gp13.htm http://eclat.gaiax.com/www/eclat/y/k/yoko_mama/main.html http://eclat.gaiax.com/www/eclat/y/k/yoko_mama/bbs.html http://findmail.com/login.cgi?login_target=%2Fgroup%2Fohsama-iroiro http://www.fogdog.com/cedroID/ssd3040183248487/crs/po__/wld/fogdog_sports/superfeet/outdoor/footwear/green_hi-profile.html http://www.fogdog.com/cedroID/ssd3040183248487/nav/stores/baseball/ http://www.fogdog.com/cedroID/ssd3040183248487/nav/stores/winter_sports/ http://www.consource.com/members/signup/signup_temp_user.html?tAccountID=561 http://213.36.119.69/do/session/152994/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/voit.htm http://213.36.119.69/do/session/152994/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/BE_NL/ http://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Attic/configure.in?r1=1.62&sortby=rev http://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Attic/configure.in?annotate=1.53&sortby=rev http://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdevelop/Attic/configure.in?r1=1.46&sortby=rev http://www.aelita.net/products/solutions/sitemap/Reg/QuoteRegister/solutions/products/default.htm http://sunsite.org.uk/public/public/packages/pine/docs/?S=A http://sunsite.org.uk/public/public/packages/pine/docs/QandA.txt http://www.sfc.keio.ac.jp/~s98008na/miniproject/0.html http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959867760/Catalog/1000023 http://www.msn.expedia.co.uk/wg/Africa/Mauritius/P39048.asp http://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/rakennesuunnittelu/talonrakennus/rakennukset/ohjeet/ http://www.ericsson.cl/education/centers/dtmexic.shtml http://ftp.gigabell.net/debian/dists/Debian2.2r0/main/binary-powerpc/web/?S=A http://dirs.educationamerica.net/Colorado/Localities/C/Colorado_Springs/News_and_Media/Television/ http://polygraph.ircache.net:8181/services/define/jeff/http_-2web01.hq.cyberserv.com/ryanhomes/http_-2www.travelsc.com/cgi-bin/news/NewsList.cfm?ID=1 http://salinas2000.com/index.cfm/r/960/a/95.htm http://213.36.119.69/do/session/152988/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml http://213.36.119.69/do/session/152988/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/connaitre/questions-reponses.htm http://ftp.cpan.org/src/5.0/sperl-2000-08-05/?D=A http://virtualpubliclibrary.com/hallofanima/moresports/JOELOUIS.ORG//hallofanima/music/ http://x500.rz.uni-karlsruhe.de:8000/Lcn%3dMonika%20Vogel,%20ou%3dPersonalabteilung,%20ou%3dUniversitaetsleitung%20und%20-verwaltung,%20o%3dUniversitaet%20Konstanz,%20c%3dDE http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/korean/pine/files/patch-ai?only_with_tag=RELEASE_2_2_2 http://ftp.ring.gr.jp/archives/XFree86/4.0.1/binaries/Linux-ix86-glibc21/RELNOTES http://homepage1.nifty.com/SAKURAISANS/itoshi.html http://www.expage.com/savetucker http://ring.edogawa-u.ac.jp/archives/pack/os2/prog/rexx/?N=D http://www.saarreisen.de/rueckel-reisen/fluege-buchen/barbados/reise-ibiza.htm http://debian.linux.org.tw/debian/dists/sid/contrib/binary-powerpc/interpreters/?S=A http://ricoh.co.jp/rtoss/School/other/other/lotus_syo/pg7.html http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus52213/eus52841/eus236353/eus591199/eus937052/ http://www.mapion.co.jp/custom/AOL/admi/23/23101/higashiyamatori/4chome/index-17.html http://stocks.tradingcharts.com/stocks/charts/swti-bb/w/javachart http://ftp.univ-lyon1.fr/gnu/Manuals/diffutils-2.7/html_chapter/diff_15.html http://www.elfoco.com/EL_Foco/CDA/PrintPage/1,2171,2_53_28444,00.html http://www.debian.org.cn/Bugs/db/61/61000.html http://www.debian.org.cn/Bugs/db/66/66591.html http://www.debian.org.cn/Bugs/db/57/57112.html http://www.gxrb.com.cn/26/tbzl.htm http://opac.lib.rpi.edu/search/dyosemite+national+park+water+resources+development+research+california/-5,-1,0,E/2browse http://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/src/usr.sbin/dhcp/client/scripts/openbsd http://attach1.egroups.com/attach/1087162/28/gs-108=71=1087162/10-1-10-160/application=octet-stream/IntOrganist.htm http://www.brainerddispatch.com/stories/071299/obi_0712990015.shtml http://webusers.siba.fi/doc/HOWTO/en-html/Multi-Disk-HOWTO-27.html http://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1667-art-30.html http://www4.ocn.ne.jp/~l-tommy/C1024.html http://pub13.ezboard.com/fsequelossavannasoftwaredevelopment.showMessage?topicID=74.topic http://pub13.ezboard.com/fsequelossavannasoftwaredevelopment.showMessage?topicID=109.topic http://www.z-plus.de/freizeit/kino/galerie/unhold/kritikdpa.html http://www.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/16/Ort/515/Privatvermieter/326225/Homepage/m_homepage...2.html http://wap.jamba.de/KNet/_KNet-NKE8j1-2Gd-13c6l/showInfo-wir.de/node.0/cde7f1uou http://www.refdag.nl/kl/990706kl02.html http://www.ferien-immobilien.de/nordrhein-Westfalen/soest/Verkauf/Versteigerungen-IB/Startseite/Gemeinsam/versicherungen/gebaeude/Versteigerungen-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm http://caller-times.com/1999/september/18/today/local_sp/78.html http://link.fastpartner.com/do/session/600350/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php http://providenet.tukids.tucows.com/mac/9-12/adnload/11899_25711.html http://providenet.tukids.tucows.com/mac/9-12/adnload/51475_24795.html http://fivestar.subportal.com/sn/Network_and_Internet/Dial-up_Networking_Dialers/11735.html http://www.kenley.londonengland.co.uk/newspaperandmagazinepublishers.htm http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~C~013800~07790',00.html http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~C~013800~54357',00.html http://ftp1.support.compaq.com/public/vms/vax/v6.0/sls/2.6/?M=A http://cpan.clix.pt/authors/id/I/IL/ILYAM/Mail-CheckUser-0.15.readme http://www.maasvlakte-cam.nl/webcams/23/stavanger__norway/2000/10/12/?D=A http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/music/midi/computers/quizz/lit/arnheim.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/music/midi/computers/quizz/misc/colorart/ http://www.taftp.com/A555D3/WebDir.nsf/MBC!OpenView&Start=89.2&Count=30&Expand=106 http://jundavid.subportal.com/sn/Shell_and_Desktop/Animal_Cursors/11879.html http://www.netitor.com/photos/schools/ucla/sports/m-wpolo/98-99action/?M=A http://cpan.nitco.com/modules/by-module/Devel/MSCHWERN/Class-DBI-0.03.readme http://cpan.nitco.com/modules/by-module/Devel/MSCHWERN/Text-Metaphone-0.02.readme http://www.digitaldrucke.de/(aktuell,computer,gaestebuch,kino,literatur,nuernberg,rundfunk,sense,veranstaltungen,zeitschriften)/_fort/html/themen/kultur/literat/links/bin.htm http://194.128.65.4/pa/cm199899/cmhansrd/vo990727/text/90727w01.htm http://194.128.65.4/pa/cm199899/cmhansrd/vo990727/text/90727w15.htm http://213.36.119.69/do/session/152989/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/misc/quizz/lit/misc/cv.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/misc/quizz/lit/misc/lit/larme.html http://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=6,7,3,5,1,8,11 http://www.identer.co.kr/삶의여유/데이트정보/데이트정보/ http://allmacintosh.arrakis.es/adnload/54801.html http://link.fastpartner.com/do/session/600380/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/brleksaker.php http://link.fastpartner.com/do/session/600380/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php http://icm.html.tucows.com/adnload/001-009-003-014.html http://www.rakuten.co.jp/coffee/forum/forum-w.cgi?p=131&url=coffee http://jxi.gov.cn/yw-cj001.nsf/6770fc9e7685796c482568c70008a30a!OpenView&Start=69&Count=30&Expand=70 http://jxi.gov.cn/yw-cj001.nsf/6770fc9e7685796c482568c70008a30a!OpenView&Start=69&Count=30&Expand=72 http://freehomepage.taconet.com.tw/This/is/taconet/top_hosts//tsyang/test9g.htm http://www11.cplaza.ne.jp/babyweb/bbs/bdnm01/no33/130N.html http://library.cuhk.edu.hk/search*chi/a憪���/a{213972}{213230}/-5,-1,0,B/frameset&F=a{213972}{213233}{215b34}&1,1 http://library.cuhk.edu.hk/search*chi/a憪���/a{213972}{213230}/-5,-1,0,B/frameset&F=a{213972}{21323e}{213165}+1947&1,1 http://library.cuhk.edu.hk/search*chi/a撱嗅ˊ,+904-975./a{213d32}{213877}++904++975/-5,-1,0,B/frameset&F=a{213d32}{213a67}{213779}{213455}+china+{215f7a}{213579}{213966}{21363e}{21435a}+{214241}{213c37}&1,1 http://www.online.kokusai.co.jp/Service/V0043539/wrd/G200/service/service.html http://quote.morningstar.com/Quote.html?ticker=GASFX http://uoi.linux.tucows.com/x11html/adnload/9826_7194.html http://dk.egroups.com/post/batoco?act=forward&messageNum=2017 http://www.chaos.dk/sexriddle/b/h/l/o/h/ http://www.picktips.com/category-1031-1174_1171_1170-4_3_2 http://www.schmunzelecke.de/pic18.htm http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chhand20.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chhand25.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chhand30.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chimag16.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chimag26.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chlight3.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chspec34.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chspec35.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chview15.html http://sun1.rrzn-user.uni-hannover.de/zzzzgart/matlab/help/techdoc/umg/chvolvi5.html http://www.t-onlien.de/dtag/mail/kontaktseite/1,3606,160,00.html http://yumemi.ne.jp/bbs/hiroba/ky/view/h/hiroba3/8_wdsmcn_wdsmcn.html http://yumemi.ne.jp/bbs/hiroba/ky/view/h/hiroba3/8_mrlinl_tcincn.html http://yumemi.ne.jp/bbs/hiroba/ky/view/h/hiroba3/8_caouny_hixlcy.html http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=20,9,13,16 http://www.crn.com/sections/BreakingNews/breakingnews.asp?ArticleID=5760 http://dennou-h.ees.hokudai.ac.jp/library/Linux/debian-jp/dists/hamm/main-jp/binary-all/tex/?M=A http://www.cmyk21.com/photo1-3.htm http://www.cs.ruu.nl/mirror/CPAN/modules/by-category/14_Security_and_Encryption/User/ILYAZ/images/?N=D http://www.egroups.com/login.cgi?login_target=%2Fmessage%2FFloodsystems%2F45 http://www.mirnet.org/ccsi/nisorgs/ukraine/kyiv/renaisnc.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=231&discrim=2,125,10 http://ring.omp.ad.jp/archives/lang/perl/CPAN/authors/id/BRADAPP/PodParser-1.17.readme http://www.amzn.com.ref.digital-price.com/redir/amzn.com/prods/0553373730 http://library.cwu.edu/search/dGermany+--+Politics+and+government+--+1918-1933/dgermany+politics+and+government+1918+1933/-5,-1,0,B/marc&F=dgermany+politics+and+government+1918+1933+bibliography&1,1, http://www.multicosm.com/facade/www.unisys.com/partners/default.asp?cn=su http://enjoy100.com.cn/200006/08/sssh/sssh_ssjp.html http://enjoy100.com.cn/200006/08/yskj/b_s_big3_f.jpg.html http://www.hoops.ne.jp/~zuikaku/photo2000/0811/rie11.html http://pub23.ezboard.com/fiolaniy2kmessageboardfrm1.showMessage?topicID=66.topic http://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/ULPFR/Wais-2.301.readme http://www3.newstimes.com/archive99/mar1199/spg.htm http://ftp1.support.compaq.com/public/vms/axp/v6.2-1h2/dsnlink/2.2/dsnlinkd022.CVRLET_TXT http://ftp.nacamar.de/pub/redhat/cpan/6.2/CPAN-archive/doc/manual/html/pod/perldsc.html http://ftp.nacamar.de/pub/redhat/cpan/6.2/CPAN-archive/doc/manual/html/pod/perlfaq5.html http://info.cs.unitn.it/sdb/de/html/keylist.SOFTWARE.html http://www.online.kokusai.co.jp/Mmf_corner/V0043545/mmf_corner/mmf_corner/url http://www.office.com/global/0,2724,66-15915,FF.html http://polygraph.ircache.net:8181/home/ISO9001.htm http://www.allgemeine-immobilien-boerse.de/niedersachsen/emsland/Verkauf/Versteigerungen-IB/Startseite/Allgemeine-IB/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/hilfe.htm http://launchbase.com/Health/Home_Health/communication/information/Science.htm http://library.cwu.edu/search/aLockyer,+Norman,+Sir,+1836-1920/alockyer+norman+sir+1836+1920/-17,-1,0,B/frameset&F=alockwood+victoria+s+1953&1,1 http://bbs.kcm.co.kr/NetBBS/Bbs.dll/chbod05/lst/qqa/r/qqo/004D/zka/B2-kCYFl http://www.egroups.com/post/bhagavad_gita?act=forward&messageNum=101 http://carriage.de/Schoner/Literatur/info-e/Geschichte/modelle/ http://carriage.de/Schoner/Literatur/info-e/Geschichte/history/ http://carriage.de/Schoner/Literatur/info-e/Geschichte/literature/ http://wwwftp.ciril.fr/pub/linux/kernel///people/andrea/kernels http://www.inctechnology.com/guide/item/0,7462,AGD6_GDE79,00.html http://live.sportsline.com/u/basketball/college/teams/injuries/VATECH.htm http://www-1.cisco.com/univercd/cc/td/doc/product/lan/28201900/1928v67x/28icg67x/28icpref.pdf http://www.hitlist.com/music/presult/003948.php3 http://ip.tosp.co.jp/Eki/TosiE000.asp?I=Jerryfish http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=(20,0)-16,0-9,2 http://www.bigchurch.com/cgi-bin/w3com/pws/bc/RLhIotYxW-B0bt7seq4d876RzKIuJDYbydJP1qooxhzSKDVca77BUHQv6tsO2JdNpkx837SBl7FHRIEy00rmcLBk9Y1kQEmni0_YSk5mrym8WALtovIPQU_vlEtiMcNswNyh9z6CjU-2oS2uurrk666t http://www.secinfo.com/d2wVq.7hv.htm http://www.secinfo.com/d2wVq.6yd.htm http://www.secinfo.com/d2wVq.6Y5.htm http://www.secinfo.com/d2wVq.5gf.htm http://www.secinfo.com/d2wVq.5hp.htm http://www.secinfo.com/d2wVq.5y4.htm http://ring.htcn.ne.jp/pub/text/CTAN/graphics/psfig/unsupported/macdemo/macfigs/?N=D http://ring.htcn.ne.jp/pub/text/CTAN/graphics/psfig/unsupported/macdemo/macfigs/?M=A http://books.hyperlink.co.uk/xt2/Drakelow_Unearthed/Stokes/Paul/0904015408 http://www.homestead.com/rebeccah/files/ http://sunsite.compapp.dcu.ie/pub/linux/redhat/redhat-6.1/alpha/usr/share/locale/ga_IE/LC_TIME http://www.gbnf.com/genealogy/rockwel4/html/d0037/I2684.HTM http://www.yorosiku.net:8080/-_-http://www.dd.iij4u.or.jp/~oni9/skebe/aindex18.html http://www.yorosiku.net:8080/-_-http://www.dd.iij4u.or.jp/~oni9/skebe/aindex12.html http://www.yorosiku.net:8080/-_-http://www.dd.iij4u.or.jp/~oni9/skebe/atg05.html http://shn.webmd.net/content/article/1700.50808 http://home.clara.net/cornell/woodcraft/spring2000/contents.htm http://dic.empas.com/show.tsp/EDACITY http://www.sanxia.net/beauty/Eriimai/417.htm http://www.judds-resort.com/judds/Lake-Winni-pike-lodge/97menu/fallphoto/playground/boat/photo/12.html http://www.judds-resort.com/judds/Lake-Winni-pike-lodge/97menu/fallphoto/playground/boat/fallphoto/2.html http://imageserver2.tibetart.com:8087/fif=fpxbuddhistreverse/56.fpx&init=0.0,0.0,1.0,1.0&rect=0.0,0.25,0.5,0.75&wid=1443&hei=400&lng=en_US&enablePastMaxZoom=OFF&page=image.html&obj=uv,1.0&cmd=W http://www.jamba.nl/KNet/_KNet-krE8j1-KC4-pv5y/showInfo-hilfe.nl/node.0/ce6u2jadf http://www.babyheirlooms.com/catalog/htmlos.cat/011639.1.3372173854 http://community.webshots.com/photo/441160/441363 http://www.kaos.dk/sexriddle/x/n/d/x/b/ http://isbn.nu/088730866X/chapters http://login.hq.cricinfo.org/link_to_database/ARCHIVE/1992-93/AUS_LOCAL/MMC/WA_NSW_MMC_11OCT1992.html http://login.hq.cricinfo.org/link_to_database/ARCHIVE/1991-92/AUS_LOCAL/FAI/WA_TAS_FAI_11OCT1991.html http://login.hq.cricinfo.org/link_to_database/ARCHIVE/1991-92/AUS_LOCAL/FAI/WA_QLD_FAI-SEMI_19OCT1991.html http://login.hq.cricinfo.org/link_to_database/ARCHIVE/1980S/1987-88/AUS_LOCAL/MDC/WA_SOA_MDC_06MAR1988.html http://login.hq.cricinfo.org/link_to_database/ARCHIVE/1980S/1981-82/AUS_LOCAL/MDC/QLD_WA_MDC_08NOV1981.html http://www.chaos.dk/sexriddle/x/k/l/y/h/ http://tucows.teihal.gr/winnt/preview/6004.html http://tucows.teihal.gr/winnt/preview/5986.html http://tucows.teihal.gr/winnt/preview/71328.html http://tucows.teihal.gr/winnt/preview/2757.html http://www.medoc-ias.u-psud.fr:81/synoptic/gif/950724/?N=D http://www4.nas.edu/ohr.nsf/All+Documents/Major+Units?OpenDocument&ExpandSection=18,7,21,20,4 http://members.xoom.fr/logart/Anciens/Liste25/Selection_Navlist25.html http://polygraph.ircache.net:8181/http_-2www.arthritis.org/http_-2pathfinder.com/si/swimsuit/swim97/terms2.html http://polygraph.ircache.net:8181/http_-2www.arthritis.org/http_-2pathfinder.com/si/swimsuit/swim97/products2.html http://debian.linux.org.tw/debian/dists/Debian2.2r0/main/disks-m68k/current/doc/ http://findmail.com/dir/Arts/Writing/Fan_Fiction?st=1943 http://www.telecombroker.com/q/001p/tgcb/4izQYz7mc.htm http://www.free-phone.com/q/001p/tgcb/ItMd2D3jdEM.htm http://www.123bestlongdistance.com/q/001p/tgcb/msN54jfl4mE.htm http://www.netitor.com/photos/schools/nw/sport/w-baskbl/97action/?S=A http://excite.de/katalog/katalog/33823 http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/music/midi/lit/misc/unitest/programs/ http://yp.gates96.com/14/43/40/9.html http://yp.gates96.com/14/43/40/43.html http://yp.gates96.com/14/43/40/82.html http://yp.gates96.com/14/43/40/85.html http://yp.gates96.com/14/43/41/6.html http://yp.gates96.com/14/43/41/18.html http://yp.gates96.com/14/43/41/44.html http://yp.gates96.com/14/43/41/96.html http://yp.gates96.com/14/43/42/12.html http://yp.gates96.com/14/43/46/38.html http://yp.gates96.com/14/43/46/66.html http://yp.gates96.com/14/43/46/68.html http://yp.gates96.com/14/43/47/4.html http://yp.gates96.com/14/43/47/37.html http://yp.gates96.com/14/43/47/64.html http://yp.gates96.com/14/43/47/68.html http://yp.gates96.com/14/43/47/70.html http://yp.gates96.com/14/43/48/68.html http://yp.gates96.com/14/43/48/69.html http://yp.gates96.com/14/43/49/7.html http://yp.gates96.com/14/43/49/36.html http://yp.gates96.com/14/43/49/37.html http://yp.gates96.com/14/43/49/52.html http://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/5P005|972959562|Accessories|user|0|1,0,0,1 http://school.educities.org/card/judy180.html http://207.138.41.133/message/the-voice1/123 http://207.138.41.133/message/the-voice1/124 http://www-d0.fnal.gov/d0dist/dist/releases/p05.00.00/muo_analyze/?S=A http://sjsulib1.sjsu.edu:81/search/cernest+haberkern+director/-5,-1,0,B/frameset&cgeorge+miller+director&1,1 http://ring.nii.ac.jp/pub/pack/x68/net/00_index.txt http://pub24.ezboard.com/fdoyoustillneedtoventfrm43.showMessage?topicID=19.topic http://pub24.ezboard.com/fdoyoustillneedtoventfrm43.showMessage?topicID=15.topic http://ukinvest.ukwire.com/articles/200007200700261473O.html http://www.brd.net/brd-cgi/brd_multimedia/lautsprecher/LZ7460LK/ci=972822952.htm http://my.netian.com/~haeng14/tatler_july6.htm http://genforum.genealogy.com/cgi-genforum/forums/anderton.cgi?122 http://www.excelsior.com.mx/0001/000125/for03.html http://www.jobvillage.com/channel/jobs/sciences/b.9070.g.1675.html http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/www/contact.html?annotate=1.19&sortby=author http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/www/contact.html?r1=1.12&sortby=author http://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1998-99/jmc1/labs/Ex06/skw98/?N=D http://www.jamba.de/KNet/_KNet-fNw8j1-6Fd-13acp/browse.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-fNw8j1-6Fd-13act/browse.de/node.0/cdel3j591 http://www.nedstat.nl/cgi-bin/viewstat?name=mrbertmat http://no.egroups.com/message/acessibilidade/1092 http://no.egroups.com/message/acessibilidade/1099 http://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|38P08A|972959552|Communications|user|0|1,0,0,1 http://213.36.119.69/do/session/152990/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/spectacles/ http://213.36.119.69/do/session/152990/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/CA_EN/ http://wiki2.parsimony.net/wiki2954/ http://www.f2.parsimony.net/forum2954/messages/214.htm http://www.f2.parsimony.net/forum2954/messages/181.htm http://www.f2.parsimony.net/forum2954/messages/292.htm http://www.f2.parsimony.net/forum2954/messages/115.htm http://www.f2.parsimony.net/forum2954/messages/290.htm http://www.f2.parsimony.net/forum2954/messages/54.htm http://home.pchome.com.tw/cool/162203/wunew15.htm http://hem.fyristorg.com/lottaleman/LLfar/1_6721.htm http://www.babyheirlooms.com/catalog/htmlos.cat/011628.1.4596216338 http://www.affiliate.hpstore.hp.co.uk/do/session/380833/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp http://www.outdoorwire.com/content/lists/dirt/200007/msg00127.html?{LoadingFrameset} http://adept.subportal.com/sn/Programming/ActiveX/11674.html http://www.staroriental.net/nav/soeg/ihf,aog,s0,10,Lam+Hei-Lui.html http://www-d0.fnal.gov/d0dist/dist/releases/p05.00.01/man/?N=D http://members.tripod.com/bluti/PSX/V/VACUUM.HTM http://connexus.tucows.com/winme/adnload/138384_29728.html http://wwwtios.cs.utwente.nl/archive/wilyfans/msg00265.html http://custom.clubnet.zeelandnet.nl/eckhardt/myself.htm http://ftp.tokyonet.ad.jp/pub/Linux/debian/dists/potato/contrib/binary-arm/otherosfs/?D=A http://www.amcity.com/charlotte/stories/1997/07/07/daily4.html?t=email_story http://www.generation-formation.fr/chiffrec.htm---o21zAo0UbDo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqHSezTHkekydMfeZJPdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbi.htm http://tv.thevines.com/leaf/AA0000369140/2 http://kuyper.calvin.edu/fathers2/NPNF2-02/Npnf2-02-06.htm http://www.intellicast.com/Ski/World/UnitedStates/Southeast/Florida/FortWaltonBeach/TEMPcast/d0_12/ http://stevebarnes.studiostore.com/aboutus/b.EMERCH/s.P01EBK2I http://student.monterey.edu/Students_N-R/richterheidil/private/ http://ds.dial.pipex.com/town/drive/kch36/select/s30/ch052.html http://ds.dial.pipex.com/town/drive/kch36/select/s30/ch027.html http://ds.dial.pipex.com/town/drive/kch36/select/s30/ch077.html http://ds.dial.pipex.com/town/drive/kch36/select/s30/ch092.html http://soneraplaza.tucows.com/winme/adnload/137026_28536.html http://www.egroups.com/post/realtyindia http://www.kita.or.kr/untpdc/incubator/zwe/tphar/ZIMB0037.htm http://citeseer.nj.nec.com/nrelated/126165/187254 http://citeseer.nj.nec.com/cachedpage/187254/1 http://citeseer.nj.nec.com/cidcontext/2417551 http://yp.gates96.com/13/6/1/36.html http://yp.gates96.com/13/6/1/61.html http://yp.gates96.com/13/6/1/83.html http://yp.gates96.com/13/6/1/91.html http://yp.gates96.com/13/6/3/39.html http://yp.gates96.com/13/6/3/45.html http://yp.gates96.com/13/6/3/65.html http://yp.gates96.com/13/6/4/46.html http://yp.gates96.com/13/6/4/57.html http://yp.gates96.com/13/6/5/44.html http://yp.gates96.com/13/6/6/21.html http://yp.gates96.com/13/6/6/42.html http://yp.gates96.com/13/6/7/0.html http://yp.gates96.com/13/6/7/30.html http://yp.gates96.com/13/6/7/69.html http://yp.gates96.com/13/6/7/82.html http://yp.gates96.com/13/6/8/5.html http://yp.gates96.com/13/6/8/98.html http://yp.gates96.com/13/6/9/45.html http://home.wanadoo.nl/hockeyclub.nieuwegein/Teams/Dames/Dames_IV/body_dames_iv.html http://pub3.ezboard.com/fthe4thdimensiongeneralinsanity.subscribeUnregisteredToTopic?topicID=38.topic http://pub3.ezboard.com/fthe4thdimensiongeneralinsanity.unsubscribeUnregisteredToTopic?topicID=38.topic http://moviestore.zap2it.com/help_shipping/s.hXCLyc56 http://www.geocities.co.jp/Outdoors/2363/typoon1.html http://ua.php.net/manual/it/function.pg-numrows.php http://kidneyfailure.shn.net/roundtable_reply/727640 http://itcareers.careercast.com/texis/it/itjs/+HwwBmje0B-deZqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyPxGwproqamn5otDnGaoDm15BGowcamn5otDapGdm1qBamnVncdpa5dhBiwGna5BGwBnton5ah1DqBodDanD51GnaMFqnFZI0DzmzwwwpBmje0B-deZqwww5rmeZpwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+lwwBmex6D86egqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyPxGwproqamn5otDnGaoDm15BGowcamn5otDapGdm1qBamnVncdpa5dhBiwGna5BGwBnton5ah1DqBodDanD51GnaMFqnFZI0DzmzwwwpBmje0B-deZqwww5rmeacwwwBrmeZpwww/morelike.html http://pub23.ezboard.com/fhardoverclockfrm1.showAddReplyScreenFromWeb?topicID=43.topic&index=3 http://www.adquest3d.com/content.cfm?BRD=1578&PAG=63 http://pelit.saunalahti.fi/.1/tucows/adnload/51_28438.html http://pelit.saunalahti.fi/.1/tucows/preview/70307.html http://www.maillist.com.tw/maillist/publicboard_newform.pl?maillist_id=softuse http://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/woody/non-free-jp/binary-alpha/news/?M=A http://ustlib.ust.hk/search*chi/amarcot+bruce+g/amarcot+bruce+g/-5,-1,0,B/frameset&F=amarcotty+michael+1931&1,1 http://wine.cc.chuo-u.ac.jp/home/pub/TeX/CTAN/support/rtf2tex/?M=A http://netchief.tucows.com/winme/preview/75911.html http://yp.gates96.com/4/57/60/83.html http://yp.gates96.com/4/57/60/99.html http://yp.gates96.com/4/57/62/17.html http://yp.gates96.com/4/57/62/88.html http://yp.gates96.com/4/57/63/9.html http://yp.gates96.com/4/57/63/39.html http://yp.gates96.com/4/57/63/64.html http://yp.gates96.com/4/57/64/33.html http://yp.gates96.com/4/57/65/41.html http://yp.gates96.com/4/57/65/70.html http://yp.gates96.com/4/57/66/18.html http://yp.gates96.com/4/57/66/56.html http://yp.gates96.com/4/57/66/61.html http://yp.gates96.com/4/57/66/94.html http://yp.gates96.com/4/57/67/0.html http://yp.gates96.com/4/57/67/63.html http://yp.gates96.com/4/57/67/85.html http://yp.gates96.com/4/57/69/1.html http://yp.gates96.com/4/57/69/56.html http://citeseer.nj.nec.com/cs?q=dbnum%3D1,DID%3D9262,qtype%3Dsamesite: http://citeseer.nj.nec.com/cidcontext/163444 http://www.amazon.com.au/exec/obidos/change-style/tg/stores/detail/-/books/0873995562/e-mail-friend/ http://www.sdinfonet.com.cn/411/24/411249999.htm http://pub14.ezboard.com/fallpodsgotoroswellsayhello.threadControl?topicID=17.topic http://in.egroups.com/message/sexualidades-noticias/14 http://in.egroups.com/message/sexualidades-noticias/37 http://library.cuhk.edu.hk/search*chi/dChinese+literature+--+20th+century+--+Periodicals/dchinese+literature+++20th+century+periodicals/-5,-1,0,B/frameset&F=dchinese+literature+++20th+century+periodicals&26,,188 http://www.3w-zeitschriften.de/EyreLinda/EyreLinda1582380570.htm http://cometweb01.comet.co.uk/do!session=132027&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkjHfZoLlplLcqkKZljLlfb5lal5tkiLlXaLl0 http://retailer.gocollect.com/do/session/1912774/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp http://providenet.games.tucows.com/adnload/71993_40744.html http://www.geocities.co.jp/playtown-Toys/6366/bbsp.html http://www.hnby.com.cn/docroot/jzrb/200001/19/km01/19031711.htm http://213.36.119.69/do/session/152997/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/IT_IT/ http://www.jamba.de/KNet/_KNet-p7t8j1-FEd-139gj/showInfo-datenschutz.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-p7t8j1-FEd-139gn/browse.de/node.0/cdzqggtyb http://www.paidmania.com/getpaid/signup/42/2518 http://www.pressa.spb.ru/newspapers/nevrem/arts/nevrem-1679-art-13.html http://jproxy.uol.es/jproxy/http://jama.ama-assn.org/issues/current/related/joc00479.html http://www.mirror.kiev.ua:8082/paper/2000/11/1251/text/11-08-2.htm http://my.netian.com/~eco71/wzmain.html http://www.craft-supplies.co.uk/cgi-bin/psProdDet.cgi/HT206|972959540|Deluxe_Dividers|user|0|0,0,1,1 http://www.trax.nilex.co.uk/trax.cgi/A1S/1AR/A3R/B3D/A4R/A4S/ http://www.linux.com/networking/network/network/development/project/growth/ http://www.linux.com/networking/network/development/project/growth/sales/ http://www.icopyright.com/1.1653.134616 http://retailer.gocollect.com/do/session/1912718/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp http://www.dw-tv.de/indonesia/sari_pers/19793.html http://freethemes.netc.pt/skins/icq/preview/44470.html http://freethemes.netc.pt/skins/icq/adnload/26145.html http://freethemes.netc.pt/skins/icq/preview/52524.html http://freethemes.netc.pt/skins/icq/adnload/52040.html http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=7,18,9,16 http://golfonline.comfluent.net/cgi.pan$player&pga93&John_Morse&pga?golfstats http://wai.camera.it/_presidenti/003.htm http://www.pcmagazine.de/produkte/artikel/komp/200003/mainboards01_00-wc.html http://www.pcmagazine.de/produkte/artikel/komp/199908/asus_00-wc.html http://se.sslug.dk/emailarkiv/locale/2000_09/msg00053.html http://se.sslug.dk/emailarkiv/locale/2000_09/msg00057.html http://se.sslug.dk/emailarkiv/locale/2000_09/msg00115.html http://www.brio.de/BRIO.catalog/39fe2f7406fad828273fd472aa7806ff/UserTemplate/8 http://link.fastpartner.com/do/session/600389/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/jobpilot.php http://www.shopworks.com/grizzlygulch/index.cfm/action/search/userid/000B40E3-1177-19FE-A703010D0A0A8CF2 http://www.shopworks.com/grizzlygulch/index.cfm/action/product/prodid/0001AF94-3FC3-19E7-A703010D0A0A8CF2/userid/000B40E3-1177-19FE-A703010D0A0A8CF2 http://spiritwolf52.subportal.com/sn/Web_Authoring/Misc__Programming_Tools/2670.html http://www.chaos.dk/sexriddle/o/g/j/h/t/ http://link.fastpartner.com/do/session/600394/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/learn/ http://opac.lib.rpi.edu/search/dpolitical+corruption+united+states/-5,-1,0,B/frameset&dpolitical+corruption+united+states&7,,22 http://cnnsi.com/baseball/mlb/news/2000/01/28/ http://amrr.com/agents/contact.html?Agents_id=3707 http://www.dulux.co.uk/UKRETAIL:1489107816:DFinity.1QJiP4jMomdkbEc http://www.geocities.com/SiliconValley/Screen/9059/ http://www.nrk.no/finnmark/x17_4_96/nyh4.htm http://in.egroups.com/message/islaam/288 http://www.incestpornstories.com/knocked-upepisiotomy/fertileoff-the-rag/one-night-standlubrication/japaneseslanted-eyes/{storieslink} http://kuyper.calvin.edu/fathers2/ANF-04/anf04-30.htm http://wuarchive.wustl.edu/systems/unix/NetBSD/NetBSD-release/src/sys/arch/sun3/stand/bootxx/ http://polygraph.ircache.net:8181/services/define/noframes/http_-2www.microsoft.com/ie/download/http_-2www.microsoft.com/infoserv/about.html http://pub23.ezboard.com/fferion80369frm4.showMessage?topicID=192.topic http://pub23.ezboard.com/fferion80369frm4.showMessage?topicID=182.topic http://www.cs.ruu.nl/mirror/CPAN/authors/id/N/NO/?S=A http://yp.gates96.com/1/40/30/16.html http://yp.gates96.com/1/40/30/72.html http://yp.gates96.com/1/40/30/99.html http://yp.gates96.com/1/40/31/25.html http://yp.gates96.com/1/40/31/42.html http://yp.gates96.com/1/40/31/54.html http://yp.gates96.com/1/40/31/61.html http://yp.gates96.com/1/40/31/95.html http://yp.gates96.com/1/40/32/39.html http://yp.gates96.com/1/40/32/88.html http://yp.gates96.com/1/40/32/92.html http://yp.gates96.com/1/40/33/33.html http://yp.gates96.com/1/40/34/24.html http://yp.gates96.com/1/40/34/51.html http://yp.gates96.com/1/40/34/62.html http://yp.gates96.com/1/40/34/72.html http://yp.gates96.com/1/40/35/38.html http://yp.gates96.com/1/40/36/80.html http://yp.gates96.com/1/40/36/98.html http://yp.gates96.com/1/40/37/35.html http://yp.gates96.com/1/40/37/89.html http://yp.gates96.com/1/40/38/13.html http://yp.gates96.com/1/40/38/67.html http://yp.gates96.com/1/40/39/8.html http://yp.gates96.com/1/40/39/11.html http://yp.gates96.com/1/40/39/42.html http://netway.pda.tucows.com/palm/preview/33466.html http://netway.pda.tucows.com/palm/preview/70276.html http://netway.pda.tucows.com/palm/adnload/76963_22012.html http://netway.pda.tucows.com/palm/preview/33676.html http://www.private-immobilien-boerse.de/berlin-immobilien/verkauf/Private-IB/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Immolink/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm http://www.ne.jp/asahi/matinami/gallery/mati/hokkaido/hakodate/ph_l011.html http://www.findarticles.com/cf_0/m0EKF/14_46/61415465/p1/article.jhtml http://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/B1S/B1L/B4S/A1S/ http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=1,21,16,5 http://students.lsu.edu/students/main.nsf/c81d2bf8cb0b80ff862566fb00105ab2/7f3436ae9cb1268886256773006f9288!OpenDocument&ExpandSection=18,21,16,5 http://ddb.libnet.kulib.kyoto-u.ac.jp/exhibit/fl3/image/fl3lhf/fl3lh0344.html http://www.trnonline.com/archives/2000archives/04072000/sports/26732.shtml http://www.linux.com/networking/network/new/press_release/management/editor/ http://www.linux.com/networking/network/new/press_release/management/experiences/ http://jundavid.subportal.com/sn/Business/Misc__Phone_Tools/index3.html http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=27,9,23,14,19 http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/mirroring.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/legendes/ http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/lit/laurent.txt http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/music/midi/misc/colorart/ http://www.lz.gs.cninfo.net/news/shenghuo/messages/361.html http://www.egroups.com/messages/skarmflyg/683 http://www.egroups.com/message/skarmflyg/675 http://www.egroups.com/message/skarmflyg/681 http://www.genoma.de/shop/0d79e8c12cc42ea8242eafc8a0c5586a/99/b http://travelocity-dest.excite.com/Vacations/Reviews/Cruise/Submit/1,2586,0_228__,00.html http://www02.geocities.co.jp/HeartLand-Sakura/1068/history.html http://www.streetprices.com/Electronics/Computer_Software_PC/Programming/MAKE+DIGITAL/sortproductbyhighprice/SP275945.html http://www.streetprices.com/Electronics/Computer_Software_PC/Programming/MAKE+DIGITAL/sortproductbyhighprice/SP246217.html http://www.emerchandise.com/help_privacy/b.TV%20SATNIGHTLIVE/s.BOkfj8Vk http://ftp.ccu.edu.tw/pub/documents/faq/mail/setup/?S=A http://iceberg.adhomeworld.com/cgi-win/redirect.exe/304063772 http://pdacentral.zeelandnet.nl/rim/email_license.htm http://pdacentral.zeelandnet.nl/rim/adnload/139471_47673.html http://www.loisirs.ch/tfhglx/17/ltxeld.html http://au.yahoo.com/Business_and_Economy/Shopping_and_Services/Health/Providers/By_Region/U_S__States/Mississippi/Cities/ http://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/15P02A|972959527|Helmet|user|0|1,0,0,0 http://news.dreamwiz.com/news_lg/04/20001030/yonhap/200010301014041007292.html http://news.dreamwiz.com/news_lg/04/20001028/yonhap/ http://pds.nchu.edu.tw/cpatch/ftp/ftpnav/?D=A http://members.tripod.lycos.co.kr/BONGBAE/?N=D http://www9.hmv.co.uk:5555/do/session/1347758/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d50_sd0_pt0.html http://itcareers.careercast.com/texis/it/itjs/+xwwBmeHWD86YwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDhmoBGnaqdGpdGwBodDarGo5awDwcO5Baiw5roDtBdDaGn31n5BaGn31oGnmamnVncdpar1MwDaGn5d1Gqn5aMFqhTfR20DzmehrwwwpBmefWD86mwww5rmeddwwwBrmeZpwww/morelike.html http://www.3w-buecher.de/GibbonsRob/GibbonsRob1572152214.htm http://sennka.hoops.livedoor.com/%91%90%8a%a0%93%fa%98a%81%f4.htm http://www.uni-duesseldorf.de/ftp/ftp/pf/s/netscape-v451/?S=A http://www.outpersonals.com/cgi-bin/w3com/pws/out/0nhIQeA1Kelaujy0pUaBOo2AAoNruJ7MPpvxwl5qu-YeCeEn6SDc5vURHb5rk8dZP84c_4bSWkIDaPe8dCV5mfxj4LA69UDbXc_J2Z-eZg7dURZLZinceqCXYFUYC4pqT29R1BQKpdPvHP0APgIYRhQG http://208.178.109.85/msgshow.cfm/msgboard=4779506785434&msg=80064825094809&page=1&idDispSub=-1 http://interbox.tucows.com/preview/61367.html http://www.crutchfield.com/cgi-bin/S-CI62JsDkHYX/viewcart.asp http://www.hig.se/(aconf,formoutput,if,modified,set_cookie)/~jackson/roxen/ http://www.trax.nilex.co.uk/trax.cgi/A1C/1AS/B1D/A3L/A1S/1AR/ http://www.trax.nilex.co.uk/trax.cgi/A1C/1AS/B1D/A3L/A1S/C1R/ http://www.trax.nilex.co.uk/trax.cgi/A1C/1AS/B1D/A3L/A1S/B4L/ http://www.haikou.hi.cn/pandect/nj/n96ei3.htm http://se.egroups.com/message/dailydreamers/36 http://sunsite.org.uk/Mirrors/ftp.cdrom.com/pub/linux/slackware/contrib/contrib-sources/gcc-2.7.2.3/ http://hp-partner.whowhere.lycos.com/hp/excite/Online_Communities/Angelfire/wi/index9.html http://www.cse.unsw.edu.au/archives/linux/redhat/beta/?M=A http://www.webcrawler.com/entertainment/music/artists_and_genres/folk_and_acoustic/artists_s/simon_and_garfunkel/garfunkel_art/interviews/ http://www.russ.ru:8081/journal/media/98-05-21/telen0.htm http://www.chaos.dk/sexriddle/x/r/k/o/w/ http://www.jt.com.br/noticias/98/06/22/sd2.htm http://retailer.gocollect.com/do/session/1912734/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/gifts/gift_floor.asp http://www.ualberta.ca/CNS/RESEARCH/Software/SAS/gis/z0782606.htm http://www.sentientnet.com/univercd/cc/td/doc/product/rtrmgmt/bluelist/cwblue21/cwbwsug/features.htm http://pub5.ezboard.com/fthekojiroestrogenbrigadeconsolegaming.threadControl?topicID=16.topic http://www.zjrs.zei.gov.cn/economy/text/policy/LHB/LHBA0909.TXT http://seascape.tucows.com/winnt/adnload/2060_29646.html http://seascape.tucows.com/winnt/adnload/2063_29648.html http://seascape.tucows.com/winnt/adnload/2066_29651.html http://ben.aspads.net/ex/c/641/517693268 http://yp.gates96.com/7/63/80/20.html http://yp.gates96.com/7/63/80/22.html http://yp.gates96.com/7/63/80/80.html http://yp.gates96.com/7/63/80/87.html http://yp.gates96.com/7/63/81/50.html http://yp.gates96.com/7/63/81/77.html http://yp.gates96.com/7/63/81/79.html http://yp.gates96.com/7/63/81/91.html http://yp.gates96.com/7/63/82/36.html http://yp.gates96.com/7/63/82/73.html http://yp.gates96.com/7/63/84/6.html http://yp.gates96.com/7/63/84/91.html http://yp.gates96.com/7/63/85/30.html http://yp.gates96.com/7/63/85/57.html http://yp.gates96.com/7/63/85/98.html http://yp.gates96.com/7/63/89/13.html http://yp.gates96.com/7/63/89/20.html http://yp.gates96.com/7/63/89/32.html http://yp.gates96.com/7/63/89/65.html http://www.rarf.riken.go.jp/archives/tex-archive/macros/latex//contrib/supported/linguex/?M=A http://members.tripod.com/shelly34/shellyphotos/page12.html http://ftp.nsysu.edu.tw/Unix/Perl/modules/by-category/23_Miscellaneous_Modules/Bundle/PlRPC-0.2003.readme http://www.affiliate.hpstore.hp.co.uk/do/session/380827/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/vacationcards.asp http://www.marktplatz-hs.de/cgi-bin/ChioEditionShop.s/39fe2ee3005fd9642740d47540f806e1/IconBar http://home.sprynet.com/~keithco/london.htm http://earth.collectingnation.com/cgi-bin/bn/post.mod/aupn?B=cna&R=48 http://earth.collectingnation.com/cgi-bin/bn/post.mod/aupn?B=cna&R=38 http://www.realize.com/am747b81.htm,qt=e784fe2f=2a38a234-e-1adebfb-80000000-0-0-3-- http://www.opengroup.com/dfbooks/009/0091856140.shtml http://www.egroups.org/message/fotografya/216 http://www.cn.informatik.fh-furtwangen.de/studenten/dv_labor/onlinebuecher/php/function.yaz-errno.html http://www.cn.informatik.fh-furtwangen.de/studenten/dv_labor/onlinebuecher/php/function.yaz-hits.html http://www.cn.informatik.fh-furtwangen.de/studenten/dv_labor/onlinebuecher/php/function.yaz-wait.html http://www.catholicstore.com/search/index.cfm/FuseAction/detailSearch/SKU/17311/category/Bo/subCategory/G/subject/1 http://www.cc.ntut.edu.tw/~584ce040/anne-1.htm http://www.intervoz.com.ar/2000/09/23/sociedad_n11.htm http://pub22.ezboard.com/frecipegoldminesharearecipe.showAddReplyScreenFromWeb?topicID=4.topic http://opencity.kulichki.ru/moshkow/PROZA/LIPSKEROV/okno.txt http://www.tccomputers.com/cgi-bin/bp/1021890426/products/modems/modems.htm http://www.tccomputers.com/cgi-bin/bp/1021890426/services/sitemap.htm http://library.bangor.ac.uk/search/dCrystallography+--+Periodicals/dcrystallography+periodicals/-5,-1,0,B/frameset&F=dcrystallography+mathematical&8,,9 http://music.excite.ca/artist/-264813 http://www.gameboyz.com/g/review_465_p4_n3.html http://library.cwu.edu/search/aCarande,+Robert/acarande+robert/-5,-1,0,B/2exact&F=acarande+robert&1,2 http://www.townstuff.com/search.cfm?directory=1040&town=285 http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/graphics/png/files/patch-aa?only_with_tag=RELEASE_2_2_7 http://www.amcity.com/columbus/stories/1997/07/07/focus6.html?t=email_story http://retailer.gocollect.com/do/session/1912716/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp http://ds.dial.pipex.com/town/drive/kch36/select/s12/ch034.html http://ds.dial.pipex.com/town/drive/kch36/select/s12/ch118.html http://www.dbring.de/160/16005-09.html http://198.103.152.100/search*frc/lHQ+769+E3614/lhq++769+e3614/7,-1,0,B/frameset&F=lhq++777.4+d47&1,1 http://yp.gates96.com/7/27/70/14.html http://yp.gates96.com/7/27/70/27.html http://yp.gates96.com/7/27/70/35.html http://yp.gates96.com/7/27/70/37.html http://yp.gates96.com/7/27/70/62.html http://yp.gates96.com/7/27/71/38.html http://yp.gates96.com/7/27/71/80.html http://yp.gates96.com/7/27/72/62.html http://yp.gates96.com/7/27/72/80.html http://yp.gates96.com/7/27/73/10.html http://yp.gates96.com/7/27/73/61.html http://yp.gates96.com/7/27/73/78.html http://yp.gates96.com/7/27/74/7.html http://yp.gates96.com/7/27/74/16.html http://yp.gates96.com/7/27/75/62.html http://yp.gates96.com/7/27/76/90.html http://yp.gates96.com/7/27/77/7.html http://yp.gates96.com/7/27/77/92.html http://yp.gates96.com/7/27/78/21.html http://yp.gates96.com/7/27/79/21.html http://yp.gates96.com/7/27/79/57.html http://yp.gates96.com/7/27/79/96.html http://moviestore.zap2it.com/help/b.STARWARSSAGA%20STARWARS-ROJ/s.nrF6V2sr http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=8,27,13,5 http://newspaper.swww.com.cn/1999/cdwb/199912/26/html/1003.html http://newspaper.swww.com.cn/1999/cdwb/199912/26/html/1008.html http://iworld.freethemes.com/adnload/77752.html http://iworld.freethemes.com/adnload/15251.html http://iworld.freethemes.com/adnload/54697.html http://iworld.freethemes.com/adnload/15232.html http://www.fogdog.com/cedroID/ssd3040183238457/nav/products/ice_hockey/1d/gear_accessories/ http://www.ftp.uni-erlangen.de/pub/Linux/DEBIAN/dists/Debian2.2r0/main/binary-m68k/doc/ http://www.ftp.uni-erlangen.de/pub/Linux/DEBIAN/dists/Debian2.2r0/main/binary-m68k/sound/ http://library.cwu.edu/search/aThimbleby,+Harold/athimbleby+harold/-5,-1,0,B/exact&F=athilde+jean&1,2 http://www5.pconline.com.cn/pcedu/soft/doc/001024/2.htm http://member.nifty.ne.jp/kaito-mist/nifty5.htm http://www.cc.yamaguchi-u.ac.jp/~archive/doc/jdk1.2.2/docs/api/java/awt/image/BandedSampleModel.html http://www.sandiego.digitalcity.com/honolulu/arts/occurrence.dci?ecid=75 http://ubahn.exit.de/ffm/pic/pp/?S=A http://www.visiobroker.com/opcvm/details/4/43591.html http://www.visiobroker.com/opcvm/details/9/9765.html http://ring.toyama-ix.net/archives/linux/debian/debian-jp/dists/woody-towns/?M=A http://www.asahi-net.or.jp/~ZI3H-KWRZ/lawylegalaid.html http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/195/1999/7/0/ http://www.buybuddy.com/sleuth/27/1/1060103/490578/ http://java.javasoft.com/products/jdk/1.2/ja/docs/ja/api/java/awt/image/BandedSampleModel.html http://mitglied.tripod.de/~HTTC/mannschaften/3LigaGr1_0001.htm http://opac.lib.rpi.edu/search/anightingale+peggy+1942/-5,-1,0,B/browse http://ftp.unina.it/pub/Amiga/NetBSD/NetBSD-current/pkgsrc/editors/ssam/files/ http://kikakusvr3.city.yokohama.jp/y/j/e25/ktt/ktt.html http://members.spree.com/entertainment/juskickit/http//members.spree.com/sports/comicus1 http://www.butuanon.tsx.org/ http://archive.soccerage.com/s/de/07/05375.html http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1995/10/0/859255/ http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1995/10/50 http://polygraph.ircache.net:8181/http_-2www.soniajekums.com/docs/Http_-2ua.battle-zone.com/html/html/on_line.html http://www.affiliate.hpstore.hp.co.uk/do/session/380855/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-creativeworld.com/creativeworld.asp?lang=f http://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/T/TO/TOSTI/vstadaf-0.01.readme http://www.xmission.com/~dkenison/cgi/lwgate.cgi/KLR650/archives/v02.n1633/Subject/article-16.html http://www.realize.com/p25581.htm,qt=e784fe2f=2a38a234-7-da710e-0-0-0-1-- http://www.realize.com/am947681.htm,qt=e784fe2f=2a38a234-7-da6e1d-80000000-0-0-3-- http://www.realize.com/am2c3a81.htm,qt=e784fe2f=2a38a234-7-da6e1d-80000000-0-0-3-- http://www.realize.com/amd15381.htm,qt=e784fe2f=2a38a234-7-da6e1d-1-84-0-3-- http://link.fastpartner.com/do/session/600403/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/speednames.php http://home.freeuk.net/lyne/work.htm http://www.gotocity.com/local/2/us/AZ/p/85643/people/ http://www.service911.com/egghead/step/0,2743,6+33+121+25440+18092_4,00.html http://www.jamba.de/KNet/_KNet-irv8j1-WEd-139z7/showInfo-werbung.de/node.0/cenv0b09a http://ustlib.ust.hk/search*chi/dbeijing+mandarin+dialects+china+slang/dbeijing+mandarin+dialects+china+slang/-5,1,1,B/frameset&F=dbeijing+mayors+china+fiction&1,1, http://www.linux.org.tw/~chester/xlib/GC/convenience-functions/XSetGraphicsExposures.html http://www.linux.org.tw/~chester/xlib/graphics/font-metrics/XUnloadFont.html http://www.chaos.dk/sexriddle/c/f/j/u/c/ http://www.chaos.dk/sexriddle/c/f/j/u/q/ http://www.bornloser.com/comics/committed/archive/committed-20001027.html http://tulips.ntu.edu.tw/search*chi/dDeath+lc/ddeath+lc/-17,-1,0,E/frameset&F=ddeath+in+adolescence+abstracts&1,,0 http://hem.fyristorg.com/lottaleman/LLfar/1_6955.htm http://preview.egroups.com/post/scoresheet-talk?act=reply&messageNum=7013 http://209.52.189.2/profile.cfm/TimmyJ http://archive.soccerage.com/s/pt/37/04816.html http://pub16.ezboard.com/fleftbehindmessageboardfellowshiphall.showMessage?topicID=456.topic&index=16 http://www.2pl.com/asp/tools/fili1.asp?sp=se&fi=pppp0005s8 http://link.fastpartner.com/do/session/600382/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/jobs.htm http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdenetwork/kppp/Rules/Poland/?only_with_tag=MAIN http://genforum.genealogy.com/cgi-genforum/forums/flippin.cgi?30 http://pub.chinaccm.com/23/news/200010/28/114339.asp http://pub.chinaccm.com/23/news/200010/27/134259.asp http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=21,9,14,35,15 http://gamesearcher.com/games/pc/returnofphantom-cheatsfaqs.html http://ua.php.net/manual/es/function.pg-errormessage.php http://findmail.com/group/prairydog http://www.loria.fr/projets/dilib/DILIB_ROOT/SYSTEMS/Linux/Dilib/Data/NLM/MedLine/ http://www.daysinn.com/ctg/cgi-bin/DaysInn/programs/AAAksrACwAAACEaAAQ http://www.leo.org/leoclick/35dd60550f1ba90ed5bb7952eebae0d3+L+1__ http://members.fortunecity.com/abbalink/songs/lyrics/wg.htm http://chat.sportsline.com/u/football/nfl/xword/answers/091500.htm http://210.173.172.13/entertainments/sports/sydney/kanrenkiji/0924/0925m096-500.html http://210.173.172.13/entertainments/sports/sydney/kanrenkiji/0924/0925m094-500.html http://www.private-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/3d-service/Gemeinsam/Inserieren/3d-service/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm http://www.private-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/3d-service/Gemeinsam/Inserieren/3d-service/Gemeinsam/IIMMitglieder.htm http://www.realize.com/amcf7781.htm,qt=e784fe2f=2a38a234-4-7cf2ef-80000000-0-0-3-- http://family.go.com/Categories/Features/family_1998_12/penn/penn128urban/ http://www.loria.fr/projets/dilib/DILIB_ROOT/ApplicationsTest/Dilib/newBD/Prog/?N=D http://www.loisirs.ch/xfeoav/7/kqbmsh.html http://tucows.tu-graz.ac.at/herdwin0807.html http://www-d0.fnal.gov/cgi-bin/cvsweb.cgi/gtr_htf/dat/?sortby=log http://www.buybuddy.com/sleuth/17/1/2006/32619/ http://www.aelita.net/products/Reg/QuoteRegister/products/library/products/company/Privacy.htm http://www.refdag.nl/bui/990803bui08.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,6-14,0+0,2 http://www.aelita.net/products/services/support/sitemap/news/solutions/default.htm http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=26,5,30,16,12 http://www.ericsson.cl/gsmpro/contact.shtml http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maheuitu/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mangoo333/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maomizhijia/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/masaki_hamada/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maxiaofei/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/maz0503/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/menghuanboy/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/michealshen/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mike717/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mikeshang_2/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mingyueyaze/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mm3/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mnbv89/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/morsia/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/move/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mslug/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/msshi/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/muwei/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/my1799/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mychat2000/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/myesky/ http://members.tripodasia.com.cn/maolin_photo/maolin_suzuki/maolin_suzuki/mzlzq/ http://www.ring.gr.jp/pub/linux/Vine/VineSeed/alpha/mnt/source/sbin/loader http://www.nrk.no/finnmark/x8_5_96/nyh7.htm http://202.99.23.245/rmrb/200001/27/no_txb_6.html http://www-d0.fnal.gov/d0dist/dist/releases/test/smt_hit/test/?N=D http://www-d0.fnal.gov/d0dist/dist/releases/test/smt_hit/test/LIBRARIES http://jupiter.u-3mrs.fr/~msc41www/releves/13440405.HTM http://ftp.univie.ac.at/packages/perl/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/CGI/ANDK/Apache-correct_headers.readme.html http://www.linux.com/networking/network/networking/free/windows_nt/distro/ http://www.linux.com/networking/network/networking/free/windows_nt/tip/ http://australia-holiday-guide.com/Englisch/Queensland_1/QLD_Furher_North_1/qld_further_north_1.html http://australia-holiday-guide.com/Englisch/Queensland_1/QLD_Great_Barrier_Reef_1/qld_great_barrier_reef_1.html http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Ayrton.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Deadline_1.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/DiamondPPC.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Gravity2_inv.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/HJB-BCFix.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/ImpPos.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/Nat-AutF.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/PSB-Desperado2.readme http://ftp.uni-paderborn.de/aminet/aminet/demo/aga/PSB-PUK_final.readme http://genforum.genealogy.com/cgi-genforum/forums/kilroy.cgi?34 http://genforum.genealogy.com/cgi-bin/print.cgi?kilroy::34.html http://content.health.msn.com/ef/message/803324/content.health.msn.com%2fmessage_board_message%2f803324/803324 http://de.excite.de/gesundheit/katalog/6107 http://de.excite.de/gesundheit/katalog/4909 http://de.excite.de/gesundheit/katalog/5941 http://de.excite.de/gesundheit/katalog/4924 http://de.excite.de/gesundheit/katalog/5898 http://de.excite.de/gesundheit/katalog/4949 http://de.excite.de/gesundheit/katalog/5987 http://de.excite.de/gesundheit/katalog/5855 http://de.excite.de/gesundheit/katalog/39862 http://de.excite.de/gesundheit/katalog/5852 http://de.excite.de/gesundheit/katalog/5645 http://de.excite.de/gesundheit/katalog/6078 http://de.excite.de/gesundheit/katalog/5834 http://yp.gates96.com/11/26/80/31.html http://yp.gates96.com/11/26/80/47.html http://yp.gates96.com/11/26/80/91.html http://yp.gates96.com/11/26/81/61.html http://yp.gates96.com/11/26/81/86.html http://yp.gates96.com/11/26/82/37.html http://yp.gates96.com/11/26/82/49.html http://yp.gates96.com/11/26/83/38.html http://yp.gates96.com/11/26/83/52.html http://yp.gates96.com/11/26/83/58.html http://yp.gates96.com/11/26/83/84.html http://yp.gates96.com/11/26/84/0.html http://yp.gates96.com/11/26/84/59.html http://yp.gates96.com/11/26/84/75.html http://yp.gates96.com/11/26/84/99.html http://yp.gates96.com/11/26/85/37.html http://yp.gates96.com/11/26/85/63.html http://yp.gates96.com/11/26/85/78.html http://yp.gates96.com/11/26/86/36.html http://yp.gates96.com/11/26/86/40.html http://yp.gates96.com/11/26/87/66.html http://yp.gates96.com/11/26/87/87.html http://yp.gates96.com/11/26/89/7.html http://yp.gates96.com/11/26/89/21.html http://yp.gates96.com/11/26/89/38.html http://providenet.tukids.tucows.com/mac/9-12/macspell912_license.html http://providenet.tukids.tucows.com/mac/9-12/adnload/25805_25780.html http://www04.u-page.so-net.ne.jp/zb3/eiji-m/dog6.htm http://school.educities.org/card/jou0731.html http://school.educities.org/card/ke234.html http://school.educities.org/card/aaaaaqqqqqqq.html http://school.educities.org/card/cso.html http://school.educities.org/card/g40203.html http://school.educities.org/card/h123915388.html http://school.educities.org/card/k1084211.html http://www.cigar-pipe.de/SP/dhuc3112.htm http://www.newquestcity.com/cities/MA///news/3675.htm http://caowei_814.home.chinaren.com//wenxue/wenxue-mood/love147.htm http://www.amulation.com/md-l-archive/199805/msg00065.html http://in.egroups.com/messages/conventions/51?viscount=-30 http://yp.gates96.com/11/63/20/4.html http://yp.gates96.com/11/63/20/21.html http://yp.gates96.com/11/63/20/51.html http://yp.gates96.com/11/63/21/29.html http://yp.gates96.com/11/63/21/41.html http://yp.gates96.com/11/63/21/74.html http://yp.gates96.com/11/63/22/4.html http://yp.gates96.com/11/63/22/29.html http://yp.gates96.com/11/63/22/80.html http://yp.gates96.com/11/63/22/86.html http://yp.gates96.com/11/63/23/7.html http://yp.gates96.com/11/63/23/24.html http://yp.gates96.com/11/63/23/39.html http://yp.gates96.com/11/63/24/1.html http://yp.gates96.com/11/63/25/35.html http://yp.gates96.com/11/63/25/78.html http://yp.gates96.com/11/63/25/83.html http://yp.gates96.com/11/63/26/37.html http://yp.gates96.com/11/63/27/3.html http://yp.gates96.com/11/63/27/9.html http://yp.gates96.com/11/63/27/14.html http://yp.gates96.com/11/63/28/16.html http://yp.gates96.com/11/63/28/26.html http://yp.gates96.com/11/63/28/54.html http://yp.gates96.com/11/63/28/55.html http://yp.gates96.com/11/63/29/13.html http://yp.gates96.com/11/63/29/64.html http://yp.gates96.com/11/63/29/69.html http://spaceports.tucows.com/winnt/httpservernt_license.html http://www.affiliate.hpstore.hp.co.uk/do/session/380848/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp http://incrediblegolfsavings.subportal.com/sn/Games/Simulation_Games/11310.html http://incrediblegolfsavings.subportal.com/sn/Games/Simulation_Games/12064.html http://www.linux.com/networking/linux/industry/gnu/operating_system/Corel/ http://www.linux.com/networking/linux/industry/gnu/operating_system/Updates/ http://www.fogdog.com/cedroID/ssd3040183307418/womens/ http://www.fogdog.com/cedroID/ssd3040183307418/nav/products/featured_brands/1o/casual_sunglasses/ http://www.fogdog.com/cedroID/ssd3040183307418/nav/products/featured_brands/1o/hockey_skates/ http://www.fogdog.com/cedroID/ssd3040183307418/nav/products/featured_brands/1o/sweatshirts_fleece/ http://www.fogdog.com/cedroID/ssd3040183307418/crs/nvCZ/wld/fogdog_sports/nike/football/equipment/500r_series_football.html http://www.seoul.co.kr/dmaeil/199908/0820j015.htm http://www-trn.bards.ru/Lobanovskiy/part13.htm http://www-trn.bards.ru/Vahnuk/part27.htm http://www-trn.bards.ru/Vetrova_Svetlana/part9.htm http://www-trn.bards.ru/Tretiyakov/part22.htm http://www-trn.bards.ru/Okoudjava/part202.htm http://www-trn.bards.ru/Panyushkin/part100.htm http://www-trn.bards.ru/Gorodnicky/part287.htm http://yumemi.ne.jp/bbs/ky/view/f/forum9/1_jpbshj_vvvzil.html http://yumemi.ne.jp/bbs/ky/view/f/forum9/1_xxosis_czhmrb.html http://yumemi.ne.jp/bbs/ky/view/f/forum9/1_yikriy_qjvins.html http://www.peopledaily.co.jp/shch/199907/28/newfiles/D103.html http://legalminds.lp.findlaw.com/list/newlawbooks-l/frm00336.html http://tucows.sp-plus.nl/winme/phoneme.html http://ustlib.ust.hk/search*chi/dalcoholic+beverages+china/dalcoholic+beverages+china/7,-1,0,E/2browse http://ustlib.ust.hk/search*chi/dalcoholic+beverages+china/dalcoholic+beverages+china/-5,-1,0,E/frameset&F=dalcoholic+beverages+great+britain&1,,0 http://www.canit.se/(k10,k13,k16,k6)/support/faq/faq.html http://aecjobbank.com/texis/script/jobbank/+Owwrmwxeri2wBV6evNVpwwwF6eWYqkwwwn6eXmcOwwwn6ekmyjwwwn6eULpOwwqn6eUCBZwwwn6e22QuwwwefPY9GepmwwmeiP46eczdwwmeOTB6eXhzwwwnmBVve89AHwwxeY44Ie-pxwww+vejWRhwwxealYTeXjzwwwhvep9q9wwwxveoA6kwwqe0PYieqFzwwwv6eFRFrwwwt6eSGxDwwwetNY1e8drwwqeT53Amwww0h7mwww1tzmwwweb-3qmwwww/jobdirectory.html http://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/newmenu.html http://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d30_sd0_pt0.html http://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d70_sd0_pt0.html http://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d90_sd0_pt0.html http://www9.hmv.co.uk:5555/do/session/1347780/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d120_sd0_pt0.html http://www.hbdaily.com.cn/hbrb/20000622/BIG5/hbrb^18323^12^0622h016.htm http://excite.de/immobilien/katalog/6877 http://excite.de/immobilien/katalog/7012 http://www.globalmart.com/housewares/appliances/household/irons/blackanddecker/S680.htm http://mediate.magicbutton.net/do/session/625631/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-artc.html http://ddb.libnet.kulib.kyoto-u.ac.jp/exhibit/mt3/image/mt3shf/mt3sh0192.html http://us.parsimony.net/forum26166/messages/410.htm http://linux.tnc.edu.tw/CPAN/authors/id/A/AZ/AZEMGI/?M=A http://linux.tnc.edu.tw/CPAN/authors/id/A/AZ/AZEMGI/CHECKSUMS http://launchbase.com/Shopping/Visual_Arts/communication/entertainment/Pictures_&_Images.htm http://launchbase.com/Shopping/Visual_Arts/communication/shopping/Gifts.htm http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/programs/simple/music/midi/lit/lit/quizz/quizz1.html http://home02.wxs.nl/~nash0002/amber-94.htm http://www.redrocksports.com/sports/webSession/shopper/RR972959711-31098/store/dept-5/department/dept-5/item/52400 http://www.redrocksports.com/sports/webSession/shopper/RR972959711-31098/store/dept-5/department/dept-5/item/52550 http://www.redrocksports.com/sports/webSession/shopper/RR972959711-31098/store/dept-5/department/dept-5/item/50900 http://gnu.archive.sunet.se/software/sather/ICSI_Sather/Documentation/Compiler/CompilerBrowser/shortflat-FLIST{_}.html http://mailman.real-time.com/rte-crossfire/1992/Dec/mail1.html http://de.nedstat.net/viewstat.asp?name=larsen http://ftp.ring.gr.jp/archives/pc/gnu-win32/latest/man/?S=A http://src.openresources.com/debian/src/graphics/HTML/D/S_ISSOCK.html http://www.perotech.ch/d/securedb/html/listtopic.php?4277 http://web.health.aol.thriveonline.oxygen.com/medical/library/article/003558res.html http://cn.egroups.com/message/Website_Warez/346 http://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd510213891 http://ring.nii.ac.jp/pub/pack/x68/personal/calendar/ http://www.zeal.com/Government/U_S__Government/State___Local_Governments/South_Carolina/Politics/Elections/State_wide/ http://ftp.unina.it/pub/TeX/macros/latex209/contrib/manual/?S=A http://www.perotech.ch/d/securedb/html/listtopic.php?5376 http://polygraph.ircache.net:8181/lci/https_-2ssl.galaxy-net.net/jazzee/http_-2www.microsoft.com/truetype/fontpack/win.htm http://python.konbib.nl/dutchess.ned/83/00/info-1592.html http://www.excite.com/lifestyle/cultures_and_groups/world_cultures/regions/north_america/ethnic_communities/african_american/history/military_history/ http://www.bluemonutain.com/engy/david/CHI1-educk.html http://www.bluemonutain.com/engy/susie/CHI1-edaddog.html http://cn.egroups.com/messages/childhoodepilepsy/3349 http://cn.egroups.com/messages/childhoodepilepsy/648 http://cn.egroups.com/messages/childhoodepilepsy/1189 http://polygraph.ircache.net:8181/services/design/http_-2www.swnebr.net/~cambridg/http_-2www.bikininet.com/climate.htm http://www.annuairefrancais.com/54/France/I/INTERNET/Fournisseurs-d'acces/Fournisseurs-d http://polygraph.ircache.net:8181/http_-2www.monarchcom.net/http_-2www.netscape.com/comprod/mirror/http_-2bible.gospelcom.net/http_-2www.rehablinks.com/ptlinks.htm http://findmail.com/message/studentdoctor/4312?source=1 http://mediate.magicbutton.net/do/session/625624/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-cart.html http://ring.htcn.ne.jp/archives/lang/perl/CPAN/authors/id/P/PG/?M=A http://www.buybuddy.com/sleuth/33/1/10601/526343/ http://www1.zdnet.com/products/stories/reviews/0,4161,2470142,00.html http://www1.zdnet.com/companyfinder/filters/products/0,9996,2256-82,00.html http://webcvs.kde.org/cgi-bin/cvsweb.cgi/kdeutils/ark/doc/en/Attic/index-2.html?only_with_tag=MAIN http://tv.thevines.com/leaf/AA0000364048/45///&act=24-1-11&bref=1601 http://link.fastpartner.com/do/session/600384/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php http://www.excite.com/lifestyle/politics_and_society/community_and_cultures/world_cultures/diaspora/jewish/judaism/congregations/humanistic_judaism/ http://biblio.cesga.es:81/search*gag/aXove,+Xosé/axove+xose/7,-1,0,B/frameset&F=axuntanza&1,,3 http://biblio.cesga.es:81/search*gag/aXove,+Xosé/axove+xose/7,-1,0,B/frameset&F=axuntanza&3,,3 http://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/36 http://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/37 http://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/35 http://db.zaq.ne.jp/asp/bbs/jttk_baasc506_1/article/21 http://www.tiroler-adler.com/1Root/Kontinent/6/Staat/7/Bundesland/16/Ort/691/Homepage/f_homepage...1.html http://yp.gates96.com/4/52/90/87.html http://yp.gates96.com/4/52/90/95.html http://yp.gates96.com/4/52/91/4.html http://yp.gates96.com/4/52/91/39.html http://yp.gates96.com/4/52/91/42.html http://yp.gates96.com/4/52/92/33.html http://yp.gates96.com/4/52/92/93.html http://yp.gates96.com/4/52/93/6.html http://yp.gates96.com/4/52/93/98.html http://yp.gates96.com/4/52/94/8.html http://yp.gates96.com/4/52/94/14.html http://yp.gates96.com/4/52/95/92.html http://yp.gates96.com/4/52/96/16.html http://yp.gates96.com/4/52/96/32.html http://yp.gates96.com/4/52/96/72.html http://yp.gates96.com/4/52/96/90.html http://yp.gates96.com/4/52/97/1.html http://yp.gates96.com/4/52/97/53.html http://yp.gates96.com/4/52/98/34.html http://yp.gates96.com/4/52/98/84.html http://yp.gates96.com/4/52/98/97.html http://yp.gates96.com/4/52/99/55.html http://yp.gates96.com/4/52/99/68.html http://yp.gates96.com/14/40/10/3.html http://yp.gates96.com/14/40/10/86.html http://yp.gates96.com/14/40/11/53.html http://yp.gates96.com/14/40/12/74.html http://yp.gates96.com/14/40/13/11.html http://yp.gates96.com/14/40/13/34.html http://yp.gates96.com/14/40/13/45.html http://yp.gates96.com/14/40/13/79.html http://yp.gates96.com/14/40/14/3.html http://yp.gates96.com/14/40/14/6.html http://yp.gates96.com/14/40/14/25.html http://yp.gates96.com/14/40/14/84.html http://yp.gates96.com/14/40/14/88.html http://yp.gates96.com/14/40/15/39.html http://yp.gates96.com/14/40/15/40.html http://yp.gates96.com/14/40/16/64.html http://yp.gates96.com/14/40/16/92.html http://yp.gates96.com/14/40/17/69.html http://yp.gates96.com/14/40/18/42.html http://yp.gates96.com/14/40/18/82.html http://yp.gates96.com/14/40/19/36.html http://www.4positiveimages.com/4positiveimages/727410225/IconBar http://www.teacherformation.org/html/od/facilitators.cfm/task1,login/discussion_id,2/xid,6559/yid,6157439 http://www.secinfo.com/dSU5m.74.htm http://www.secinfo.com/dSU5m.7v.htm http://www.secinfo.com/dSU5m.6y.htm http://www.secinfo.com/dSU5m.5c.htm http://linux.softhouse.com.cn/linux/knowledge/tech/qs/linux5.htm http://linux.softhouse.com.cn/linux/knowledge/tech/qs/linux10.htm http://freesoftware.subportal.com/sn/Programming/Visual_Basic_Components_H-P/993.html http://dk.egroups.com/message/NGHILUAN/2881 http://dk.egroups.com/message/NGHILUAN/2889 http://www.cga.state.ct.us/ps98/cbs/H/hj-0084.htm http://apple.excite.com/entertainment/music/artists_and_genres/jazz/new_world_jazz/afro_cuban/ http://www.euronet.nl/users/hiroshi/ksweb/interest.htm http://library.bangor.ac.uk/search/aMollica,+Anthony/amollica+anthony/-5,-1,0,B/browse http://www.fogdog.com/cedroID/ssd3040183308040/nav/products/featured_brands/14t/all/ http://www.brio.de/BRIO.catalog/39fe2f8d0912d4962740d472aa780701/UserTemplate/9 http://www.hig.se/(accessed,autoformat,referrer,sqloutput,tablify)/~jackson/roxen/ http://www.newstimescybermall.com/Mall/Catalog/Product/ASP/product-id/206059/store-id/1000010991.html http://www6.163.com/news/p-item/0,1587,economy_1916,00.html http://ftp.uni-stuttgart.de/pub/systems/sgi/graphics/lib/?D=A http://preview.egroups.com/message/abdou3/152 http://ch.php.net/manual/it/function.pg-loimport.php http://yp.gates96.com/1/94/30/39.html http://yp.gates96.com/1/94/30/78.html http://yp.gates96.com/1/94/31/11.html http://yp.gates96.com/1/94/31/72.html http://yp.gates96.com/1/94/31/85.html http://yp.gates96.com/1/94/32/25.html http://yp.gates96.com/1/94/32/45.html http://yp.gates96.com/1/94/32/74.html http://yp.gates96.com/1/94/33/20.html http://yp.gates96.com/1/94/33/68.html http://yp.gates96.com/1/94/34/92.html http://yp.gates96.com/1/94/35/1.html http://yp.gates96.com/1/94/35/50.html http://yp.gates96.com/1/94/35/60.html http://yp.gates96.com/1/94/37/0.html http://yp.gates96.com/1/94/37/46.html http://yp.gates96.com/1/94/37/47.html http://yp.gates96.com/1/94/37/61.html http://yp.gates96.com/1/94/38/19.html http://yp.gates96.com/1/94/39/49.html http://yp.gates96.com/1/94/39/57.html http://www.gartenfachmarkt.de/beratung_garten/duengen_und_kompostieren/anlage_und_vorarbeiten/fertig.htm http://support.dell.com/docs/storage/4955r/en/Hw/setup.htm http://www.hig.se/(clientname,header,sort,sqlquery,sqltable)/~jackson/roxen/ http://www.mic.hr/PGBURZA:423870 http://www.mic.hr/PGNEWS:423870 http://members.tripod.com/Tess_Tom/my_photoalbum/page12.html http://legalminds.lp.findlaw.com/list/courtinterp-spanish/nav05815.html http://www.fogdog.com/cedroID/ssd3040183239698/crs/pn__/wld/fogdog_sports/pearl_izumi/road_cycling/apparel/classic_vest.html http://www.fogdog.com/cedroID/ssd3040183239698/nav/stores/wakeboarding/ http://troy.lib.sfu.ca/search/slogos/slogos/-5,-1,0,E/frameset&F=slogistics+and+transportation+review&1,,0 http://themes.tucows.dia.dk/skins/icq/preview/54718.html http://php.nic.fi/manual/html/function.shm_open.html http://ftp.fi.debian.org/debian/dists/woody/non-free/binary-m68k/misc/?S=A http://www.csupomona.edu/reference/java/jdk1.2/docs/api/org/omg/CORBA/class-use/CompletionStatus.html http://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A1D/C1R/A1D/B1R/ http://www.uni-duesseldorf.de/ftp/ftp/software/opt/cpio-2.4.2/?M=A http://ep.com/js/about/c9079/b0/250918.html http://polygraph.ircache.net:8181/busi/html/http_-2www.dirtsports.com/index.html-ssi http://www.chabadlibrary.org/ecatalog/EC06/EC06232.HTM http://chat.hani.co.kr/NetBBS/Bbs.dll/brief/lst/qqa/f/qqo/PRMY/zka/B23qB2Bm http://209.207.239.212/bkindex/c1047/f1128.html http://tv.thevines.com/leaf/AA0000364429/4/1 http://tv.thevines.com/leaf/AA0000364429/4//&order_by=WORST http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=12,17,20,5,16 http://yp.gates96.com/4/4/40/22.html http://yp.gates96.com/4/4/40/29.html http://yp.gates96.com/4/4/41/11.html http://yp.gates96.com/4/4/42/0.html http://yp.gates96.com/4/4/42/27.html http://yp.gates96.com/4/4/42/89.html http://yp.gates96.com/4/4/42/99.html http://yp.gates96.com/4/4/43/40.html http://yp.gates96.com/4/4/43/69.html http://yp.gates96.com/4/4/43/85.html http://yp.gates96.com/4/4/44/27.html http://yp.gates96.com/4/4/44/28.html http://yp.gates96.com/4/4/44/36.html http://yp.gates96.com/4/4/44/86.html http://yp.gates96.com/4/4/45/76.html http://yp.gates96.com/4/4/45/82.html http://yp.gates96.com/4/4/45/86.html http://yp.gates96.com/4/4/46/61.html http://yp.gates96.com/4/4/47/1.html http://yp.gates96.com/4/4/47/41.html http://yp.gates96.com/4/4/47/42.html http://yp.gates96.com/4/4/48/66.html http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/misc/geekcode/pkg-descr?only_with_tag=RELEASE_3_4_0 http://perso.wanadoo.fr/genealogie.aubert.jm/geweb/ff100.htm http://www.securitiestimes.com.cn/199904/29/data/newfiles/0060080.htm http://autos.yahoo.co.jp/ucar/m1015/k10152012199906/g21/a101520120210248821003520208199906.html http://dg.galaxy.com/galaxy/Community/United-States/States/Connecticut/Cities-and-Regions/Guilford/Education/K--12/Middle.html http://carriage.de/Schoner/info-e/literature/collections/models/ http://www.amcity.com/orlando/stories/1998/06/29/weekinbiz.html?t=email_story http://www.icopyright.com/1.1655.94549 http://biblio.cesga.es:81/search*gag/dMicrosoft+Visual+BASIC+(Archivo+de+ordenador)/dmicrosoft+visual+basic+archivo+de+ordenador/-5,1,1,B/frameset&F=dmicrosoft+project+archivo+de+ordenador&1,1, http://www.jamba.de/KNet/_KNet-AzI8j1-tGd-13d56/browse.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-AzI8j1-tGd-13d5e/browse.de/node.0/cde7f1uou http://www.ioppublishing.com/PEL/help/article/ja30010l2/refs/?topic=refs http://members.tripod.lycos.co.kr/uuujsh/?N=D http://www.wlu.ca/~wwwregi/95-96/cal/ucourses/CP/CP417.html http://books.hyperlink.co.uk/bookinfo/Essential_Papers_on_Messianic_Movements_and_Personalities_in_Jewish_History/0814779433 http://generalstore.everdream.com/kore/catalog/Office_Supplies/Furniture_&_Accessories/File_Cabinets/Vertical/GRP-US747/product.html http://satlink.tucows.com/winnt/adnload/54136_29678.html http://dc.web.aol.com/myrtlebeacharea/penpals/browse.dci?cat=twenties&sort=m http://itcareers.careercast.com/texis/it/itjs/+nwwBme4WD86e4rwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDthDo5O5apGdtGwMaBGnDBdDaqd1DBGon5aoDqc1moDtax15oDn55amnVncdpoDta5dc1BodD5adppdGB1DoBon5aqdMpnBoBoVnaMFqtuNfIjIDzmYqwwpBme68D86eihwww5rmerdwwwBrmeZpwww/jobpage.html http://ring.yamanashi.ac.jp/pub/linux/debian/debian-jp/dists/hamm-jp/hamm/disks-i386/current/base14-3.bin.2.0.11.2-i386 http://www.ibm.co.jp/pc/thinkpad/pt110/look110.html http://retailer.gocollect.com/do/session/1912720/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp http://www-rn.informatik.uni-bremen.de/home/X11R6/xc/doc/hardcopy/XProtocol/?N=D http://cafe3.daum.net/Cafe-bin/bbsList?bbsgrp=SIXTEEN&bbscode=SIXTEENbbs http://allmacintosh.arrakis.es/adnload/12140.html http://allmacintosh.arrakis.es/adnload/2476.html http://www.msb.malmo.se/search*swe/dSkönlitteratur/dskz~cnlitteratur/-5,-1,0,B/2exact&F=dskz~cnliteratur&1,2 http://tucows.syix.com/winme/preview/137803.html http://pages.prodigy.net/patotoole/musicman/page6.htm http://yp.gates96.com/14/43/0/39.html http://yp.gates96.com/14/43/0/78.html http://yp.gates96.com/14/43/0/79.html http://yp.gates96.com/14/43/0/99.html http://yp.gates96.com/14/43/1/3.html http://yp.gates96.com/14/43/1/57.html http://yp.gates96.com/14/43/1/86.html http://yp.gates96.com/14/43/2/74.html http://yp.gates96.com/14/43/2/80.html http://yp.gates96.com/14/43/3/2.html http://yp.gates96.com/14/43/3/97.html http://yp.gates96.com/14/43/3/99.html http://yp.gates96.com/14/43/4/37.html http://yp.gates96.com/14/43/4/51.html http://yp.gates96.com/14/43/4/72.html http://yp.gates96.com/14/43/6/4.html http://yp.gates96.com/14/43/7/20.html http://yp.gates96.com/14/43/7/39.html http://yp.gates96.com/14/43/7/45.html http://yp.gates96.com/14/43/9/41.html http://yp.gates96.com/14/43/9/58.html http://yp.gates96.com/14/43/9/60.html http://ftp.support.compaq.com/public/dunix/v3.2g/ASE_V1.3/ReleaseNotes.htm http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/mchI1k9vDw6DGJ19bljzJPwhHhJYxAcnAIKgudPEJtzjiTWMWT4U-YMr4m-AccPn7sEIqMzfFTZnQEQBZNx-lh8DEr_c1F3DXpcc4PzhALzHJ76GytRWNCSauwtfVocYmy_RKsP-H9T-UhQgoc9_uexBhD4a http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/IqtI3V1hdRxfYW_4AHOzeXZkuTzyKfveVl4qdYM_2WFldvLDKFgK8SvYa0mSlrWDVodDERGv2jvb2dEN1-mRmY3TBKURFCsqneanb8BNMBeBfqmSnBYuou5RMCmHxXCedHy3TQnL51n3TYbg5exYBWl9FJTcQEIJt2wyyrfB66jP http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/Hk1ILVbQbFwze5TrhlBima0MylJ0gTqcnVeTbMTcn7Gy5GkelYKhUQ7m8P8_K3IkOWfIWbpGOJEuHqJLX5jY_7ygFevbtkNXPvb1yztdy9qzCTsCJvS5uaHN3cZd0LtuoMX3lX7d_-L_PrwRXSfTE3TNvWl-RHiY4Xmxk1fXhD_uwwjDvC7DDsxz66j6 http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/T41IiB449vZ7nrOl2Z_klJHCHQZhigz52e9YVMztVI-K01klBYQrw4VmiKN8JDs9xaeMSWopQs1euSbr6BAiyuqpbSFiiVWObVmWHv031jtdQ1y93wnHhx8PkbrA4hkNhjTPs2mUhBF9wIAJSPCYLkf6W7mCB8ObikqLTuIwBfRtSgMK4Hz9e7Bp http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/CI1IlJNaoNrBcwJYSEcjLyxBnpQHK3wpRPeCR_0u07GznNXQ3Ug57ciOqlfXKlYM1HbRfcvrF5s214yaEHiIizneyWrbSEW_xal49NjQDbWj6R2nEZvDQdDMQEMoTuQlSetyUwMidLBmJJ5v5w9m066en6Yxuzt3RkGIyoHKaVmXgVIYD2Fc40eA http://www.secinfo.com/dSm4r.997.htm http://www.secinfo.com/dSm4r.68c.htm http://www.secinfo.com/dSm4r.69c.htm http://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/modules/by-module/MD5/GAAS/HTML-Parser-3.04.readme http://polygraph.ircache.net:8181/Game+Controllers/http_-2www.real-e-video.com/price-abuse.html http://ecomonly.shop.goto.com/z/netadp/search/matches.jhtml?MANUF=Linksys http://ecomonly.shop.goto.com/z/netadp/search/matches.jhtml?MANUF=Madge http://freesoftware.subportal.com/sn/Web_Authoring/Misc__Programming_Tools/3100.html http://www.sam.hi-ho.ne.jp/m-saka/stepwgn/himeji/6scene/ http://ftp.unina.it/pub/Unix/linux/SuSE/ftp.suse.com/projects/3d/kernel/?N=D http://www.ld.com/cbd/archive/1999/08(August)/10-Aug-1999/61awd001.htm http://www.ld.com/cbd/archive/1999/08(August)/10-Aug-1999/61awd004.htm http://statweb.byu.edu/sasdoc/sashtml/stat/chap2/sect5.htm http://www.diogenes.de/4DACTION/web_rd_aut_show_authorlist/ID=483367&chr=F http://web1.localbusiness.com/Story/Email/1,1198,RDU_461041,00.html http://www.clientwire.com/A55697/tmr.nsf/vwApprovedResumesbyDate!OpenView&Start=55&Count=50&Collapse=48 http://cpan.nitco.com/modules/by-module/Mail/JWIED/SNMP-Monitor-0.1011.readme http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,16,10 http://www6.compaq.com/products/quickspecs/10135_na/10135_na.PDF http://www.suk2.com/user/777/20001012.html http://www.jamba.de/KNet/_KNet-vAy8j1-iFd-13az6/browse.de/node.0/cde7f2elw http://www.imagesofengland.org.uk/41/69/416915.htm http://ocean.ntou.edu.tw/search*chi/aLaplante,+Phillip+A./alaplante+phillip+a/7,-1,0,B/frameset&F=alappe+frances+moore&1,,2 http://ocean.ntou.edu.tw/search*chi/aLaplante,+Phillip+A./alaplante+phillip+a/7,-1,0,B/frameset&F=alappe+frances+moore&2,,2 http://wap.jamba.de/KNet/_KNet-6Fz8j1-oFd-13b3x/admLogin.de/node.0/cde7f1uou http://yp.gates96.com/14/49/20/26.html http://yp.gates96.com/14/49/20/37.html http://yp.gates96.com/14/49/20/39.html http://yp.gates96.com/14/49/20/86.html http://yp.gates96.com/14/49/20/94.html http://yp.gates96.com/14/49/20/97.html http://yp.gates96.com/14/49/21/19.html http://yp.gates96.com/14/49/21/43.html http://yp.gates96.com/14/49/21/68.html http://yp.gates96.com/14/49/21/78.html http://yp.gates96.com/14/49/24/6.html http://yp.gates96.com/14/49/24/62.html http://yp.gates96.com/14/49/24/77.html http://yp.gates96.com/14/49/24/83.html http://yp.gates96.com/14/49/25/30.html http://yp.gates96.com/14/49/25/41.html http://yp.gates96.com/14/49/26/17.html http://yp.gates96.com/14/49/26/53.html http://yp.gates96.com/14/49/27/21.html http://yp.gates96.com/14/49/27/27.html http://yp.gates96.com/14/49/27/45.html http://yp.gates96.com/14/49/27/65.html http://yp.gates96.com/14/49/28/71.html http://www.boston.digitalcity.com/orangecounty/entertainment/article.dci?aid=1293&start=10 http://tucows.allnet.it/winme/adnload/143-006-005-021.html http://tucows.allnet.it/winme/adnload/143-006-005-030.html http://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A1D/C1R/A2D/A1U/ http://www.crosswinds.net/~klinnia/DragonsDomain/Nest/nest.htm http://mirrors.valueclick.com/backup.pause/modules/by-category/99_Not_In_Modulelist/Memoize/?S=A http://www.tgw.com/EJr.5ajd/customer/category/product.html?SUBCATEGORY_ID=557 http://www.sohu.com/business_economy/Company/Computer_Internet/Network_System/Network/ http://china-water.51.net/oicq/oicq_down.htm http://ftp.lip6.fr/pub/FreeBSD/development/FreeBSD-CVS/ports/math/plplot/patches/Attic/patch-ac,v http://library.cuhk.edu.hk/search*chi/cHC427.92.C59/chc++427.92+c59/-5,-1,,E/browse http://yp.gates96.com/4/8/60/2.html http://yp.gates96.com/4/8/60/19.html http://yp.gates96.com/4/8/62/9.html http://yp.gates96.com/4/8/62/23.html http://yp.gates96.com/4/8/62/59.html http://yp.gates96.com/4/8/63/26.html http://yp.gates96.com/4/8/63/41.html http://yp.gates96.com/4/8/64/48.html http://yp.gates96.com/4/8/65/0.html http://yp.gates96.com/4/8/65/42.html http://yp.gates96.com/4/8/66/13.html http://yp.gates96.com/4/8/66/88.html http://yp.gates96.com/4/8/67/23.html http://yp.gates96.com/4/8/67/51.html http://yp.gates96.com/4/8/68/11.html http://yp.gates96.com/4/8/68/16.html http://yp.gates96.com/4/8/68/78.html http://www.outpersonals.com/cgi-bin/w3com/pws/out/CehIaxpSN7cGOeOUjXx_FtrylkakPWisW0DYq0MYmHwGxLBo7shB2XGSeXyvbnsBzHMJTZtmYOUK-XaaAW0Yh88wTY-Mms-hxw67Xaw8WMk3-vUJ4sXm4U7yIGdiN9XoPOqfnODrkqXYztjU6Var http://www.brd.net/brd-cgi/brd_netzwerk?mailto&router&BZ85G0IL http://power.luneng.com/power/library/jxgcs/jxgc99/jxgc9912/991204.htm http://www.egroups.com/messages/Creative_Teaching/72?viscount=-30 http://www.egroups.com/message/Creative_Teaching/85 http://ftp.eecs.umich.edu/.1/people/elta/cusm-Javajae-elta/?D=A http://polygraph.ircache.net:8181/cagliari/WHOWOULD.HTM http://www.tiscover.ch/1Root/Kontinent/6/Staat/30/Bundesland/33/Ort/1564/Homepage/h_homepage...2.html http://t-online.de/computer/haupt/intcoh87.htm http://prodigy-sports.excite.com/ncaab/news/025uwire1 http://wwwold.ifi.uni-klu.ac.at/Manuals/jdk1.1b3/docs/guide/awt/designspec/graphics/imagescale.html http://www.taconet.com.tw/a6983/ http://www.mapion.co.jp/custom/AOL/admi/13/13107/higashimukojima/3chome/index-3.html http://www.mapion.co.jp/custom/AOL/admi/13/13107/higashimukojima/3chome/index-13.html http://caller-times.com/autoconv/kickoff98/kickoff30.html http://www.incestpornstories.com/bisexualbisexual/big-bonedmen/beautiesslanted-eyes/plus-sizeoverweight/{teenlink} http://qcardsccg.safeshopper.com/8/359.htm?923 http://qcardsccg.safeshopper.com/8/429.htm?923 http://qcardsccg.safeshopper.com/8/433.htm?923 http://lib1.nippon-foundation.or.jp/1997/0486/contents/011.htm http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceOrderStatusOverview-BBC709F1_97EF_F357031944376B6D965FDC23BED4C6F4 http://in.egroups.com/subscribe/muovimallit http://multichat.de/fp/talk/cb-funk/4.htm http://multichat.de/fp/talk/cb-funk/5.htm http://www.jamba.de/KNet/_KNet-zfB8j1-EFd-13bkr/browse.de/node.0/cde7f2elw http://www.jamba.de/KNet/_KNet-zfB8j1-EFd-13bl7/showInfo-jobs.de/node.0/cenv0b09a http://152.80.49.210/PUBLIC/WXMAP/GLOBAL/AVN/2000103000/avn.prp.00-36.swasia.htm http://retailer.gocollect.com/do/session/1912741/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp http://retailer.gocollect.com/do/session/1912741/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=2 http://www.fogdog.com/cedroID/ssd3040183248168/nav/products/winter_sports/1b/shell_jackets/ http://www.fogdog.com/cedroID/ssd3040183248168/nav/products/featured_brands/3c/all/ http://kutschen.de/Schoner/literature/Sammlungen/modelle/collections/ http://el-mundo.es/1999/06/04/television/04N0121.html http://bitwise.tucows.com/win2k/htmlval2k_license.html http://bbs.ee.ntu.edu.tw/boards/Saturn/3/7/12/5.html http://ustlib.ust.hk/search*chi/deconomic+conditions+cameroon+to+1960/deconomic+conditions+cameroon+to+1960/-5,-1,0,B/browse http://excite.de/kunst/katalog/865 http://www2.hindustantimes.com/ht/nonfram/280498/detFRO07.htm http://yp.gates96.com/11/69/0/60.html http://yp.gates96.com/11/69/1/60.html http://yp.gates96.com/11/69/1/72.html http://yp.gates96.com/11/69/2/80.html http://yp.gates96.com/11/69/3/7.html http://yp.gates96.com/11/69/3/54.html http://yp.gates96.com/11/69/3/66.html http://yp.gates96.com/11/69/3/90.html http://yp.gates96.com/11/69/3/91.html http://yp.gates96.com/11/69/4/13.html http://yp.gates96.com/11/69/4/18.html http://yp.gates96.com/11/69/4/26.html http://yp.gates96.com/11/69/4/70.html http://yp.gates96.com/11/69/5/45.html http://yp.gates96.com/11/69/5/77.html http://yp.gates96.com/11/69/6/10.html http://yp.gates96.com/11/69/6/80.html http://yp.gates96.com/11/69/7/43.html http://yp.gates96.com/11/69/7/76.html http://yp.gates96.com/11/69/8/17.html http://yp.gates96.com/11/69/8/33.html http://yp.gates96.com/11/69/8/98.html http://yp.gates96.com/11/69/9/3.html http://yp.gates96.com/11/69/9/41.html http://yp.gates96.com/11/69/9/92.html http://store.peoplestour.com/kore/catalog/Music/R&B/G_by_artist/104757/product.html http://free.prohosting.com/~seikyo/speak2.htm http://pub.chinaccm.com/12/news/200009/16/160724.asp http://pub.chinaccm.com/12/news/200008/11/155448.asp http://www.fogdog.com/cedroID/ssd3040183305379/nav/products/featured_brands/12r/spa_products/ http://itcareers.careercast.com/texis/it/itjs/+EwwBmev6D86ebtwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDacnwmaADdicnmtnaMwDwtnMnDBanDtoDnnGaMw55wqr15nBB5aqwpB1GnaoDhdGMwBodDaBnqrDdcdton5aMFqhTfR20DzmewrwwwpBmGeP0-dmwww5rmeNDwwwBrmeZpwww/jobpage.html http://www.outdoorwire.com/content/lists/dirt/200004/msg00354.html?{LoadingFrameset} http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=5&discrim=186,22,8 http://www.teleparc.com/sports/funski/02/03.htm http://cn.egroups.com/post/safrica_bridge?act=reply&messageNum=43 http://www.dfae.diplomatie.gouv.fr/culture/france/cinema/documentaires/recherche/francais/ethique.html http://ring.toyama-ix.net/archives/mac/info-mac/_Communication/ctb/?D=A http://www.eveclub.com/cgi-bin/eveclub.front/972959528284/Catalog/11000155 http://www.eveclub.com/cgi-bin/eveclub.front/972959528284/Catalog/2000019 http://cometweb01.comet.co.uk/do!session=132005&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLljX5fkkKaotHlob5mloLq1 http://cometweb01.comet.co.uk/do!session=132005&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG3XqLbdlLov4LfpmLiXvL-Zd5jbkLYozKvot0cZd5ockLYozKvsm0uts0cZX5qkXLjbzKKbiLbsfLpflLkp5 http://www.ualberta.ca/CNS/RESEARCH/Software/SAS/cms/zfor-hex.htm http://www.ualberta.ca/CNS/RESEARCH/Software/SAS/os390/zlibname.htm http://genforum.genealogy.com/cgi-bin/print.cgi?hanrahan::175.html http://library.bangor.ac.uk/search/dAIDS+(Disease)+--+Risk+factors+--+Psychological+aspects+--+Periodicals/daids+disease+risk+factors+psychological+aspects+periodicals/-5,1,1,B/frameset&F=daids+disease+research&1,1, http://www.rismedia.com/consumer/27/12194/ http://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=39&Count=50&Expand=38 http://www.etoys.com/prod/toy/53097261 http://www.outpersonals.com/cgi-bin/w3com/pws/out/J6tI5danl1CaEvxOmyBVl8pzyaGqhs1RWIGq0aJ2_fwvzv4y9T7bHlxQKPzsrhMRN5HEI_Y9ZKrSvboCZvKhdwPPYK2klPp0EqNMO7Mb8fDTcz6xykQv8YQCQ2dy_iLZjbXwrknXqcH32HVSXAq7iUr4yIVG66IK http://www.amcity.com/jacksonville/stories/1999/11/22/daily16.html?t=printable http://moviestore.zap2it.com/browse/MOVIES/BOXERSHO/s.F0FWmEHm http://moviestore.zap2it.com/browse/MOVIES/SHIRT/s.F0FWmEHm http://moviestore.zap2it.com/browse/MOVIES/TIE/s.F0FWmEHm http://moviestore.zap2it.com/browse/MOVIES/WATCH/s.F0FWmEHm http://yp.gates96.com/11/25/30/0.html http://yp.gates96.com/11/25/30/47.html http://yp.gates96.com/11/25/31/87.html http://yp.gates96.com/11/25/32/3.html http://yp.gates96.com/11/25/32/61.html http://yp.gates96.com/11/25/32/97.html http://yp.gates96.com/11/25/33/6.html http://yp.gates96.com/11/25/33/81.html http://yp.gates96.com/11/25/33/83.html http://yp.gates96.com/11/25/34/10.html http://yp.gates96.com/11/25/34/35.html http://yp.gates96.com/11/25/34/88.html http://yp.gates96.com/11/25/34/90.html http://yp.gates96.com/11/25/35/95.html http://yp.gates96.com/11/25/36/19.html http://yp.gates96.com/11/25/36/98.html http://yp.gates96.com/11/25/37/61.html http://yp.gates96.com/11/25/37/74.html http://yp.gates96.com/11/25/38/2.html http://yp.gates96.com/11/25/38/62.html http://yp.gates96.com/11/25/39/1.html http://yp.gates96.com/11/25/39/25.html http://yp.gates96.com/11/25/39/85.html http://yp.gates96.com/11/25/39/95.html http://www.linux.com/networking/network/industry/server/community/Red_Hat/ http://www.linux.com/networking/network/industry/server/community/Slashdot/ http://www.linux.com/networking/network/industry/server/community/growth/ http://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/modules/by-category/16_Server_and_Daemon_Utilities/Server/DRUOSO/Server-FastPL-1.0.0.readme http://ftp.nacamar.de/pub/NetBSD/NetBSD-current/pkgsrc/parallel/clusterit/pkg/DESCR http://dk.egroups.com/login.cgi?login_target=%2Fgroup%2FGravesrus http://www.maxfunds.com/MF1000.nsf/FUNDanalysisPrint/FGOAX http://www.gbnf.com/genealog2/brothers/html/d0065/I12666.HTM http://office.net/benelux/nld/downloadcatalog/dldpowerpoint.asp http://yam.com/en/rand/ent/music/minfo/ http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/Collect_DB_Advers2/2000-09-28/23/?N=D http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=22,11,35 http://dk.egroups.com/messages/lafz/6 http://www.online.kokusai.co.jp/Words/V0043555/wrd/G700/words/kana_main.html http://adelaida.net/music/texts/pink75.html http://support.tandy.com/support_audio/doc40/40914.htm http://www.nutritionblvd.com/426162.html http://www.nutritionblvd.com/426121.html http://www.nutritionblvd.com/426117.html http://www.fogdog.com/cedroID/ssd3040183301450/boutique/aaron_chang/ http://www.fogdog.com/cedroID/ssd3040183301450/boutique/moving_comfort/ http://www.fogdog.com/cedroID/ssd3040183301450/fly/ http://in.egroups.com/login.cgi?login_target=%2Fmessage%2Finfogiappone%2F81 http://in.egroups.com/post/infogiappone?act=reply&messageNum=81 http://cn.egroups.com/message/1800list/5416 http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.slac.stanford.edu/grp/arb/tn/arbvol1/ARDB011.pdf http://crrstv.tucows.com/winnt/adnload/135146_46908.html http://syix.tucows.com/win2k/adnload/61785_28334.html http://ftp.ccu.edu.tw/pub/language/tcl/sorted/packages-7.6/sound/xmpeg_0.5/ http://www.eos.ncsu.edu/linux/LDP/LDP/khg/HyperNews/get/fs/fs/3.html http://polygraph.ircache.net:8181/http_-2www.tvguide.com/sports/football/http_-2home.netscape.com/http_-2www.premaonline.com/http_-2www.ionet.net/~burndragon/form1.html http://se.egroups.com/group/MyLuminaGoezBoom http://www.diogenes.ch/4DACTION/web_rd_aut_show_author/a_id=7056553&tmpl=AUT_00&ID=483371 http://www3.newstimes.com/archive97/apr0497/tvg.htm http://dic.empas.com/show.tsp/?q=edger&f=B http://www.brio.de/BRIO.catalog/39fe2f570905fb6a2740d472aa7806aa/UserTemplate/2 http://itcareers.careercast.com/texis/it/itjs/+uwwBme7WD86eYtwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDaoDhdGMwBodDa5nq1GoBOanDtoDnnGaiw5roDtBdDanDBnGpGo5naGn31oGnmawGqroBnqB1Gna5O5BnM5aMFqhTfR20DzmehrwwwpBmeZWD86Nwww5rmekdwwwBrmeZpwww/jobpage.html http://itcareers.careercast.com/texis/it/itjs/+pwwBmet5986twwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDaoDhdGMwBodDa5nq1GoBOanDtoDnnGaiw5roDtBdDanDBnGpGo5naGn31oGnmawGqroBnqB1Gna5O5BnM5aMFqhTfR20DzmehrwwwpBmeZWD86Nwww5rmekdwwwBrmeZpwww/morelike.html http://biblioteca.upv.es/bib/doc/doc_fisbd/180/132317//C/1825784/0////25/S/MLTPAI http://www.stanford.edu/~sevls/files/?M=D http://library.bangor.ac.uk/search/dSystem+analysis+--+Periodicals/dsystem+analysis+periodicals/-17,-1,0,B/browse http://mirror.ox.ac.uk/Mirrors/ftp.redhat.com/roughcuts/m68k/misc/src/install/pci-probing/CVS/ http://yp.gates96.com/0/13/10/17.html http://yp.gates96.com/0/13/11/26.html http://yp.gates96.com/0/13/12/20.html http://yp.gates96.com/0/13/12/24.html http://yp.gates96.com/0/13/12/49.html http://yp.gates96.com/0/13/13/22.html http://yp.gates96.com/0/13/13/80.html http://yp.gates96.com/0/13/15/8.html http://yp.gates96.com/0/13/16/4.html http://yp.gates96.com/0/13/16/18.html http://yp.gates96.com/0/13/16/64.html http://yp.gates96.com/0/13/17/15.html http://yp.gates96.com/0/13/18/11.html http://yp.gates96.com/0/13/18/18.html http://yp.gates96.com/0/13/19/5.html http://yp.gates96.com/0/13/19/22.html http://yp.gates96.com/0/13/19/60.html http://library.cuhk.edu.hk/search*chi/aYen-shou,+Shih,+904-975./ayen+shou+shih++904++975/-5,-1,0,E/2browse http://china.sydney2000.com/StaticNews/2000-07-29/News372a86.htm http://www.fujian-window.com/Fujian_w/news/mzrb1/20000724/3_1.html http://www.fujian-window.com/Fujian_w/news/mzrb1/20000724/3_2.html http://legalminds.lp.findlaw.com/list/law-lib/nav07807.html http://ftp.fi.debian.org/debian/dists/woody/contrib/binary-sparc/tex/?N=D http://community.webshots.com/photo/3635718/3636284GcTotmmONR http://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=23,24,25,17,10 http://spaindustry.com/por/exp/911.html http://niagara.tucows.com/winme/preview/10464.html http://niagara.tucows.com/winme/adnload/138750_30032.html http://niagara.tucows.com/winme/adnload/138743_30025.html http://niagara.tucows.com/winme/adnload/138740_30023.html http://retailer.gocollect.com/do/session/1912780/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/advanced_search.asp http://preview.egroups.com/messages/UKMatrix http://fi.egroups.com/login.cgi?login_target=%2Fmessage%2Fhecates_news%2F21 http://pub.chinaccm.com/02/news/200005/31/133146.asp http://pub.chinaccm.com/02/news/200005/31/133212.asp http://localhost/test, http://kuyper.calvin.edu/fathers2/ANF-02/anf02-25.htm http://kuyper.calvin.edu/fathers2/ANF-02/anf02-56.htm http://totalsports.aol.com/stats/bbo/mlb/mlb/990910.cle.AT.cws.box.html http://totalsports.aol.com/stats/bbo/mlb/mlb/990915.nym.AT.col.box.html http://totalsports.aol.com/stats/bbo/mlb/mlb/990919.cws.AT.tor.box.html http://totalsports.aol.com/stats/bbo/mlb/mlb/990926.hou.AT.mil.box.html http://totalsports.aol.com/stats/bbo/mlb/mlb/991003.nyy.AT.tam.box.html http://totalsports.aol.com/stats/bbo/mlb/mlb/991006.bos.AT.cle.box.html http://totalsports.aol.com/stats/bbo/mlb/mlb/ALscores.html http://totalsports.aol.com/stats/bbo/mlb/mlb/CAT.ROS.pit.html http://totalsports.aol.com/stats/bbo/mlb/mlb/NYY.CLE.pit.html http://totalsports.aol.com/stats/bbo/mlb/mlb/mlb.ARI.recap.html http://totalsports.aol.com/stats/bbo/mlb/mlb/mlb.atl.vs.hou.stat.html http://www.jpc-music.com/2241771.htm http://sunsite.org.uk/packages/TeX/uk-tex/macros/latex/contrib/supported/europs/?M=A http://mitglied.tripod.de/blueblood/forum.html http://kuyper.calvin.edu/fathers2/NPNF1-06/npnf1-06-92.htm http://garbage.sonicnet.com/classical/features/Thomas,_Tilson/060500/index04.jhtml http://dk.egroups.com/post/danish?act=forward&messageNum=6 http://www.bornloser.com/comics/peanuts/f_profiles/html/f4b1.html http://www.online.kokusai.co.jp/Home/V0043517/wrd/G100/ http://www.affiliate.hpstore.hp.co.uk/do/session/380823/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/Main/acheterhp/ http://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/Startseite/Top-Darlehens-Konditionen/Gemeinsam/erreichenPartner/email3d.htm http://sunsite.org.uk/public/pub/Mirrors/ftp.hpc.uh.edu/pub/?D=A http://genforum.genealogy.com/cgi-bin/print.cgi?tillery::418.html http://ring.omp.ad.jp/archives/lang/perl/CPAN/authors/id/MSCHWARTZ/?M=A http://montxsuz.all-hotels.com/usa/massachusetts/plymouth_e1.htm http://montxsuz.all-hotels.com/usa/massachusetts/brewster_e1.htm http://montxsuz.all-hotels.com/usa/massachusetts/edgartown_e1.htm http://montxsuz.all-hotels.com/usa/massachusetts/north_dartmouth_e1.htm http://montxsuz.all-hotels.com/usa/massachusetts/washington_e1.htm http://romeo.univ-savoie.fr/winnt/adnload/51179_28892.html http://www.dispatch.co.za/1998/12/02/sport/FALDO.HTM http://www.dispatch.co.za/1998/12/02/sport/RACE2.HTM http://store1.europe.yahoo.com/brink2/2000074707407.html http://www34.yahoo.co.jp/horse/1999/tokyo/0530/result_08.html http://members.tripod.co.jp/suiha_izumi/gallery-taikoubou-.htm http://linuxberg.vol.at/gnomehtml/adnload/020-008-002-004_6145.html http://books.hyperlink.com/bookdetails/Nuclear_Power_Plants_Worldwide/0810388804 http://www.hudecek.de/gen/gen57.htm http://www.hudecek.de/gen/gen61.htm http://unofficial.capital.edu/students/kralph/ http://web6.peopledaily.com.cn/gjjrb/200004/home.htm http://www.gov.hk/hkma/eng/public/sccr/toc.htm http://www4.50megs.com/johnphil29/86week3injury.htm http://www4.50megs.com/johnphil29/86week3loupitlog.htm http://naver22.juniornaver.co.kr/Entertainment_and_Arts/Performing_Arts/Theater/Musical/ http://198.103.152.100/search*frc/dInfrastructure+(Economics)+--+Canada/dinfrastructure+economics+canada/-5,-1,0,B/frameset&F=dinfrastructure+economics&3,,0 http://198.103.152.100/search*frc/dInfrastructure+(Economics)+--+Canada/dinfrastructure+economics+canada/-5,-1,0,B/frameset&F=dinfrastructure+economics&5,,0 http://www.playgirl.dk/oncampus/feature/collegemovies/06.html http://www.linux.com/networking/support/red_hat/internet/consumer/growth/ http://www.linux.com/networking/support/red_hat/internet/consumer/mainstream/ http://no.egroups.com/message/tengu-l/224 http://no.egroups.com/message/tengu-l/229 http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/romfs.txt?only_with_tag=LINUX-2_3_24 http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/romfs.txt?only_with_tag=LINUX-2_3_22 http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/romfs.txt?only_with_tag=LINUX-2_3_16 http://sunsite.informatik.rwth-aachen.de/LinuxArchives/slackware/slackware/source/a/e2fsprog/?M=A http://bbs.syu.ac.kr/NetBBS/Bbs.dll/ipspds018/lst/qqa/f/qqo/008A/zka/B2-kB2-p http://stulchik.list.ru/catalog/13346.html http://katalog.wp.pl/www/Biznes_i_Ekonomia/Firmy_Podzial_wg_Branz/Elektrotechnika_i_Energetyka/index25.html http://www.fogdog.com/cedroID/ssd3040183313356/nav/stores/tennis/ http://www.fogdog.com/cedroID/ssd3040183313356/customer_service/shop_by_catalog.html http://193.207.57.3/cgi-win/hiweb.exe/a2/d13/b4,4,1f,4,4,, http://ring.omp.ad.jp/archives/lang/perl/CPAN/modules/by-authors/id/JPRIT/Envy-2.45.readme http://193.207.57.3/cgi-win/hiweb.exe/a2/d1342/b4,4,1f,e,e,, http://library.wuhee.edu.cn/dzsy/military/china/army/002.htm http://library.wuhee.edu.cn/dzsy/military/china/army/006.htm http://library.wuhee.edu.cn/dzsy/military/china/army/059.htm http://library.wuhee.edu.cn/dzsy/military/china/army/095.htm http://polygraph.ircache.net:8181/http_-2www.geocities.com/TimesSquare/Maze/2075/http_-2www.yahoo.com/Science/Engineering/Mechanical_Engineering/corporate.htm http://198.103.152.100/search*frc/aGundavaram,+Shishir/agundavaram+shishir/-17,-1,0,B/frameset&F=aguirdham+maureen&1,1 http://findmail.com/message/geewhiz/21 http://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/19P02|972959597|Luggage|user|0|1,0,0,1 http://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|19P03|972959597|Luggage|user|0|1,0,0,1 http://nme.com/AST/Discussion_Groups/CDA/Message_Search/1,1105,37_92-0-0-7,00.html http://namviet.subportal.com/sn/Programming/Visual_Basic_Components_H-P/5638.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4963.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4810.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4735.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/3294.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/3329.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4689.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4646.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4582.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4587.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4154.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4607.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4600.html http://www2.so-net.ne.jp/cinet/board/log/200001/messages/4571.html http://www.gotocity.com/local/2/us/KS/g/67455/shopping/ http://www.mapion.co.jp/custom/AOL/admi/13/13115/ogikubo/1chome/index-1.html http://www.mapion.co.jp/custom/AOL/admi/13/13115/ogikubo/1chome/index-21.html http://neuro-www.mgh.harvard.edu/forum_2/ChronicPainF/Capornottocapthatisthe.html http://www.yagoo.co.kr/stats/pitching.asp?Mlbmanid=MIGDEL7299 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=50&discrim=165,233,7 http://www.mirror.edu.cn/res/sunsite/pub/academic/literature/book-reviews/1994/8-August/?N=D http://www.ferien-immobilien.de/ungarn/verkauf/Versteigerungen-IB/Startseite/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Gemeinsam/vertriebspartner.htm http://www.ferien-immobilien.de/ungarn/verkauf/Versteigerungen-IB/Startseite/Allgemeine-IB/Gemeinsam/versicherungen/gebaeude/Gemeinsam/feedback.html http://www.bjd.com.cn/BJWB/20000401/GB/BJWB^10199^1^01W136.htm http://pluto.beseen.com/boardroom/u/49766/ http://amadeus.siba.fi/doc/bitchx/documentation/color.txt http://www.ealingcommon.londonengland.co.uk/pensions.htm http://pub8.ezboard.com/fthecriticalpoetsmessageboartheartofcritiquing.showMessage?topicID=11.topic&index=13 http://pub8.ezboard.com/fthecriticalpoetsmessageboareverythingelse.showMessage?topicID=223.topic&index=10 http://www.endocrine.ru/Meln_09_10_00/_vti_bin/shtml.exe/meln_post.htm?79 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,0+9,3-12,0+18,0 http://www.jobvillage.com/channel/jobs/media_communication/b.9255.g.1733.html http://www.teenplatinum.com/barelylegal/no-boundarieshardcore/flashingbarely-legal/sweatingendurance/cuntamateur/chinesepetite/bootygay-bar/lubricationfellatio.html http://www.babyheirlooms.com/catalog/htmlos.cat/001222.1.5246799112 http://src.openresources.com/debian/src/utils/HTML/R/change_cur_jutil.html http://genforum.genealogy.com/caudill/messages/389.html http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959928076/Catalog/1000003 http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959928076/ContentView/1000188/1/1201981 http://www.marketingtool.com/contribute/webfirm/b.435.r.2416.html http://dell.excite.co.jp/member_encounters/mailing_list/ml_for_women http://www.angeredsgymn.se/doc/sdb/en/html/keylist.SIGNSET.html http://map.ipc.co.jp/asp/onmap/r/new/g-27/f-525628/ http://www.jpc-music.com/2549026.htm http://www.egroups.com/message/nandscarolina/324?source=1 http://www.jpc-music.com/2226499.htm http://www.jpc-music.com/2226480.htm http://tucows.bigskysoft.com/winnt/miscaudiont_rating.html http://tucows.bigskysoft.com/winnt/adnload/69355_28370.html http://www.hole.kommune.no/hole/journweb.nsf/weboffjournal!OpenView&Start=115.23&Count=50&Expand=130 http://personal.atl.bellsouth.net/mia/a/j/ajcubas/ http://yp.gates96.com/7/49/21/96.html http://yp.gates96.com/7/49/22/39.html http://yp.gates96.com/7/49/22/60.html http://yp.gates96.com/7/49/22/70.html http://yp.gates96.com/7/49/22/75.html http://yp.gates96.com/7/49/23/8.html http://yp.gates96.com/7/49/23/30.html http://yp.gates96.com/7/49/23/43.html http://yp.gates96.com/7/49/24/7.html http://yp.gates96.com/7/49/24/8.html http://yp.gates96.com/7/49/24/27.html http://yp.gates96.com/7/49/24/49.html http://yp.gates96.com/7/49/25/92.html http://yp.gates96.com/7/49/26/56.html http://yp.gates96.com/7/49/26/77.html http://yp.gates96.com/7/49/28/23.html http://yp.gates96.com/7/49/28/34.html http://yp.gates96.com/7/49/29/56.html http://yp.gates96.com/7/49/29/60.html http://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|38P08B|972959501|Communications|user|0|1,0,0,1 http://193.207.57.3/cgi-win/hiweb.exe/a2/d170/b9,4,1f,1c,1c,, http://wuarchive.wustl.edu/systems/linux/replay/debian/dists/unstable/non-US/binary-hurd-i386/?M=D http://www.private-immobilien-boerse.de/friesland/verkauf/Ferien-IB/Startseite/Gemeinsam/MarketingStrategie/Allgemeine-IB/Startseite/Exklusiv-IB/Startseite/ http://citeseer.nj.nec.com/update/269184 http://citeseer.nj.nec.com/cidcontext/3266491 http://citeseer.nj.nec.com/cidcontext/3266502 http://genforum.genealogy.com/cgi-genforum/forums/hinkle.cgi?786 http://eagle.synet.edu.cn/mirror/www.wisc.edu/grad/catalog/cals/biometry.html http://cisne.sim.ucm.es/search*spi/cCDR7(035)TRA/ccdr7(035)tra/-5,-1,0,B/frameset&F=ccdr7(058)may&1,1 http://www.wfg-rhein-lahn.de/goldenes-fass/schrott2.htm http://www.jamba.nl/KNet/_KNet-6Aw8j1-pC4-ptt0/browse.nl/node.0/cdn40t70v http://www.dcc.ufmg.br/Entnet/estrem/tsld018.htm http://sites.uol.com.br/knaumann/DorstnerDrahtwerke.html http://64.209.212.162/learnlots/step/0,2891,9+47+95+23413+12412_0,00.html http://www.on-semiconductor.com/pub/prod/0,1824,productsm_ProductSummary_BasePartNumber=LM337A,00.html http://jxi.gov.cn/yw-gn001.nsf/view!OpenView&Start=39.19&Count=30&Expand=53 http://systemlogic.neoseeker.com/Games/Products/PC/dropship/dropship_reviews.html http://link.fastpartner.com/do/session/600373/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/smartguy.php http://www.bsv.ch/ch/d/sr/0_211_222_1/a10.html http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/contact.netscape.com/contact http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/entertainment.netscape.com/entertainment/ http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/games.netscape.com/computing/games/features/ http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/home.netscape.com/finance/taxes/ http://link.fastpartner.com/do/session/600379/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/brleksaker.php http://itcareers.careercast.com/texis/it/itjs/+TwwBmeOWD86eDhwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewPXwotoBwcaqconDBahoDwDqnaqddGmoDwBdGaqdMpwDon5aBnwMax1mtnBoDtaMwoDBnDwDqnapGdqn55n5aGn51MnaMFqryfHfREIDzmUwwwpBme+9D86Exww5rme7dwwwBrmeZpwww/jobpage.html http://fi.egroups.com/message/handebol_aaagm/5?source=1 http://www.crutchfield.com/cgi-bin/S-SHC3792E7De/viewcart.asp http://www.links2go.org/more/www.asle.umn.edu/ http://yp.gates96.com/7/69/10/58.html http://yp.gates96.com/7/69/10/64.html http://yp.gates96.com/7/69/10/76.html http://yp.gates96.com/7/69/10/91.html http://yp.gates96.com/7/69/11/31.html http://yp.gates96.com/7/69/11/67.html http://yp.gates96.com/7/69/11/70.html http://yp.gates96.com/7/69/11/88.html http://yp.gates96.com/7/69/11/96.html http://yp.gates96.com/7/69/12/25.html http://yp.gates96.com/7/69/12/29.html http://yp.gates96.com/7/69/12/61.html http://yp.gates96.com/7/69/12/65.html http://yp.gates96.com/7/69/12/73.html http://yp.gates96.com/7/69/13/30.html http://yp.gates96.com/7/69/13/36.html http://yp.gates96.com/7/69/14/8.html http://yp.gates96.com/7/69/14/32.html http://yp.gates96.com/7/69/14/54.html http://yp.gates96.com/7/69/14/62.html http://yp.gates96.com/7/69/14/83.html http://yp.gates96.com/7/69/15/34.html http://yp.gates96.com/7/69/15/87.html http://yp.gates96.com/7/69/16/18.html http://yp.gates96.com/7/69/17/5.html http://yp.gates96.com/7/69/17/22.html http://yp.gates96.com/7/69/17/44.html http://yp.gates96.com/7/69/17/86.html http://yp.gates96.com/7/69/17/88.html http://yp.gates96.com/7/69/18/16.html http://yp.gates96.com/7/69/18/83.html http://yp.gates96.com/7/69/18/88.html http://yp.gates96.com/7/69/19/0.html http://yp.gates96.com/7/69/19/1.html http://yp.gates96.com/7/69/19/97.html http://213.36.119.69/do/session/152995/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/jeux/jeux_himalaya.html http://www.egroups.com/post/sikhstudent?act=forward&messageNum=77 http://ca.yahoo.com/Regional/U_S__States/Wisconsin/Metropolitan_Areas/Milwaukee_Metro/Business_and_Shopping/Shopping_and_Services/Food_and_Drink/Beverages/ http://www.aelita.net/products/services/library/~archive/Download_redirect/company/news/default.htm http://mindex.tucows.com/winme/preview/430.html http://coda.nctu.edu.tw/vendors/DBMaker/DBMaker/driver/PHP/?S=A http://www.streetprices.com/Electronics/Computer_Hardware_PC/Switches/Monitor/MAKE+BELKIN+COMPONENTS/sortproductbydesc/SP151043.html http://wynnsystems.com/y9I_5aVd/careerlink.html http://www.volny.cz/alik/akordy/zizen.htm http://www.houses-apartment-listings.com/Michigan/city_search_criteria.asp?state=MI&City=CHAMPION http://pub9.ezboard.com/fpyro1394pyro1394.showAddReplyScreenFromWeb?topicID=345.topic http://www.maastrek.de/maas/01851471b455eff5cd01/1/0/1 http://beta.mkn.co.uk/wine/order/champ2?what-mnw9=1 http://beta.mkn.co.uk/wine/order/champ2?what-mnw14=1 http://sunsite.org.uk/public/pub/packages/andrew/auis-6.3/overhead/ http://www.ferien-immobilien.de/Spanien/Verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Exklusiv-IB/Startseite/Gemeinsam/geschaeftsbedingungen.htm http://www.trax.nilex.co.uk/trax.cgi/A1S/A2S/A3S/1AL/A2D/A1S/ http://www.trax.nilex.co.uk/trax.cgi/A1S/A2S/A3S/1AL/A2D/C2S/ http://tv.thevines.com/leaf/AA0000369148/3/1 http://tv.thevines.com/leaf/AA0000369148/37/0/&favorite[join]=yes http://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showFolder/100001/1304571 http://freebsd.ntu.edu.tw/perl/modules/by-module/FileCache/ILYAZ/?D=A http://www.highwired.net/Sport/Player/0,2291,2037-46698,00.html http://www.nl.sco.com/unixware/adminguide/qs-11-32.html http://www.online.kokusai.co.jp/Service/V0043502/wrd/G200/service/service.html http://www.realize.com/ambe7581.htm,qt=e784fe2f=2a38a234-14-26557ed-80000000-0-0-3-- http://www.realize.com/am9a7d81.htm,qt=e784fe2f=2a38a234-14-26557ed-80000000-0-0-3-- http://www.geocities.co.jp/Colosseum/7952/dragon3.html http://uk.dir.clubs.yahoo.com/Entertainment___Arts/Magic/~other/~White_Pages/2.html http://yp.gates96.com/13/9/60/95.html http://yp.gates96.com/13/9/60/97.html http://yp.gates96.com/13/9/61/12.html http://yp.gates96.com/13/9/61/42.html http://yp.gates96.com/13/9/61/52.html http://yp.gates96.com/13/9/62/13.html http://yp.gates96.com/13/9/62/19.html http://yp.gates96.com/13/9/62/32.html http://yp.gates96.com/13/9/62/44.html http://yp.gates96.com/13/9/62/75.html http://yp.gates96.com/13/9/63/71.html http://yp.gates96.com/13/9/63/89.html http://yp.gates96.com/13/9/64/16.html http://yp.gates96.com/13/9/64/64.html http://yp.gates96.com/13/9/64/83.html http://yp.gates96.com/13/9/65/15.html http://yp.gates96.com/13/9/65/39.html http://yp.gates96.com/13/9/65/81.html http://yp.gates96.com/13/9/66/19.html http://yp.gates96.com/13/9/66/51.html http://yp.gates96.com/13/9/67/72.html http://yp.gates96.com/13/9/67/75.html http://yp.gates96.com/13/9/67/93.html http://yp.gates96.com/13/9/67/94.html http://yp.gates96.com/13/9/68/9.html http://yp.gates96.com/13/9/68/14.html http://yp.gates96.com/13/9/68/23.html http://yp.gates96.com/13/9/68/39.html http://yp.gates96.com/13/9/68/68.html http://yp.gates96.com/13/9/69/22.html http://yp.gates96.com/13/9/69/62.html http://shop.intouch.de/cgi-bin/Eternit-Shop/1678827467/IconBar http://www.jango.com/home_and_garden/outdoor_and_garden/gardening/outdoor_furniture/miscellaneous/?num=1&prod=7 http://ring.omp.ad.jp/archives/lang/perl/CPAN/authors/id/SHERWOOD/CHECKSUMS http://www.acad.polyu.edu.hk/spkg/sas8/sasdoc/hrddoc/indfiles/57263.htm http://ftp.te.fcu.edu.tw/cpatch/system/mbm/source/?D=A http://web1.localbusiness.com/Story/0,1118,SAN_11751,00.html http://www.amulation.com/md-l-archive/199902/msg00357.html http://ads3.zdnet.com/c/g=r1517&c=a53585&camp=c13878&idx=2000.10.30.21.32.11/www.sega.com/seganet http://pub.chinaccm.com/23/news/200009/30/111206.asp http://www.online.kokusai.co.jp/Service/V0043534/wrd/G200/service/service.html http://www.buybuddy.com/sleuth/27/1/1060204/2992/ http://www.friend4life.com/foreign-affair/infopage/info12655.htm http://www.friend4life.com/women/info7867.htm http://www.friend4life.com/women/info11637.htm http://www.chabadlibrary.org/ecatalog/EC07/EC07328.HTM http://tulips.ntu.edu.tw/search*chi/cJC311+S275+1992/cjc++311+s275+1992/7,-1,0,E/2browse http://stationradio.subportal.com/sn/Network_and_Internet/Misc__Networking_Tools/866.html http://www.canlii.org/ca/regu/sor88-278/sec2.html http://www.rottentomato.com/movies/titles/traffic/click.php?review=1 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=4,26,16,35,15 http://www.staroriental.net/nav/soeg/ihf,aai,n2,169,Electric+Wave+Girl+1998.html http://www.staroriental.net/nav/soeg/ihf,aai,n2,176,Electric+Wave+Girl+1998.html http://www.teenplatinum.com/barelylegal/bellyovary/parkingjail-bait/oral-sexoral-sex/big-bonedmen/sex/main.html http://troy.lib.sfu.ca/search/snewsinc/snewsinc/-5,1,1,B/frameset&F=snewsbrief&1,,2 http://biblio.cesga.es:81/search*gag/dLó%3Bpez+de+Medina,+Juan/dlopez+de+medina+juan/-5,-1,0,B/frameset&F=dlopez+de+ayala+pedro+critica+e+interpretacion&1,,2 http://proxy.rmcnet.fr/udsp68/commissions.htm http://proxy.rmcnet.fr/udsp68/csp_colmar.htm http://yp.gates96.com/4/0/70/88.html http://yp.gates96.com/4/0/71/51.html http://yp.gates96.com/4/0/71/57.html http://yp.gates96.com/4/0/71/84.html http://yp.gates96.com/4/0/71/85.html http://yp.gates96.com/4/0/72/84.html http://yp.gates96.com/4/0/72/94.html http://yp.gates96.com/4/0/73/15.html http://yp.gates96.com/4/0/73/92.html http://yp.gates96.com/4/0/74/96.html http://yp.gates96.com/4/0/75/23.html http://yp.gates96.com/4/0/75/94.html http://yp.gates96.com/4/0/76/41.html http://yp.gates96.com/4/0/76/82.html http://yp.gates96.com/4/0/77/64.html http://yp.gates96.com/4/0/78/93.html http://yp.gates96.com/4/0/79/72.html http://yp.gates96.com/4/0/79/82.html http://fi.egroups.com/message/morehealth/13?source=1 http://cn.egroups.com/message/Multicultural/489 http://cn.egroups.com/message/Multicultural/495 http://cn.egroups.com/message/Multicultural/497 http://yp.gates96.com/4/1/60/54.html http://yp.gates96.com/4/1/60/69.html http://yp.gates96.com/4/1/61/83.html http://yp.gates96.com/4/1/62/68.html http://yp.gates96.com/4/1/63/13.html http://yp.gates96.com/4/1/63/42.html http://yp.gates96.com/4/1/63/61.html http://yp.gates96.com/4/1/63/73.html http://yp.gates96.com/4/1/64/15.html http://yp.gates96.com/4/1/64/49.html http://yp.gates96.com/4/1/64/54.html http://yp.gates96.com/4/1/65/19.html http://yp.gates96.com/4/1/65/26.html http://yp.gates96.com/4/1/65/69.html http://yp.gates96.com/4/1/65/98.html http://yp.gates96.com/4/1/66/57.html http://yp.gates96.com/4/1/66/62.html http://yp.gates96.com/4/1/66/79.html http://yp.gates96.com/4/1/66/86.html http://yp.gates96.com/4/1/66/88.html http://yp.gates96.com/4/1/67/6.html http://yp.gates96.com/4/1/67/49.html http://yp.gates96.com/4/1/67/76.html http://yp.gates96.com/4/1/67/78.html http://yp.gates96.com/4/1/68/57.html http://yp.gates96.com/4/1/69/10.html http://yp.gates96.com/4/1/69/47.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=blich&l=de http://www.secinfo.com/d17xw.53m.htm http://www.cs.unm.edu/sheppard-bin/igmdesc.cgi/n=shep/I1475 http://home.pchome.com.tw/computer/54915491/data/data2.htm http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/author/3910318 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=215&discrim=164,80,165 http://library.bangor.ac.uk/search/cHN582+.R45+1991/chn++582+r45+1991/-5,-1,0,B/bibandlinks&F=chn++573+h313&1,1 http://mai.flora.org/forum/new-2110 http://www.tucows.telia.no/winnt/adnload/68747_30295.html http://www.tucows.telia.no/winnt/adnload/135780_47081.html http://www.annotate.net/html/Annotate_Directory/Top/Regional/North_America/United_States/Louisiana/Localities/C/Coushatta http://wine.cc.chuo-u.ac.jp/home/pub/TeX/CTAN/support/mctex/?D=A http://pub21.ezboard.com/ujaletheadmin.showPublicProfile?language=EN http://ftp.lip6.fr/pub11/NetBSD/NetBSD-current/src/usr.sbin/quot/Makefile http://www.hrdc.gc.ca/socpol/cfs/bulletins/jan97/man_f.shtml http://www.loveme.com/infopage/info23899.htm http://polygraph.ircache.net:8181/http_-2www.fsa.org/MutareMap.asp http://www.sdrt.com.cn/tiyuzhichuang/wangqiu/mingxingdangan/4/gelafu.htm http://home.netvigator.com/~raympoon/digital7.htm http://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/3d-service/Top-Darlehens-Konditionen/Startseite/Gemeinsam/immolink/Startseite/froben.htm http://www.hum.auc.dk/~magnus/MHonArc/NTSEC/frm00999.html http://www.hum.auc.dk/~magnus/MHonArc/NTSEC/frm09255.html http://www.affiliate.hpstore.hp.co.uk/do/session/380849/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry.asp http://genforum.genealogy.com/cgi-genforum/forums/skeen.cgi?265 http://wiem.onet.pl/wiem/00f59f.html http://www2.ipc.pku.edu.cn/scop/data/scop.1.007.033.001.002.000.html http://splitrock.themes.tucows.com/cursors/adnload/15789.html http://splitrock.themes.tucows.com/cursors/adnload/15884.html http://www.cpami.gov.tw/ymsnp/animal/insect/34654text.htm http://lateline.muzi.net/ll/fanti/89027.shtml http://www.hig.se/(accessed,comment,date,header,quote)/~jackson/roxen/ http://ftpsearch.belnet.be/ftp/packages/Linux-RedHat/up2date/rhl-6.0/alpha/README http://ftpsearch.belnet.be/ftp/packages/Linux-RedHat/up2date/rhl-6.0/alpha/etc/ http://ftpsearch.belnet.be/ftp/packages/Linux-RedHat/up2date/rhl-6.0/alpha/lib/ http://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/http_-2www.microsoft.com/ntserver/http_-2www.netscape.com/comprod/mirror/http_-2gateway.olympcfunding.com/products.html http://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/http_-2www.microsoft.com/ntserver/http_-2www.netscape.com/comprod/mirror/http_-2gateway.olympcfunding.com/products/ http://f7.parsimony.net/forum9177/messages/638.htm http://f7.parsimony.net/forum9177/messages/594.htm http://japan.medscape.com/medscape/HIV/journal/1998/v04.n03/expert1098/expert1098.html http://golfonline.comfluent.net/cgi.pan$advsts&Dicky_Pride&102&lwfth&pga?golfstats http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=93&discrim=5,200,183 http://girls.4gee.com/japan/azumi_kawashima/big_page/0023.htm http://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4899.g.37.html http://www.chaos.dk/sexriddle/b/o/q/p/ http://www.osiris.978.org/~brianr/mirrors/olga/cowpie/m/mellencamp_john/?N=D http://www.jpc-music.com/1695294.htm http://sunsite.org.uk/packages/TeX/uk-tex/macros/latex/contrib/supported/t-angles/?D=A http://www.shopworks.com/index.cfm/action/info/userid/000B34B5-2F17-19FE-9038010B0A0ADCF2 http://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Top-Darlehens-Konditionen/Gemeinsam/Startseite/Gemeinsam/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Inserieren/onlineInserieren.htm http://www.idgnet.com/crd_playstation_254384.html http://www.3wbooks.de/BauerGunter/BauerGunter3406402798.htm http://library.cwu.edu/search/dSports+--+Washington+(State)+--+Periodicals/dsports+washington+state+periodicals/-5,-1,0,B/request&F=dsports+university+of+michigan&1,,2 http://www.aelita.net/products/library/sitemap/Reg/Subscribe/sitemap/Reg/QuoteRegister/Default.htm http://topcu.tucows.com/winme/preview/76604.html http://tonet.com.cn/zhuanyejihua/kaoshijihua/ligonglei/dianzizhuanyezhuanke.htm http://tonet.com.cn/zhuanyejihua/kaoshijihua/falv2001.htm http://tonet.com.cn/zhuanyejihua/kaoshijihua/caijinglei/gongshangqiyeguanlibenke.htm http://ftp.univ-lyon1.fr/faq/by-name/cats-faq/breeds/american-curl http://www.videos-erotism.com/xhuge/1/hardMid3.html http://www.zope.org/Wikis/DevSite/Projects/CoreSessionTracking/WikiWikiWeb/map http://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/74461000003304200000112720000087451/Labels.wo/603110000077451/2.0.0.5.0/3/Webobjects1 http://books.hyperlink.co.uk/bookinfo/Willa_Cathers_Transforming_Vision/Brienzo/Gary_W./0945636660 http://ftp.darenet.dk/tucows/winme/adnload/137112_28604.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/TEKNIIKKA/korkeakoulukirjastot/yliopisto-+ja+korkeakoulukirjastot/insin%F6%F6rit/kirjastot/ http://www.pokers.com/asp/sp-asp/_/SZ--2/PD--10017288/posters.htm http://itcareers.careercast.com/texis/it/itjs/+RwwBmelXD86elmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewhXwotoBwcaMnmowamoGnqBdGaDntdBowBodD5aqconDBaMwGAnBoDtapd5oBodDaMwDwtnainxawqqd1DBaMFqryfHfREIDzmbwwwpBmezWD86Wwww5rme9cwwwBrmeZpwww/jobpage.html http://berlin-charlottenburg.de/deutsch/politik/ma/062.htm http://www.ericsson.cl/cables/protection/index.shtml http://209.207.239.212/bkindex/c1007/f1401.html http://209.207.239.212/bkindex/c1007/f1418.html http://www.neoseeker.com/forums/index.php?function=edit_message&messageid=1037 http://www.neoseeker.com/forums/index.php?function=edit_message&messageid=1199 http://www.geocities.co.jp/SweetHome-Green/3692/PROFILE.HTML http://www.geocities.co.jp/SweetHome-Green/3692/MELINDEX.HTML http://myhome.naver.com/bora1234/photo.html http://www.magicvillage.de/magicvillage/computercenter/Grafik%20%26%20Layout/Software/Macintosh/Hotline/PowerBooks/ http://student.monterey.edu/nr/panditharatnesha/world/ http://in.egroups.com/message/Michelles__Miracles/657 http://www.babyheirlooms.com/catalog/htmlos.cat/001248.1.5492769465 http://republika.pl/raduczulu/counter.html http://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd378258019 http://www.8848.net/fjnews/200007/0728/2000072811393979.htm http://www.chaos.dk/sexriddle/m/n/x/t/ http://www.maastrek.de/maas/01eea86f59dac641c053/1/0/4 http://yp.gates96.com/14/79/82/8.html http://yp.gates96.com/14/79/82/95.html http://yp.gates96.com/14/79/82/98.html http://yp.gates96.com/14/79/83/10.html http://yp.gates96.com/14/79/83/16.html http://yp.gates96.com/14/79/83/48.html http://yp.gates96.com/14/79/84/4.html http://yp.gates96.com/14/79/84/96.html http://yp.gates96.com/14/79/85/34.html http://yp.gates96.com/14/79/85/96.html http://yp.gates96.com/14/79/86/9.html http://yp.gates96.com/14/79/86/11.html http://yp.gates96.com/14/79/86/28.html http://yp.gates96.com/14/79/86/32.html http://yp.gates96.com/14/79/86/86.html http://yp.gates96.com/14/79/86/96.html http://yp.gates96.com/14/79/87/96.html http://yp.gates96.com/14/79/88/38.html http://yp.gates96.com/14/79/88/74.html http://yp.gates96.com/14/79/88/95.html http://yp.gates96.com/14/79/89/57.html http://autos.yahoo.co.jp/ucar/m1010/k10102006199904/g24/a101020060240158710008510205199904_4.html http://www02.geocities.co.jp/HeartLand-Keyaki/7483/ http://online.excite.de/wirtschaft/katalog/32476 http://www9.hmv.co.uk:5555/do/session/1347777/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/Top_Navigation_Bar/top_navbar.html http://www9.hmv.co.uk:5555/do/session/1347777/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d90_sd0_pt0.html http://infoserv2.ita.doc.gov/efm/efm.nsf/Sources!OpenView&Start=5&Count=30&Collapse=54 http://users.ai-lab.fh-furtwangen.de/for_local_use_only/CD-TMFUMV/daten/beisp/05321/?D=A http://www.babyheirlooms.com/catalog/htmlos.cat/011629.1.0871727476 http://www.fogdog.com/cedroID/ssd3040183241146/cgi-bin/MyFogdog http://www.3w-geschichte.de/OReillyJamesT/OReillyJamesT0471287237.htm http://www.annotate.net/html/Annotate_Directory/Top/Arts/Movies/Titles/W/World_According_to_Garp,The/ http://dandini.cranfield.ac.uk/vl=-39536559/cl=151/nw=1/rpsv/cw/web/nw1/bargen.htm http://cgi.superonline.com/cgi-bin/sworld43/thread.pl/forums/sworld43/oss2000/45.html?dir=nextResponse http://cgi.superonline.com/cgi-bin/sworld43/get/forums/sworld43/oss2000/45.html?admin http://dogbert.bizit.net/debian/dists/unstable/non-US/non-free/binary-sparc/?M=A http://ftp.eecs.umich.edu/debian/dists/potato/main/binary-i386/misc/?D=A http://fi.egroups.com/message/girlscouting/3383 http://dk.egroups.com/group/scaleauto http://members.tripod.lycos.co.kr/SM4/paper.htm http://www.jamba.nl/KNet/_KNet-BqE8j1-JC4-pv4w/browse.nl/node.0/cde7f2elw http://yp.gates96.com/4/6/10/47.html http://yp.gates96.com/4/6/10/52.html http://yp.gates96.com/4/6/10/96.html http://yp.gates96.com/4/6/11/25.html http://yp.gates96.com/4/6/11/61.html http://yp.gates96.com/4/6/11/67.html http://yp.gates96.com/4/6/11/93.html http://yp.gates96.com/4/6/12/11.html http://yp.gates96.com/4/6/12/28.html http://yp.gates96.com/4/6/12/66.html http://yp.gates96.com/4/6/12/81.html http://yp.gates96.com/4/6/12/93.html http://yp.gates96.com/4/6/13/86.html http://yp.gates96.com/4/6/13/94.html http://yp.gates96.com/4/6/14/17.html http://yp.gates96.com/4/6/14/76.html http://yp.gates96.com/4/6/15/61.html http://yp.gates96.com/4/6/16/47.html http://yp.gates96.com/4/6/16/71.html http://yp.gates96.com/4/6/17/62.html http://yp.gates96.com/4/6/18/1.html http://yp.gates96.com/4/6/18/24.html http://yp.gates96.com/4/6/18/28.html http://158.169.50.70/eur-lex/it/lif/dat/1994/it_294D1217_09.html http://158.169.50.70/eur-lex/it/lif/dat/1995/it_295D0928_02.html http://158.169.50.70/eur-lex/it/lif/dat/1997/it_297D0904_03.html http://www.irishnews.com/k_archive/181299/local4.html http://www.irishnews.com/k_archive/181299/local14.html http://www.irishnews.com/k_archive/181299/local16.html http://uk.dir.yahoo.com/Regional/U_S__States/North_Carolina/Cities/Charlotte/Business_and_Shopping/Business_to_Business/Manufacturing/Casting__Moulding__and_Machining/ http://www.uwec.edu/Academic/English/Projects/VonHaden/ http://www.playease.com/et/beauty/img/jijinglian/jjl054.htm http://www.digitaldrucke.de/(aktuell,für,marktplatz,metamorphose,raum,sense)/_fort/html/themen/kultur/digital/digital.htm http://pub6.ezboard.com/fzfreesubmissiondirectoryplacestosubmitforfree.showMessage?topicID=35.topic http://pub6.ezboard.com/fzfreesubmissiondirectoryplacestosubmitforfree.showMessage?topicID=12.topic http://www.emerchandise.com/browse/DISNEY/TOY/b.FAVORITES%20COMICS%20CARTOONS%20DISNEY/s.CgJlPxcV http://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/showNextUnseen/fol/100001/1302769 http://911codes.com/games/platform/gameboy/sect/div/cont/list_cheat/spray/y/id/0000010187/gid/0000003974/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/ http://library.bangor.ac.uk/search/dPolice+regulations+--+Great+Britain/dpolice+regulations+great+britain/7,-1,0,E/frameset&F=dpolice+social+work+great+britain+congresses&1,1 http://www02.u-page.so-net.ne.jp/ta2/grosh/Training/Training9.html http://ring.shibaura-it.ac.jp/archives/linux/RedHat/redhat/code/i18n/trans/?D=A http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=15,35,22,28,26 http://ftp.nacamar.de/pub/NetBSD/NetBSD-current/pkgsrc/graphics/ruby-gl/?S=A http://www.academyfloral.com/state/aliro/flowers/birthdaybouquet1.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/ammattikorkeakoulukirjastot/ammattikorkeakoulut/p%E4ij%E4t-h%E4meen+koulutuskonserni/kirjastot/ http://www.jpc-music.com/1409509.htm http://chat.sportsline.com/u/ce/feature/0,1518,2565545_56,00.html http://chat.sportsline.com/u/ce/feature/0,1518,1675610_56,00.html http://www.affiliate.hpstore.hp.co.uk/do/session/380831/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hpstore.hewlett-packard.fr/gp http://209.207.239.212/bkindex/c1016/f1419.html http://209.207.239.212/bkindex/c1016/f1424.html http://www.sports.aol.fr/Jo/Perec_2.html http://www.citybrazil.com.br/go/smiguelaraguaia/transporte.htm http://www.fileamerica.com/states/texas/local/cameron/ptax.html http://www.angelfire.com/nv/bellea http://school.educities.org/card/a4711862.html http://school.educities.org/card/a60902.html http://school.educities.org/card/amy60630.html http://school.educities.org/card/aney1.html http://school.educities.org/card/christinelee.html http://school.educities.org/card/grace3721.html http://school.educities.org/card/jj1245j.html http://school.educities.org/card/jyik.html http://school.educities.org/card/k3813813.html http://school.educities.org/card/k78780606.html http://school.educities.org/card/kitty1snoopy.html http://school.educities.org/card/landy1.html http://school.educities.org/card/m0522.html http://school.educities.org/card/mark747.html http://school.educities.org/card/okdh.html http://school.educities.org/card/poppybaby.html http://school.educities.org/card/ry21.html http://www.secinfo.com/dvtBm.7a.htm http://www.craft-supplies.co.uk/cgi-bin/psProdDet.cgi/HT206|972959537|Deluxe_Dividers|user|0|0,0,1,1 http://in.egroups.com/post/book-readers?act=forward&messageNum=3829 http://www.nacion.co.cr/ln_ee/2000/enero/31/mundo10.html http://www.bigstar.com/news/sb/index.cfm/4ae0978g371d907g1?fa=today http://www.bigstar.com/cs/index.cfm/4ae0978g371d907g1?fa=privacy http://v2.bdnet.com/I/Cailleaux/I/Cannabissimo/fiche_serie.htm http://ftp.darenet.dk/tucows/winnt/adnload/12475_29978.html http://ftp.darenet.dk/tucows/winnt/adnload/1879_29966.html http://www.canit.se/(h1,k15,mail,unix,www)/support/ http://byron17.home.chinaren.com/lit/novle/maio.htm http://www.emerchandise.com/browse/PAGEANTS/MUG/b.FAVORITES%20PAGEANTS/s.Q8q0znEj http://stulchik.list.ru/catalog/10310.html http://stulchik.list.ru/catalog/10967.2.html http://dada.tucows.com/adnload/70717_30131.html http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/alpha/7677890 http://webraft.its.unimelb.edu.au/196024/students/cabong/pub/?M=A http://www.crutchfield.com/S-fFFHlZKyKNq/shop/ http://www.earthsystems.org/gopher/seacnet/announce97-08-03-14/1994/aug94/94-08-25-18:%20Violence%20in%20Indian%20Country%20Over%20Waste http://www.brio.de/BRIO.catalog/39fdb65f08c44c28273fd472aa7806e3/UserTemplate/10 http://www.qsl.net/hj3ufa http://www-jl.jl.cninfo.net/jlweb/book/wxtd/gu_long/chuliuxiang/bat/009.htm http://www.intel.fr/support/netport/pro/21402.htm http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957423999/957522544/Catalog/1375/001 http://www01.u-page.so-net.ne.jp/qc4/sam-ft/gallerycraftspace.html http://rpmfind.net/linux/RPM/mandrake/usr_src_linux-2.2.16_pcmcia-cs-3.1.14_doc_Tree.html http://www.chrisgraef.de/chg/webdesigner_medien.html http://www.opengroup.com/trbooks/186/1864501634.shtml http://moviestore.zap2it.com/shopcart/s.1GUFVsoF http://moviestore.zap2it.com/browse/MOVIES/ACTIONFI/s.1GUFVsoF http://moviestore.zap2it.com/browse/MOVIES/PUPPET/s.1GUFVsoF http://ocean.ntou.edu.tw/search*chi/m387.224+M178t/m387.224+m178+t/-5,-1,0,E/buttonframe&F=m387.224+m178+m&1,,0 http://www.egroups.com/message/BalletBuds/25 http://link.fastpartner.com/do/session/600375/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/create/learn.htm http://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-27.html http://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-42.html http://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-45.html http://www.vedomosti.spb.ru/2000/arts/spbved-2180-art-46.html http://www2.ipc.pku.edu.cn/scop/rsgen.cgi?pd=3nla http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959900763/Catalog/1000006 http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959900763/Catalog/1000031 http://fi.egroups.com/message/gailporter/199 http://fi.egroups.com/message/gailporter/222 http://www.egroups.com/messages/X-Air_Ultralight_Aircraft/359 http://dia.tucows.com/winme/adnload/136838_28375.html http://dia.tucows.com/winme/adnload/136846_28383.html http://www.letsmusic.co.kr/directory/weblink/weblink_list/1,1011,100000000186810,00.html http://www.smcworld.com/smcworld/bp/large/0744_2_1611_2_1611b.html http://news.pchome.com.tw/ettoday/entertainment/20001028/index-20001028155543020439.html http://www2.stas.net/lostlane/J.html http://allmacintosh.arrakis.es/utilsmac_rating.html http://novel.hichinese.net/zt/zpj/k/kelisidi/kill/008.htm http://194.174.50.23/cgi-bin/FisRun/InsertExhibitorIntoNotebook/1/interpack99/d/2891 http://www.loisirs.ch/jifmuf/14/roedrz.html http://www.linux.com/networking/server/business/operating_system/learning/consumer/ http://dandini.cranfield.ac.uk/vl=-39685335/cl=158/nw=1/rpsv/cw/www/faqs.htm http://blisty.internet.cz/1250/9901/19990108a.html http://www.staroriental.net/nav/soeg/ihf,aai,n2,247,Electric+Wave+Girl+1998.html http://www.multimania.com/excave/vicking.html http://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=5,14,21,12 http://www.secinfo.com/dWXc8.bz.htm http://www.secinfo.com/dWXc8.9d.htm http://bbs.ee.ntu.edu.tw/boards/RomanceNovel/11/2/9/2/ http://ftp.nacamar.de/pub/NetBSD/packages/1.4/amiga/emulators/?M=A http://no.egroups.com/subscribe/windows98 http://ftp.dei.uc.pt/pub/netscape/communicator/english/4.76/unix/unsupported/linux20_libc5/?D=A http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.gsb.stanford.edu/sloan/sloan_fellows.html http://apple.excite.com/entertainment/music/artists_and_genres/alternative_rock/grunge/stone_temple_pilots/merchandise/ http://home.sprynet.com/~tales/asw2.html http://fi.egroups.com/post/audiovision?act=reply&messageNum=145 http://www.zema.ru/post/forum/komi_respublika/usinsk/messages/712 http://opac.lib.rpi.edu/search/ddesert+ecology/-5,-1,0,B/browse http://www.arm.com/sitearchitek/support.ns4/html/sdt_debug!OpenDocument&ExpandSection=6,32,7,5 http://www.linux.com/networking/network/technology/security/community/open_source/ http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=9,33,15,36,22 http://isbn.nu/0505523892/borders http://www.informika.ru/text/database/geom/Draw/ris/ris34_1.htm http://caselaw.lp.findlaw.com/casecode/uscodes/42/chapters/77/subchapters/iii/parts/h/sections/section_6374_notes.html http://www.cyd.com.cn/zqb/19991104/GB/9672^Q805.htm http://providenet.tukids.tucows.com/win95nt/9-12/adnload/132963_46167.html http://www.chaos.dk/sexriddle/e/o/g/k/i/ http://www2.brent.gov.uk/planning.nsf/013459d30f2ad00680256623005fcc0a/8af30b42469a1215802568720046524a!OpenDocument&ExpandSection=16,13,11,9,15 http://jje.subportal.com/sn/Multimedia_and_Graphics/MPEG_Audio_Players_and_Editors/9126.html http://www.ropnet.ru/HyperNews/edit-response.pl/case/2856.html http://www.eveclub.com/cgi-bin/eveclub.front/972959508447/Catalog/1000045 http://itcareers.careercast.com/texis/it/itjs/+rwwBmeO9D86MwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDXnnqrDoqwcaiGoBnapd5oBodDaxw5nmamdq1MnDBwBodDawppcoqwBodD5a15naM15BapGdm1qBodDawxcnaMFqtPfRRZNDzme8xwwwpBme7WD86eLrwww5rm-mwwBrmeZpwww/jobpage.html http://www.iucr.ac.uk/iucr-top/journalsonline/iucr-top/cif/software/hiccup/prods/?M=A http://lists.omnipotent.net/mysql/199707/msg00381.html http://www.yescall.co.kr/kyungheein/ http://minyos.its.rmit.edu.au/~s9763278/sparks/sparks.html http://www.movieguide.com/pressroom/events/nbcpresstour/festival_nbcpresstour9.html http://www.gamers.net/game/190940/reviews http://www.staroriental.net/nav/soeg/ihf,aai,n2,198,Electric+Wave+Girl+1998.html http://marysz.freeservers.com/cgi-bin/c/736/64/dXNlcmJhbm5lcg==/gn/6616/ http://subversion.tigris.org/source/browse/subversion/subversion/libsvn_delta/delta.h?annotate=1.34&sortby=rev http://subversion.tigris.org/source/browse/subversion/subversion/libsvn_delta/delta.h?annotate=1.28&sortby=rev http://sunsite.org.uk/public/public/packages/WWW/spinner/?D=A http://sunsite.org.uk/public/public/packages/WWW/spinner/untared/ http://www.realbig.com/miata/miata/1998-01/1635.html http://cky.8k.com/cgi-bin/framed/1359/info/jess.html http://cky.8k.com/cgi-bin/framed/1359/info/bran.html http://www.loisirs.ch/jifmuf/10/bhcqud.html http://naver22.jrnaver.co.kr/Entertainment_and_Arts/Design_Arts/Architecture/Organizations/ http://www.zing.com/member/?name=birchpole&c=1 http://student.monterey.edu/nr/porrasjohnny/campus/ http://ftp.lip6.fr/pub/FreeBSD/development/FreeBSD-CVS/ports/misc/peq/files/patch-ab,v http://www.multimania.com/lesoir2/news/sept99/quake4.htm http://www.multimania.com/lesoir2/news/sept99/2309-12.txt http://www.multimania.com/lesoir2/news/sept99/0609-06.txt http://www.multimania.com/lesoir2/news/sept99/1309-13.txt http://homepage1.nifty.com/shiraishi/school/school2.htm http://ring.htcn.ne.jp/pub/NetBSD/NetBSD-current/pkgsrc/mbone/sdr/pkg/PLIST http://www.chaos.dk/sexriddle/m/c/z/b/ http://www.chaos.dk/sexriddle/m/c/z/p/ http://map.ipc.co.jp/asp/onmap/r/new/g-26/f-523824/ http://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/admission/972959650-- http://novel.hichinese.net/xd/gt/zpj/l/liangfengyi/jingrong/010.htm http://www.tvstore.com/browse/TV/MAGNET/s.l03qOWiP http://www.tvstore.com/browse/TV/KEYCHAIN/s.l03qOWiP http://www.gbnf.com/genealog2/burt/html/d0002/I1199.HTM http://www.gbnf.com/genealog2/burt/html/d0006/I1187.HTM http://www.gbnf.com/genealog2/burt/html/d0004/I1521.HTM http://src.openresources.com/debian/src/graphics/HTML/R/HVcreate.html http://yomama.tgm.ac.at/doc/susehilf/gnu/vip/Changing.html http://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/sysutils/gmc/pkg/ http://news.fm365.com/zonghe/20001009/156610.htm http://homepage1.nifty.com/tojo/shin13.htm http://www.sf.digitalcity.com/naplesfl/personals/browse.dci?cat=wsw&sort=t http://plat.debian.or.jp/debian/dists/woody/non-free/binary-hppa/otherosfs/?M=A http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/databases/gdbm/distinfo?only_with_tag=RELEASE_4_1_0 http://bbs.csie.ntu.edu.tw/txt/Emprisenovel/ebooks/mystery/alisanderla/wsyz/013.txt http://www.legis.state.ia.us/GA/78GA/Legislation/SCR/00000/SCR00018/?M=D http://www.mapion.co.jp/custom/AOL/admi/23/23104/kaminagoya/2chome/index-2.html http://ciscom.cnet.com/hardware/member/entry/0,10285,0-1069-419-1544825,00.html http://wow-online.vhm.de/Regional/Grossbritannien/Kunst.html http://www.cs.rit.edu/~hpb/Man/_Man_Openwin_html/html2/sigaction.2.html http://in.egroups.com/message/talksigncreate/287 http://rainforest.parentsplace.com/dialog/thread.pl/newclubfoot8/19.html?dir=nextThread http://ftp.jp.debian.org/debian-non-US/dists/potato/non-US/main/binary-arm/?N=D http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=baumelte&l=de http://www.chaos.dk/sexriddle/i/f/p/k/h/ http://unionsoft.narod.ru/3d/anatomy/pages/head1.htm http://src.openresources.com/debian/src/electronics/acs_021.orig/acs-021.orig/ http://www.mapion.co.jp/custom/AOL/admi/23/23111/takagicho/2chome/index-45.html http://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/unstable/contrib-jp/binary-m68k/tex/?N=D http://rapidus.tucows.com/winnt/adnload/54123_28460.html http://193.207.119.193/MV/gazzette_ufficiali/303-99/8.htm http://www.emerchandise.com/help_security/b.TV%20FRASIER/s.LoO0xS99 http://gpul.org/ftp/os/linux/cd-images/other/ISO/suse/?M=A http://opac.lib.rpi.edu/search/arush+sean+c/-17,-1,0,E/frameset&arush+homer+f&1,,0 http://genforum.genealogy.com/cgi-genforum/forums/griffin.cgi?3823 http://www.leo.org/leoclick/dce2b1c893db6a8193428ecad9ecd878+L+1__ http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=55&discrim=178,230,174 http://www.msb.malmo.se/search*swe/aKling,+Rolf/akling+rolf/7,-1,0,B/browse http://retailer.gocollect.com/do/session/1912785/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp http://st3.yahoo.co.jp/nihondo/k4932828003023.html http://webtools.familyeducation.com/whatworks/review/front/0,2562,1-10641-2316_-7233-3,00.html http://www.bretagne-online.com/telegram/htdocs/archive/1997/19970618/sommaire/stpoldeleon.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=234&discrim=235,230,183 http://www.yagoo.co.kr/stats/batting.asp?Mlbmanid=HAMPAT7709 http://www.linux.com/networking/network/new/website/suse/SAP/ http://www.linux.com/networking/network/new/website/suse/security/ http://javatest.a-net.nl/servlet/pedit.Main/http://www.cdc.gov/ncidod/dpd/parasiticpathways/drinkingwater.htm http://www.across.or.jp/shizuoka/nbbs.cgi/seibu:n52/post http://www.across.or.jp/shizuoka/nbbs.cgi/seibu:n52/450 http://www.across.or.jp/shizuoka/nbbs.cgi/seibu:n52/607 http://dangerous.co.kr/www.sony.co.jp/ProductsPark/Consumer/Peripheral/MDData/page6.html http://www2.sega.co.jp/bbs/article/s/sports/47/xvwixh/jlvcgk.html http://troy.lib.sfu.ca/search/alondon+mathematical+society/alondon+mathematical+society/-5,-1,0,B/frameset&F=alondon+m+c+s&2,,3 http://pub14.ezboard.com/fbrlproductionsfrm10.showAddTopicScreenFromWeb http://rex.skyline.net/html/Computers_-_Monitors.html?16,computers,radio,electronics,communication http://rex.skyline.net/html/Software_-_Developers.html?20,computers,radio,electronics,communication http://ftp.cwi.nl/static/publications/reports/abs/MAS-R9815.html http://www.jt.com.br/noticias/98/09/28/sd2.htm http://www.kentuckyconnect.com/heraldleader/news/080899/sportsdocs/08chuck.htm http://pix.egroups.com/post/ipe?act=forward&messageNum=5302 http://tulips.ntu.edu.tw/search*chi/cHT392+Un3/cht++392+un3/-5,-1,,B/browse http://magazines.sina.com/gourmet/contents/199912/199912-006_3_gb.html http://collection.nlc-bnc.ca/100/201/300/january/2000/00-06-05/sanctuary.html http://collection.nlc-bnc.ca/100/201/300/january/2000/00-06-05/blue1.html http://www.vorlesungen.uni-osnabrueck.de/informatik/pt/code/DiagramPalettes/Components.dpalette2/Image45 http://www.vorlesungen.uni-osnabrueck.de/informatik/pt/code/DiagramPalettes/Components.dpalette2/Image5 http://playsite.top263.net/software/hh-13.htm http://www.dispatch.co.za/1998/12/21/sport/MISS.HTM http://www.allhealth.com/parentsplace/send/0,3288,14-844-1-fertility-INFERTILITY,00.html http://www.tucows.telia.no/win2k/preview/37705.html http://www.peopledaily.co.jp/9803/09/current/newfiles/j1020.html http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1320/001 http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1321/001 http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1328/001 http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1350/001 http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/Catalog/1359/001 http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424007/957522556/ProductView/26897 http://www.uftree.com/UFT/WebPages/Don_MacFarlane/FEB99/d1/i0001285.htm http://wap.jamba.de/KNet/_KNet-n4B8j1-DFd-13bgt/showInfo-jambabanner.de/node.0/cde7f1uou http://launchbase.com/Shopping/Visual_Arts/entertainment/information/Politics.htm http://launchbase.com/Shopping/Visual_Arts/entertainment/shopping/Electronics.htm http://www.aoyun.sina.com.cn/news/sports/table/2000-09-15/1/4622.shtml http://www.eggerwirt.at/1Root/Kontinent/6/Staat/7/Bundesland/21/Ort/129509/Homepage/m_homepage...1.html http://198.103.152.100/search*frc/dSociologie+rurale+--+Ontario/dsociologie+rurale+ontario/-5,-1,0,B/frameset&F=dsociologie+religieuse+islam&1,,0 http://msn.excite.co.jp/travel/the_country/kinki/wakayama/hot_spring_of_accommodations/inn_tourist_home_in_wakayama?summary=false http://search.ibm.co.jp/as400/year2000/v3r2.html http://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/Allgemeine-IB/Startseite/3d-service/Private-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/anforderungsformular.htm http://spaceports.tucows.com/winnt/adnload/78908_28797.html http://www.trax.nilex.co.uk/trax.cgi/A1S/A2R/A3R/B1S/A1D/A1S/ http://www.babyheirlooms.com/catalog/htmlos.cat/041130.1.3206884924 http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/music/misc/thoughts/lit/misc/colorart/misc/freespeech.html http://www.cs.rit.edu/~hpb/Lectures/2000/JRMS_590/all-2.7.html http://www.cs.rit.edu/~hpb/Lectures/2000/JRMS_590/all-4.11.html http://www.refdag.nl/kl/990615klfo01.html http://pub20.ezboard.com/ftheimperiumknightsfrm11.showMessage?topicID=9.topic http://retailer.gocollect.com/do/session/1912767/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/advanced_search.asp http://www.thestateofcolorado.com/saudealersnew.html http://awelymor.weblogs.co.uk/sdb/en/html/ftp://ftp.suse.com/pub/suse/i386/6.2/suse/n1/ http://www.mirror.kiev.ua:8083/paper/2000/21/1251/text/21-13-3.htm http://www.recipezaar.com/browse/0110FC1070110A301109901109E00F06D http://www.linux.com/networking/network/vpn/server/Unix/ http://www.gasex.com/main.html?m4m.gallery.twinks http://www.xtdnet.nl/listarch/linux-router/1998-05-01/nav00046.html http://www.fogdog.com/cedroID/ssd3040183325831/cgi-bin/CedroCommerce?func=EditBasket http://www.totalmarketing.com/an/basket.pl/cancel/xwxm6773.94076 http://ciaoweb.tucows.com/winnt/adnload/56695_29112.html http://www.brio.de/BRIO.catalog/39fe2f6006e4fc48273fd472aa7806e0/UserTemplate/1 http://retailer.gocollect.com/do/session/1912715/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=2 http://retailer.gocollect.com/do/session/1912715/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/dealer_lookup.asp http://www.streetprices.com/Electronics/Computer_Hardware_PC/Motherboards/ATX/Slot1/Via_Pro133/sortproductbymake/sortcategorybylowprice/ http://www.streetprices.com/Electronics/Computer_Hardware_PC/Projectors/MAKE+CTX/sortdetailbystock/sortproductbyhighprice/sortcategorybycount/SP318392.html http://www.multimania.com/egypt95/img0017.htm http://dic.empas.com/show.tsp/?q=fourteenthly&f=B http://linux2.ipc.pku.edu.cn/scop/pdb.cgi?sid=d1repc2 http://www.schlagertempel.de/RobertPayer/B00000B8D2.htm http://www.cricinfo.com/link_to_database/INTERACTIVE/MAGAZINE/1996-97/SL_IN_NZ/SL_IN_NZ_FEEDBACK_1.html http://mediate.magicbutton.net/do/session/625637/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html http://www.clickm.dk/Clickmusic_Web_Guide/Bands_and_Artists/B/Better_Than_Ezra/ http://www.clickm.dk/Clickmusic_Web_Guide/Bands_and_Artists/B/Breeders,_The/ http://www.maastrek.de/maas/71eb3baf4c78ed98ef94/1/0/4 http://www.trnonline.com/archives/1999archives/07221999/obits/24620.shtml http://www.recipezaar.com/browse/0110FC1070110A100F06D0110A00110A3 http://www.areaguide.net/addlisting.asp?book=box&CatID=516 http://webraft.its.unimelb.edu.au/196023/students/lucym/ http://sunsite.org.uk/public/0-Most-Packages/quake/utils/frontends/qshel15b.txt http://pub14.ezboard.com/flfiaglarafabianisagoddess.emailToFriend?topicID=858.topic http://www.realize.com/am4d0481.htm,qt=e784fe2f=2a38a234-4-7cf2ef-1-1-0-3-- http://www.realize.com/am7bcd81.htm,qt=e784fe2f=2a38a234-4-7cf2ef-1-10-0-3-- http://mailman.real-time.com/rte-crossfire/1993/Dec/msg00022.html http://mailman.real-time.com/rte-crossfire/1993/Dec/msg00000.html http://mailman.real-time.com/rte-crossfire/1993/Dec/msg00009.html http://www.eallinfo.com/A55782/sameeron.nsf/homeFood!OpenPage&ExpandSection=8,4,3,6 http://www.ami.dk/udgivelser/emne/36.html http://www-x500-1.uni-giessen.de:8890/Lcn%3dKai%20Cheong%20HO,ou%3dEstates%20Management%20Office,o%3dHong%20Kong%20University%20of%20Science%20and%20Technology,c%3dHK http://ftp.telepac.pt/pub/cpan/modules/by-module/DBD/DMOW/?D=A http://members.se.tripod.de/aah/jochumsen/per02614.htm http://www.academyfloral.com/state/cacat/flowers/funeralofferingshare.html http://www.hotelboulevard.com/fr/paris/standard/htmlb877e62937802c0678f4638130be1ef0/sessionLang/ANG/prov/browse/cp/75013/resultatSearch.html http://www.alsapresse.com/jdj/00/03/24/AK/article_4.html http://www.mairie-montreuil93.fr/ville_pratique/environ/democrat/printemps/_vti_cnf/interstice.htm http://variety.studiostore.com/help/b.FAVORITES%20COMICS%20CARTOONS%20POWERPUFF/s.UAREyMtL http://ftp.sektornet.dk/tucows/winme/adnload/137341_28799.html http://www.eveclub.com/cgi-bin/eveclub.front/972959532302/Catalog/1000046 http://www.eveclub.com/cgi-bin/eveclub.front/972959532302/ClubBoard/list/1000022 http://findmail.com/post/geewhiz?act=reply&messageNum=2039 http://orders.mkn.co.uk/toy/rattles/order/now.en$NOK?what-bells=1 http://www.buybuddy.com.au/sleuth/26/1/502/10134/ http://spokesmanreview.sportshuddle.com/sports/baseball/playbetter/ask-expert/vincent3.asp http://ant.i.hosei.ac.jp/Ant.WWW/PCD0420/HTMLE/29.html http://ant.i.hosei.ac.jp/Ant.WWW/PCD0420/HTMLE/34.html http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~074800~90270',00.html http://builder.hw.net/frmRestDir/0,1112,'1~21~325~1~S~074800~09890',00.html http://dennou-h.ees.hokudai.ac.jp/library/Linux/debian-jp/dists/hamm-jp/non-free/binary-i386/games/?M=A http://www.peopledaily.com.cn/GB/paper68/1469/236625.html http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/koffice/kformula/BracketElement.cc?hideattic=1&sortby=rev http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/koffice/kformula/FractionElement.cc?hideattic=1&sortby=rev http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/koffice/kformula/MIMETYPE-Format?hideattic=1&sortby=rev http://linuxberg.ii.net/conhtml/preview/7963.html http://213.36.119.69/do/session/152992/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/hotels.html http://213.36.119.69/do/session/152992/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.spycamera.com/webcam/ http://ftp.netc.pt/pub/idgames/levels/doom/d-f/deathme.txt http://ftp.netc.pt/pub/idgames/levels/doom/d-f/dork.txt http://ustlib.ust.hk/search*chi/dsea+stories/dsea+stories/-5,-1,0,B/browse http://members.fortunecity.com/skinweaver/nf/nfpin01.htm http://se.egroups.com/group/French_ http://www.gencat.es/cgi-bin/bc/drawer.cgi/LD/0074/L00465?101 http://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/ogl-sample/main/gfx/lib/glut/glut_shapes.c?sortby=author http://www.teacherformation.org/html/od/facilitators.cfm/task1,about/discussion_id,2/xid,9456/yid,7276398 http://genforum.genealogy.com/cgi-genforum/forums/getchell.cgi?230 http://www9.hmv.co.uk:5555/do/session/1347795/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d100_sd0_pt0.html http://www.brd.net/brd-cgi/brd_multimedia/bildbearbeitung/WZ01K0DJ/beurteilung/ci=972850465.htm http://retailer.gocollect.com/do/session/1912745/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/affiliate_network.asp http://www.fao.org/icatalog/orders/basket.asp?prev2=yes&aries_id=1310 http://www.realestate-mls.com/list.cgi/VACANT_LAND|WATERFRONT|Edenville!Midland!MI http://www.geocities.co.jp/SilkRoad-Desert/1661/profile/profile.html http://hp-partner.whowhere.lycos.com/hp/chick/com/nj/ http://hp-partner.whowhere.lycos.com/hp/chick/com/next/ http://hp-partner.whowhere.lycos.com/hp/chick/com/nightflight/ http://www.emerchandise.com/browse/FRIENDS/TSHIRT/20/10/b.TV%20FRIENDS/s.kGIgjr5i http://dk.egroups.com/group/anarchymcgill http://bbs.gznet.edu.cn/cgi-bin/getannounce//groups/GROUP_3/WinNT_Win2k/smthbbs/Dir002 http://de.excite.de/computer/katalog/12947 http://www.bizline.co.kr/library/data/002/001/007/008/020/002/000017.html http://www.bizline.co.kr/library/data/002/001/007/008/020/002/000046.html http://saleonall.com/cat/OPTOMA/6492/video/projectors/145336/oneprod.html http://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/newfeat/ch213.html http://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/newfeat/newfeat.html http://excite.de/wirtschaft/katalog/37737 http://www.digitaldrucke.de/(aktuell,kino,kultur,werbung)/_fort/html/themen/aktuell/events/events.htm http://www.digitaldrucke.de/(aktuell,kino,kultur,kunst)/suche/uebersicht.html http://www.online.kokusai.co.jp/Stock_corner/V0043566/wrd/G500/stock_corner/stock_corner.html http://yp.gates96.com/4/37/0/92.html http://yp.gates96.com/4/37/1/3.html http://yp.gates96.com/4/37/1/38.html http://yp.gates96.com/4/37/1/58.html http://yp.gates96.com/4/37/2/21.html http://yp.gates96.com/4/37/3/56.html http://yp.gates96.com/4/37/3/68.html http://yp.gates96.com/4/37/3/79.html http://yp.gates96.com/4/37/4/1.html http://yp.gates96.com/4/37/4/48.html http://yp.gates96.com/4/37/4/99.html http://yp.gates96.com/4/37/5/27.html http://yp.gates96.com/4/37/6/1.html http://yp.gates96.com/4/37/6/7.html http://yp.gates96.com/4/37/6/80.html http://yp.gates96.com/4/37/7/0.html http://yp.gates96.com/4/37/7/5.html http://yp.gates96.com/4/37/7/9.html http://yp.gates96.com/4/37/7/12.html http://yp.gates96.com/4/37/7/49.html http://yp.gates96.com/4/37/7/97.html http://yp.gates96.com/4/37/8/15.html http://yp.gates96.com/4/37/8/32.html http://yp.gates96.com/4/37/8/62.html http://yp.gates96.com/4/37/8/76.html http://yp.gates96.com/4/37/8/96.html http://yp.gates96.com/4/37/9/12.html http://yp.gates96.com/4/37/9/14.html http://yp.gates96.com/4/37/9/23.html http://yp.gates96.com/4/37/9/78.html http://yp.gates96.com/4/37/9/80.html http://cgi.cnn.com/US/9601/state_union_poll/state_union_speech/pm/ http://freethemes.netc.pt/cursors/adnload/16904.html http://freethemes.netc.pt/cursors/preview/16926.html http://freethemes.netc.pt/cursors/adnload/16953.html http://library.bangor.ac.uk/search/dTelevision+broadcasting+of+news+--+Wales/dtelevision+broadcasting+of+news+wales/-17,-1,0,B/frameset&F=dtelevision+broadcasting+moral+and+ethical+aspects&1,1 http://home.baoding.cn.net/~snowcxm/photoshop/newpage6tp.htm http://home.baoding.cn.net/~snowcxm/photoshop/newpage6xq2.htm http://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/woody/non-free-jp/binary-sparc/otherosfs/?D=A http://www.tucows.ch/winnt/toolnt_size.html http://www.sdinfonet.com.cn/379/26/379269983.htm http://www.sdinfonet.com.cn/379/26/379269980.htm http://www.egroups.com/message/wdf/3368 http://de.excite.de/bildung/katalog/35821 http://kidneyfailure.shn.net/content/article/1677.57596 http://kidneyfailure.shn.net/content/article/1677.57625 http://kidneyfailure.shn.net/content/article/1677.57517 http://kidneyfailure.shn.net/content/article/1677.57456 http://kidneyfailure.shn.net/content/article/1677.57562 http://dia.tucows.com/winme/adnload/138490_29803.html http://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/lst/qqo/004A http://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/qry/zka/B2-kB23p/pno/0/qqatt/^ http://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/qry/zka/B2-kB2-n/pno/0/qqatt/^ http://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31062/qry/zka/B2-kB2-o/pno/0/qqatt/^ http://dk.egroups.com/message/tw2002/3626 http://dk.egroups.com/message/tw2002/3644 http://www.spiral.at/Katalog/Artikel/8908435/ http://www.spiral.at/Katalog/Artikel/8908842/ http://168.160.224.62/insurance/200006/10/114941.asp http://168.160.224.62/insurance/200006/10/114219.asp http://tucows.soneraplaza.nl/termnt_license.html http://pub13.ezboard.com/ubelegruin.showPublicProfile?language=EN http://troy.lib.sfu.ca/search/tbiometrics/tbiometrics/-5,-1,0,B/exact&F=tbiometrical+genetics+the+study+of+continuous+variation&1,2/limit http://futures.homeway.com.cn/lbi-html/news/content/20001013/172026.shtml http://jproxy.uol.es/jproxy/http://www.channel6000.com/sh/sports/columnist/stories/columnists-20001030-154321.html http://www.linux.com/networking/network/free/release/community/development/ http://pub17.ezboard.com/fskysurfingskysurfersubb.showAddReplyScreenFromWeb?topicID=4.topic http://ring.tains.tohoku.ac.jp/pub/linux/debian/debian-jp/dists/woody/contrib-jp/binary-m68k/oldlibs/?D=A http://10000downloads.subportal.com/sn/Network_and_Internet/Misc__Communications_Tools/12507.html http://www.hbdaily.com.cn/ctdsb/19991101/GB/ctdsb^1042^06^Ct06b08.htm http://cytobase.cnusc.fr:8101/textes/PURDmail/1998-12/nav00129.html http://www.brio.de/BRIO.catalog/39fe2f73050d53aa2741d472aa7806d2/UserTemplate/9 http://www.anekdot.ru:8084/an/an0007/t000731.html http://statweb.byu.edu/sasdoc/sashtml/gref/z0265802.htm http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux/drivers/char/ftape/Makefile?only_with_tag=davem-cvs-merge http://www.intellicast.com/Golf/World/UnitedStates/Southeast/NorthCarolina/Hawksnest/WINDcast/d1_00/bannerAd.shtml http://dailynews.sina.com.hk/sinaNews/wiser/hkStock/2000/0720/1418727.html http://ftp.dti.ad.jp/pub/lang/CPAN/authors/id/A/AG/AGUL/?S=A http://link.fastpartner.com/do/session/600392/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/jobpilot.php http://link.fastpartner.com/do/session/600392/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/smartguy.php http://citeseer.nj.nec.com/cidcontext/1024594 http://www.burstnet.com/ads/ad4820b-map.cgi/1395444997 http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdeutils/kpm/proc.h?r1=1.6&only_with_tag=HEAD http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d0/i0001501.htm http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d0/i0000641.htm http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0000932.htm http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0000762.htm http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0000997.htm http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/d1/i0001325.htm http://www.uftree.com/UFT/WebPages/JenHawkins/ALL/nindex.htm http://www.primenet.com/~g-lady/Farewell/_borders/ http://imasy.or.jp/~iwao/hokkaido/kushiro.html http://citeseer.nj.nec.com/nrelated/0/208436 http://www.zeal.com/Arts___Entertainment/Literature/Authors/Lovecraft__H_P_/Books/Cthulhu_Campus_Crusade_for_Cthulhu/ http://ftp1.se.debian.org/debian/dists/woody/contrib/binary-mipsel/mail/?M=A http://ftp1.se.debian.org/debian/dists/woody/contrib/binary-mipsel/mail/?S=A http://webtools.familyeducation.com/whatworks/item/front/0,2551,1-10698-1981-,00.html http://www.affiliate.hpstore.hp.co.uk/do/session/380859/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp http://www.collectingnation.com/cgi-bin/bn/view_feedback.mod/pn?HANDLE=pokeweed http://www.egroups.com/messages/Future-History-L/213 http://www.egroups.com/message/Future-History-L/192 http://www.burstnet.com/ads/cb7826a-map.cgi/1384588733 http://www.cs.com.cn/csnews/articles/142_23823.htm http://search.yam.com.tw/en/new/edu/hs/voca/tpc_vs/ http://ftp.univie.ac.at/packages/tex/macros/latex2e/contrib/supported/vmargin/?D=A http://citeseer.nj.nec.com/cidcontext/3145269 http://yp.gates96.com/11/72/80/34.html http://yp.gates96.com/11/72/80/36.html http://yp.gates96.com/11/72/80/76.html http://yp.gates96.com/11/72/81/26.html http://yp.gates96.com/11/72/81/67.html http://yp.gates96.com/11/72/83/68.html http://yp.gates96.com/11/72/84/29.html http://yp.gates96.com/11/72/84/39.html http://yp.gates96.com/11/72/85/56.html http://yp.gates96.com/11/72/85/63.html http://yp.gates96.com/11/72/85/96.html http://yp.gates96.com/11/72/86/3.html http://yp.gates96.com/11/72/86/28.html http://yp.gates96.com/11/72/86/59.html http://yp.gates96.com/11/72/86/63.html http://yp.gates96.com/11/72/88/43.html http://yp.gates96.com/11/72/89/8.html http://yp.gates96.com/11/72/89/13.html http://yp.gates96.com/11/72/89/20.html http://cometweb01.comet.co.uk/do!session=132039&vsid=700&tid=20&cid=37030&mid=1000&rid=1060&chid=1713&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1 http://iworld.freethemes.com/savers/adnload/77213.html http://iworld.freethemes.com/savers/adnload/35420.html http://www.questlink.com/QL/CDA/Research/ProductBrief/1,1768,0_11201_353170_43264,00.html http://www.questlink.com/QL/CDA/Research/ProductBrief/1,1768,0_11201_353170_43305,00.html http://www2.eunet.lv/library/iso/HISTORY/RUSSIA/Mirrors http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=10,3,5,16,14,6 http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=17,3,5,16,14,6 http://opac.lib.rpi.edu/search/dnatural+history+united+states+historiography+dictionaries/-17,-1,0,B/browse http://opac.lib.rpi.edu/search/dnatural+history+united+states+historiography+dictionaries/7,-1,0,B/browse http://www.sportinggreen.com/news/20001014/fbo/fbc/abb/001014.0391.html http://yp.gates96.com/0/14/10/63.html http://yp.gates96.com/0/14/10/80.html http://yp.gates96.com/0/14/11/32.html http://yp.gates96.com/0/14/11/37.html http://yp.gates96.com/0/14/11/80.html http://yp.gates96.com/0/14/13/21.html http://yp.gates96.com/0/14/13/23.html http://yp.gates96.com/0/14/13/38.html http://yp.gates96.com/0/14/13/49.html http://yp.gates96.com/0/14/13/90.html http://yp.gates96.com/0/14/14/53.html http://yp.gates96.com/0/14/14/63.html http://yp.gates96.com/0/14/14/77.html http://yp.gates96.com/0/14/15/12.html http://yp.gates96.com/0/14/15/88.html http://yp.gates96.com/0/14/15/96.html http://yp.gates96.com/0/14/16/27.html http://yp.gates96.com/0/14/16/62.html http://yp.gates96.com/0/14/16/67.html http://yp.gates96.com/0/14/16/86.html http://yp.gates96.com/0/14/16/92.html http://yp.gates96.com/0/14/17/15.html http://yp.gates96.com/0/14/17/22.html http://yp.gates96.com/0/14/17/44.html http://yp.gates96.com/0/14/18/27.html http://yp.gates96.com/0/14/18/29.html http://yp.gates96.com/0/14/18/83.html http://yp.gates96.com/0/14/19/35.html http://yp.gates96.com/0/14/19/58.html http://www.123bestphonerates.com/q/001p/vn/ZWUdEJwdxM.htm http://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A2S/B3L/A4S/B1L/ http://www.trax.nilex.co.uk/trax.cgi/A1C/B1U/A2S/B3L/A4S/C2D/ http://southwind.themes.tucows.com/skins/icq/preview/68532.html http://southwind.themes.tucows.com/skins/icq/adnload/77797.html http://southwind.themes.tucows.com/skins/icq/preview/55623.html http://southwind.themes.tucows.com/skins/icq/adnload/51324.html http://southwind.themes.tucows.com/skins/icq/adnload/26609.html http://southwind.themes.tucows.com/skins/icq/adnload/48629.html http://southwind.themes.tucows.com/skins/icq/adnload/48628.html http://www.webcom.com.mx/cronica/1999/mar/09/neg01.html http://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/news/mpl000207.html http://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/news/news61.html http://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/ds2/fact.html http://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/mgs/sci/mola/98lander.html http://jproxy.uol.es/jproxy/http://mars.jpl.nasa.gov/msp98/news/status990123.html http://ustlib.ust.hk/search*chi/dmarriage/dmarriage/-5,-1,0,B/exact&F=dmarriage+china&1,4/limit http://mediate.magicbutton.net/do/session/625641/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-artc.html http://www.scifi.com/cgi-bin/rbox/articles.pl?1&6&1721&20 http://www.areteoutdoors.com/contribute/earth/b.97.r.54.g.1706.html http://members.tripod.lycos.co.kr/ifoo6981/?M=A http://link.fastpartner.com/do/session/600395/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/bol.php http://link.fastpartner.com/do/session/600395/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mediatransfer.php http://link.fastpartner.com/do/session/600395/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/smartguy.php http://www.safrex.com/catalog/elite08/elite084c.html http://www.911codes.com/games/platform/psx/sect/div/cont/list_cheat/spray/y/id/0000005511/gid/0000003893/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/ http://yp.gates96.com/7/44/10/4.html http://yp.gates96.com/7/44/10/15.html http://yp.gates96.com/7/44/10/30.html http://yp.gates96.com/7/44/10/32.html http://yp.gates96.com/7/44/10/36.html http://yp.gates96.com/7/44/11/1.html http://yp.gates96.com/7/44/11/41.html http://yp.gates96.com/7/44/11/44.html http://yp.gates96.com/7/44/12/29.html http://yp.gates96.com/7/44/12/76.html http://yp.gates96.com/7/44/12/81.html http://yp.gates96.com/7/44/13/56.html http://yp.gates96.com/7/44/14/19.html http://yp.gates96.com/7/44/15/14.html http://yp.gates96.com/7/44/15/52.html http://yp.gates96.com/7/44/15/62.html http://yp.gates96.com/7/44/15/72.html http://yp.gates96.com/7/44/15/78.html http://yp.gates96.com/7/44/15/81.html http://yp.gates96.com/7/44/15/82.html http://yp.gates96.com/7/44/16/78.html http://yp.gates96.com/7/44/16/93.html http://yp.gates96.com/7/44/17/51.html http://yp.gates96.com/7/44/17/75.html http://yp.gates96.com/7/44/18/43.html http://yp.gates96.com/7/44/18/92.html http://yp.gates96.com/7/44/19/26.html http://www3.newstimes.com/archive2000/oct17/bze.htm http://member.aol.co%20m/askmo/ http://home.excite.co.uk/directory/categories/528195 http://www.scifi.com/bboard/browse.cgi/1/5/545/11566?pnum=1 http://member.shangdu.net/home1/havdone/game/gonglue/ljcq.htm http://member.shangdu.net/home1/havdone/game/gonglue/lishou.htm http://archiv.leo.org/cgi-bin/leo-md5.pl/pub/comp/usenet/comp.sources.misc/dostrace/ http://yp.gates96.com/8/70/91/12.html http://yp.gates96.com/8/70/91/20.html http://yp.gates96.com/8/70/91/45.html http://yp.gates96.com/8/70/92/29.html http://yp.gates96.com/8/70/92/40.html http://yp.gates96.com/8/70/92/74.html http://yp.gates96.com/8/70/93/9.html http://yp.gates96.com/8/70/93/11.html http://yp.gates96.com/8/70/94/10.html http://yp.gates96.com/8/70/94/90.html http://yp.gates96.com/8/70/95/4.html http://yp.gates96.com/8/70/95/13.html http://yp.gates96.com/8/70/95/58.html http://yp.gates96.com/8/70/95/74.html http://yp.gates96.com/8/70/95/80.html http://yp.gates96.com/8/70/96/34.html http://yp.gates96.com/8/70/96/65.html http://yp.gates96.com/8/70/97/0.html http://yp.gates96.com/8/70/97/16.html http://yp.gates96.com/8/70/97/75.html http://yp.gates96.com/8/70/98/27.html http://yp.gates96.com/8/70/98/60.html http://www.icopyright.com/1.1638.306154 http://www.zeal.com/category/be_zealous.jhtml?cid=828 http://lib1.nippon-foundation.or.jp/1996/0621/contents/004.htm http://www.haikou.hainan.gov.cn/pandect/nj/n96jada.htm http://www.chaos.dk/sexriddle/s/e/x/p/b/m/s/ http://www.symantec.ca/region/uk/resources/mobile/nav.html http://retailer.gocollect.com/do/session/1912798/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/products/product_lines.asp http://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/ie/Tabitha/http_-2www.adultlinks.net/gallery.shtml http://f22.parsimony.net/forum42460/messages/1.htm http://www.greenleaves.com/bookcat/gb_0722530986.html http://www.classiccmp.org/mail-archive/classiccmp/1998-06/0638.html http://www1.onelist.com/dir/Society/Paranormal/UFOs/Biblical_Perspectives http://home.hiwaay.net/~bjacobs/genealogy/laster/html/d0055/g0000045.html http://link.fastpartner.com/do/session/600374/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/netmaling.php http://big5.peopledaily.com.cn/haiwai/200003/03/newfiles/A104.html http://ustlib.ust.hk/search*chi/achang+chieh+mei/achang+chieh+mei/-5,-1,0,B/frameset&F=achang+chieh+fu&1,,2 http://teleline.terra.es/personal/mgsair/chtml/ejemplos/marcos1.html http://myhome.naver.com/toktok01/bbs.php3?p_work=admin&p_page=1 http://netway.pda.tucows.com/palm/adnload/34443_22051.html http://netway.pda.tucows.com/palm/adnload/34930_22057.html http://netway.pda.tucows.com/palm/adnload/34435_22044.html http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kmusic/brahms/qtWaveTrack.h?sortby=rev&only_with_tag=HEAD http://sinr.net/book/content/39/8411.html http://www.egroups.com/post/gvocsa?act=reply&messageNum=145 http://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7056669&area=&ID=483352 http://www.brio.de/BRIO.catalog/39fe2f7d06fe4a08273fd472aa7806a9/UserTemplate/1 http://www3.newstimes.com/archive2000/sep01/rgd.htm http://community.webshots.com/photo/5886633/5886821zAagKCgZhs http://community.webshots.com/photo/5886633/5917061PxBHHqElgV http://www.dnai.com/~mbaum/anita/html/eng/art/images/image38.html http://www.houses-apartment-listings.com/Michigan/city_search_criteria.asp?state=MI&City=CLINTON http://www.brio.de/BRIO.catalog/39fdb87c09896af6273fd472aa78076c/UserTemplate/10 http://www.expressindia.com/ie/daily/19990129/02950495p.html http://www.linux.com/networking/web/unix/internet/project/security/ http://www.linux.com/networking/web/unix/internet/project/Red_Hat/ http://www.linux.com/networking/web/unix/internet/project/freshmeat/ http://www.linux.com/networking/web/unix/internet/project/?kw_offset=50 http://ring.yamanashi.ac.jp/pub/linux/debian/debian/dists/Debian2.2r0/non-free/binary-i386/science/?N=D http://ftp.task.gda.pl/pub/games/idgames/utils/level_edit/acaddoom.txt http://www.affiliate.hpstore.hp.co.uk/do/session/380864/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp http://fi.egroups.com/post/allianc?act=reply&messageNum=2305 http://polygraph.ircache.net:8181/services/design/company/http_-2burn.ucsd.edu/~abcf http://polygraph.ircache.net:8181/services/design/company/miami.htm http://www.utexas.edu/ftp/admin/AI_ATTIC/ATW/Mosaic.instruct/?D=A http://ftp.du.se/disk3/redhat/updates/powertools/current/alpha/ http://www.multicosm.com/facade/demo.multicosm.com/facade/www.informationweek.com/mediakit/00/default.html http://www.multicosm.com/facade/demo.multicosm.com/facade/www.informationweek.com/mediakit/00/about_overview.html http://www7.tok2.com/home/maki67/menu.htm http://www.mapion.co.jp/custom/AOL/admi/23/23103/tsujicho/2chome/index-24.html http://sunsite.org.uk/public/computing/networks/internet/ietf/printmib/printmib-attendees-97apr.txt http://ftp.univie.ac.at/packages/tex/macros/latex2e/contrib/supported/nomencl/?N=D http://spaceports.tucows.com/winme/adnload/137993_30287.html http://habenix.uni-muenster.de/Rektorat/Forschungsberichte-1997-1998/fo05acd01.htm http://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=2,25,7,32,18 http://www.teacherformation.org/html/od/facilitators.cfm/task1,help/discussion_id,2/xid,6155/yid,3651726 http://itcareers.careercast.com/texis/it/itjs/+IwwBmeS9D867xwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew7hmwGAnBoDtapGdtGwMamnVncdpa51ppdGBaqconDBaqdMM1DoqwBodDaoDVn5BMnDBapGdm1qBaMwDwtnaqGnwBoVnaMFqhgfHNEDzm7wwwpBmeg9D86exqwww5rmeqDwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+XwwBmie0B-deaqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew7hmwGAnBoDtapGdtGwMamnVncdpa51ppdGBaqconDBaqdMM1DoqwBodDaoDVn5BMnDBapGdm1qBaMwDwtnaqGnwBoVnaMFqhgfHNEDzm7wwwpBmeg9D86exqwww5rm-mwwBrmeZpwww/morelike.html http://members.iinet.net.au/~scott3/legacy/matt.html http://cn.egroups.com/post/bastardimage?act=forward&messageNum=11 http://ftp.nodomainname.net/pub/mirrors/.2/gnu/tasks/?N=D http://ftp.nodomainname.net/pub/mirrors/.2/gnu/tasks/standards.text http://10000downloads.subportal.com/sn/Utilities/Misc__Utilities/11320.html http://mindit.netmind.com/proxy/http://www.altera.com/html/tools/swupdates.html http://www.next.com.hk/mag/419/news/an06.htm http://www.areteoutdoors.com/channel/air/b.283.g.3871.html http://troop485.tripod.com/documents/johnwayne.htm http://troop485.tripod.com/documents/bp-churchhill.htm http://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/22P03|972959558|Security|user|0|1,0,0,1 http://www9.hmv.co.uk:5555/do/session/1347794/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d120_sd0_pt0.html http://ftp.du.se/debian/dists/Debian2.2r0/main/disks-m68k/2.2.16-2000-07-14/mac/images-1.44/?S=A http://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20043193/-5,-1,0,B/buttonframe&F=bp20043190&1,1 http://www.parlament.ch/internet98/Poly/Suchen_amtl_Bulletin/ce98/ete/275.HTM http://in.egroups.com/messages/svpvril/5195?viscount=-30 http://in.egroups.com/messages/svpvril/?expand=1 http://retailer.gocollect.com/do/session/1912744/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp http://retailer.gocollect.com/do/session/1912744/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www18.freeweb.ne.jp/sports/imamako/ http://www.cs.ucc.ie/javadocs/jdk1.2.2/docs/api/java/awt/geom/class-use/QuadCurve2D.Double.html http://click-to.tell-a-friend.boardhost.com/tell-a-friend-confirm.cgi?stigmaonline&msg=172 http://www.emerchandise.com/aboutus/b.TV%20ANGEL/s.2YYjVOgH http://www.leyou.com/product/ShowResult.php?LY_Category=0531&page=3 http://cafe6.daum.net/Cafe-bin/Bbs.cgi/rest114pds/qry/zka/B2-kB23o/qqatt/^ http://sunsite.informatik.rwth-aachen.de/LinuxArchives/sunsite.unc.edu/distributions/linux-router/dists/2.9.6/base/?N=D http://www-uk5.cricket.org/link_to_database/ARCHIVE/1999-2000/PAK_IN_SL/FANTASY/ http://findmail.com/message/sangersreview/99 http://phase.etl.go.jp/mirrors/netlib/utk/people/JackDongarra/SLIDES/osu-498/sld011.htm http://tucows.datasync.com/winme/preview/75261.html http://secure.danysoft.com/asp/dany.tienda/1266636789/Catalog http://www.birding.about.com/hobbies/birding/cs/placesecuador/index_2.htm http://www.cpami.gov.tw/ymsnp/animal/fauna/nospc385text.htm http://www.fh-telekom-leipzig.de/hilfe/pak_e/paket_inhalt_jade_dsl.html http://home.vicnet.net.au/~nunayl/feedback.html http://www.expage.com/nibina http://www.expage.com/virtuaalisiittolantallivihko http://www.expage.com/muittentallijenkisoja http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=9,39,33 http://retailer.gocollect.com/do/session/1912707/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=2 http://www.streetprices.com/Electronics/Other/MAKE+SYMANTEC/sortdetailbystock/SP322647.html http://www.peopledaily.co.jp/haiwai/199810/09/no_981009003024_6.html http://mediate.magicbutton.net/do/session/625622/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-artc.html http://mediate.magicbutton.net/do/session/625622/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html http://www.nada.kth.se/systemgruppen/docs/javadoc/jdk-1.3/docs/api/javax/swing/plaf/basic/class-use/BasicSliderUI.ChangeHandler.html http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/Collect_DB_Advers2/2000-09-10/08/?N=D http://yp.gates96.com/12/57/30/53.html http://yp.gates96.com/12/57/32/14.html http://yp.gates96.com/12/57/32/97.html http://yp.gates96.com/12/57/33/1.html http://yp.gates96.com/12/57/33/37.html http://yp.gates96.com/12/57/37/91.html http://yp.gates96.com/12/57/37/98.html http://yp.gates96.com/12/57/38/23.html http://yp.gates96.com/12/57/38/34.html http://yp.gates96.com/12/57/38/51.html http://yp.gates96.com/12/57/38/53.html http://yp.gates96.com/12/57/39/43.html http://yp.gates96.com/12/57/39/56.html http://yp.gates96.com/12/57/39/68.html http://yp.gates96.com/12/57/39/70.html http://www3.sympatico.ca/jacques.m.boisvert/Data_Distribution.html http://www.garekiya.com/female/female02-25.html http://www.brio.de/BRIO.catalog/39fe2f6c06f4cd8e273fd472aa780734/UserTemplate/5 http://202.99.23.195/GB/channel1/13/20001030/291723.html http://db.bbc.co.uk/education/gcsebitesize/maths/shape_and_space_i_h/loci_rev.shtml http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceStoreCategories-BBC709F9_97F3_1F2D7EFC4CA45617D914720977E88400 http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceShoppingCartPage-BBC709F9_97F3_1F2D7EFC4CA45617D914720977E88400 http://polygraph.ircache.net:8181/http_-2www.microsoft.com/frontpage/http_-2www.hercules.com/history.htm http://www.jbc.org/cgi/content/short/275/36/27501 http://brazil.mit.edu/sdb/de/html/keylist.NNTP.html http://ads3.zdnet.com/c/g=r771&c=a53605&idx=2000.10.30.21.30.57/www.micronpc.com/zd/max1299 http://webtools.familyeducation.com/whatworks/item/front/0,2551,22-9696-6689-473-46499,00.html http://www.dispatch.co.za/2000/04/08/business/HIGHLOW.HTM http://generalstore.everdream.com/kore/catalog/Office_Supplies/Forms,_Record_Keeping_&_Reference/Human_Resources/Motivational/brand.html?sort=price&count=0 http://www.laria.u-picardie.fr/docs/www.linux-france.org/article/securite/intro.html http://ftp.uni-stuttgart.de/pub/netscape/communicator/slovenian/4.51/windows/windows95_or_nt/ http://cafe4.daum.net/Cafe-bin/Bbs.cgi/monjatingpds/lst/qqeq/1/zka/B2-kBnNt http://myhome.shinbiro.com/~funky27/novel18.htm http://www.apcmag.com/apcweb/reviewsdisc.nsf/aac7d56ca8fd884b852563be00610639/25858e2d9c878e294a2567060015364d!EditDocument http://www.private-immobilien-boerse.de/nordrhein-Westfalen/luedinghausen/Verkauf/3d-service/Gemeinsam/Immolink/Gemeinsam/erreichenPartner/Private-IB/ http://www.eos.dk/archive/swing/msg00405.html http://www.jobvillage.com/channel/jobs/human_resources/benefits_analysis/b.2807.g.1757.html http://www.hanaga.com.cn/gbjc/tc/jq.htm http://www.multimap.com/wi/33747.htm http://www.multimap.com/wi/143959.htm http://home.freeuk.net/jdl/Left_Navigate.htm http://www.crit.org/nph-edit.cgi/http://crit.org/pub/ifi.unizh.ch/wagner/just-testing.html http://www.interessengemeinschaft-musik.de/catalog%20data/body_22.html http://aleph.tau.ac.il:4500/ALEPH/ENG/ATA/AAS/AAS/FIND-ACC/0333501 http://www.mojahedin.org/Pages/Mojahed/Mojahed451/rp/rp09.html http://genforum.genealogy.com/cgi-genforum/forums/lenhart.cgi?158 http://carriage.de/Schoner/collections/Geschichte/Sammlungen/info-e/ http://cafe4.daum.net/Cafe-bin/Bbs.cgi/pflhs11pds/rnw/zka/B2-kB2-s http://ftp.lip6.fr/pub11/NetBSD/arch/hpcmips/pkgstat/20001008.0536/textproc/xerces-j-current/ http://dk.egroups.com/message/scotdisinfo/306 http://groups.haas.berkeley.edu/hcs/Docs/SASv8/sasdoc/sashtml/proc/z0360708.htm http://www.legend-net.com/news/tiyu/messages/474.html http://www.legend-net.com/news/tiyu/messages/466.html http://tv.thevines.com/leaf/AA0000373887/3/0/0/&hmode=on http://vorg1.subportal.com/sn/Business/Enhanced_Calculators/5511.html http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,28,31,24,35 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=24,5,17,30,11 http://ftp.gwdg.de/pub/eff/Global/USA/Legislation/gtda_export.regulations http://www.dein-schicksal.de/Fotoanzeigen/April_2000/7/17/27/body_57.html http://www.fujian-window.com/Fujian_w/news/mzrb1/20000630/2_14.html http://www.webswap.com/shelf/2/17559/sell.html http://search.leg.wa.gov/wslrcw/RCW%20%2036%20%20TITLE/RCW%20%2036%20.100%20%20CHAPTER/RCW%20%2036%20.100%20.060.htm http://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex02/icc97/?M=A http://school.educities.org/card/abc0609.html http://school.educities.org/card/huangmei.html http://school.educities.org/card/a126457822.html http://school.educities.org/card/a8911.html http://school.educities.org/card/aa5117.html http://school.educities.org/card/b3575610.html http://school.educities.org/card/c5625.html http://school.educities.org/card/h1230997.html http://school.educities.org/card/h224153937.html http://school.educities.org/card/julie9.html http://school.educities.org/card/lefe135.html http://school.educities.org/card/nl123.html http://school.educities.org/card/s5802.html http://school.educities.org/card/s58120.html http://school.educities.org/card/s5931.html http://school.educities.org/card/s6197.html http://school.educities.org/card/vov.html http://school.educities.org/card/xx5331.html http://darkwing.uoregon.edu/~cblanksh/GeneratedItems/?M=A http://ciscom.gamecenter.com/Tipcheat/PC/Item/0,128,0-202,00.html http://rotten-tomatoes.com/movies/browse/1010942/video.php http://rotten-tomatoes.com/movies/browse/1076825/reviews.php http://archive.soccerage.com/s/fr/09/98335.html http://www.ferien-immobilien.de/nordrhein-Westfalen/aachen/Verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/3d-service/Gemeinsam/erreichenPartner/Gemeinsam/impressum.htm http://www.ebigchina.com/tool_tellfriend.phtml?code=msg&mid=3174 http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/libexec/rpc.rwalld/Makefile?only_with_tag=RELENG_3 http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/libexec/rpc.rwalld/Makefile?only_with_tag=MAIN http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/src/libexec/rpc.rwalld/Makefile?only_with_tag=RELENG_3_BP http://ring.jec.ad.jp/pub/linux/debian/debian/dists/unstable/contrib/binary-sh/admin/?M=A http://www2.eunet.lv/library/alt/URIKOVA/FORTUNE_D/Mirrors http://www.hermes.dk/departments/om/publica.shtml http://208.194.150.10/Ski/Articles/DrDewpoint/001/bannerAd.shtml http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/quanta/quanta/widgets/?sortby=log&only_with_tag=start http://biblio.cesga.es:81/search*gag/aSempere+Navarro,+Antonio-Vicente/asempere+navarro+antonio+vicente/-5,-1,0,E/frameset&F=asempere+y+guarinos+juan+trad&1,1 http://www.fractal.com.ru/Component/Toshiba/74Cxx/TC74HC74DS.pdf http://www.staroriental.net/nav/soeg/ihf,aai,n3,7,Electric+Wave+Girl+1998.html http://excite.de/auto/katalog/11803 http://gatekeeper.dec.com/pub/BSD/NetBSD/NetBSD-current/pkgsrc/sysutils/amanda-client/pkg/ http://www.smcworld.com/smcworld/bp_e/large/0524_2301_002x2301_003x2301_004x2301_005x2301_006x2301_007_2301_005b.html http://www.kaos.dk/sexriddle/x/j/t/z/d/ http://www.kaos.dk/sexriddle/x/j/t/z/e/ http://spartanburg2.edgate.com/blgspringes/school_athletics/parent/ http://www-personal.engin.umich.edu/~mhaanpaa/?S=D http://www.amcity.com/jacksonville/stories/2000/05/15/story8.html?t=email_story http://yp.gates96.com/7/47/40/13.html http://yp.gates96.com/7/47/42/7.html http://yp.gates96.com/7/47/43/2.html http://yp.gates96.com/7/47/43/22.html http://yp.gates96.com/7/47/43/54.html http://yp.gates96.com/7/47/44/0.html http://yp.gates96.com/7/47/45/3.html http://yp.gates96.com/7/47/45/30.html http://yp.gates96.com/7/47/45/78.html http://yp.gates96.com/7/47/45/89.html http://yp.gates96.com/7/47/46/41.html http://yp.gates96.com/7/47/46/71.html http://yp.gates96.com/7/47/48/1.html http://yp.gates96.com/7/47/48/68.html http://yp.gates96.com/7/47/48/92.html http://yp.gates96.com/7/47/49/6.html http://yp.gates96.com/7/47/49/43.html http://yp.gates96.com/7/47/49/86.html http://yp.gates96.com/7/47/49/97.html http://de.excite.de/bildung/katalog/24692 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=90&discrim=226,20,231 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=90&discrim=226,20,4 http://www.affiliate.hpstore.hp.co.uk/do/session/380862/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/search.asp http://www1.zdnet.co.uk/news/news1/ns-1511.html http://bellona.itworld.com:8080/cwi/reprint/0,1926,NAV63-128-1357-1367_STO48730,00.html http://wwwhome.cs.utwente.nl/~zwiers/projects/docs/jdk/api/java/util/class-use/SortedMap.html http://cgi.cnnsi.com/football/nfl/players/Ed.McCaffrey/ http://fi.egroups.com/messages/philmusic/12006 http://fi.egroups.com/messages/philmusic/12123 http://fi.egroups.com/messages/philmusic/213 http://fi.egroups.com/messages/philmusic/1826 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=22,0+20,0-9,2-~ http://my.egroups.com/message/gps4gis/164 http://www.bemi-immobilien.de/Startseite/www.allgemeine-immobilien-boerse.de/allgemeine-ib/landkreiszwickau/Verkauf/29109700708107kirchbergvillamü/Gemeinsam/MarketingStrategie/Gemeinsam/Inserieren/Startseite/Startseite/Gemeinsam/versicherungen/gebaeude/anforderungsformular.htm http://apple.excite.com/entertainment/fine_arts/classical_music/composers/baroque_composers/albinoni_tomaso/works/ http://www.lithoquoter.com/Scripts/WebObjects.exe/Printers.woa/609420000046582000001552000000949302/main.wo/7834100000849302/4/-/prime http://yp.gates96.com/11/75/40/25.html http://yp.gates96.com/11/75/40/38.html http://yp.gates96.com/11/75/40/88.html http://yp.gates96.com/11/75/40/91.html http://yp.gates96.com/11/75/42/1.html http://yp.gates96.com/11/75/42/74.html http://yp.gates96.com/11/75/42/81.html http://yp.gates96.com/11/75/43/45.html http://yp.gates96.com/11/75/43/51.html http://yp.gates96.com/11/75/46/25.html http://yp.gates96.com/11/75/46/72.html http://yp.gates96.com/11/75/46/89.html http://yp.gates96.com/11/75/46/91.html http://yp.gates96.com/11/75/47/5.html http://yp.gates96.com/11/75/48/67.html http://yp.gates96.com/11/75/49/89.html http://users.telerama.com/~mross/jenny/forsale.html http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=14&discrim=212,57 http://ring.htcn.ne.jp/archives/NetBSD/NetBSD-1.4.2/atari/binary/security/?N=D http://library.bangor.ac.uk/search/dCanada+--+Agricultural+resources+--+19th+century/dcanada+agricultural+resources+++19th+century/-5,-1,0,B/exact&F=dcanaanites&1,3 http://www.brio.de/BRIO.catalog/39fe2f6406e8eec4273fd472aa780738/UserTemplate/5 http://kuyper.calvin.edu/fathers2/NPNF1-05/npnf1-05-04.htm http://kuyper.calvin.edu/fathers2/NPNF1-05/npnf1-05-08.htm http://kuyper.calvin.edu/fathers2/NPNF1-05/npnf1-05-20.htm http://polygraph.ircache.net:8181/http_-2www.sgi.net/http_-2www.itools.com/research-it/http_-2www.aardvarkclay.com/Themes/http_-2www.snapsite.com/guests/sk8ctrl/public/html/sitemap/sitemap.htm http://www.genexchange.com/cemlist.cfm?state=mo&county=webster http://newsone.net/nnr/showart/alt.current-events.haiti/911 http://212.11.11.62/voyages_degriffes/MEXIQUE/PARIS+-+MEXICO+A%2FR/SAI00511790/ http://bitwise.linux.tucows.com/x11html/adnload/131942_45932.html http://www.brio.de/BRIO.catalog/39fe2f740910301a2740d472aa7806aa/UserTemplate/1 http://singles-ads.theshoppe.com/cgi-bin/c/736/64/dXNlcmJhbm5lcg==/gn/3585/ http://www.chaos.dk/sexriddle/j/l/v/y/t/ http://www.interlog.com/~prandall/relations/d0003/g0000795.html http://ftp.jp.debian.org/debian/dists/woody/non-free/binary-arm/oldlibs/?M=A http://biblioteca.upv.es/bib/doc/doc_fisbd/129/97268//V/1828099/6////25/N/MLTPAID http://biblioteca.upv.es/bib/doc/doc_fisbd/129/147168//V/1828099/11////25/N/MLTPAID http://biblioteca.upv.es/bib/doc/doc_fisbd/129/124846//V/1828099/24////25/N/MLTPAID http://mirrortucows.technet.it/winme/htmlbeginnerme_size.html http://www.bcbsal.org/Provider_Dir/pharmacy/state/Georgia/HAWKINSVILLE/index_10201.html http://www.incestpornstories.com/tinkerbellbeard/ac/plus-sizehealthy/petitevietnamese/slanted-eyes/cuntschoolgirls/high-schoolteenager/cherryunderage.html http://www.0563.net/imode2/hazu/play/outdoor/nature/nature1.htm http://www.launch.com/music/songpage/pvn_content/0,5259,1074221,00.html http://ftp.jp.debian.org/debian/dists/unstable/main/binary-alpha/tex/?S=A http://iceberg.adhomeworld.com/cgi-win/redirect.exe/896425026 http://www.nrc-handelsblad.nl/W2/Lab/Baan/000726-a.html http://www.nrc-handelsblad.nl/W2/Lab/Baan/000718-a.html http://members.tripod.co.jp/muzyaki/?M=A http://alfa.nic.in/lsdeb/ls12/ses4/0413039930.htm http://excite.de/immobilien/katalog/26640 http://excite.de/immobilien/katalog/27591 http://excite.de/immobilien/katalog/28370 http://excite.de/immobilien/katalog/28376 http://excite.de/immobilien/katalog/26426 http://excite.de/immobilien/katalog/28458 http://www.emerchandise.com/aboutus/b.TV%20THE60S/s.qxmvd5Gr http://www.computerworld.com.cn/99/week/9920/9920c13.asp http://www.stud.ntnu.no/~oystena/oystena/cache/dvx70a.html http://nealet.subportal.com/sn/Shell_and_Desktop/Holiday_Screen_Savers/ http://dk.egroups.com/message/ugm/40?source=1 http://www1.bdaserver.de/bda/nat/pzt/formel1/gp/mon.html http://www17.freeweb.ne.jp/diary/t-soken/love-love.htm http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-12/14/971332013437.txt http://pub3.ezboard.com/f80sxchangegeneraldiscussion.showMessage?topicID=60.topic http://www.northampton.ac.uk/cgi-bin/liberation/betsie/betsie.pl/0005/www.nene.ac.uk/ncr/enrol/sectn4/pdf/4-5.pdf http://www.xmission.com/~dkenison/cgi/lwgate.cgi/LDS-BOOKSHELF/archives/v01.n676/Date/article-15.html http://www.eos.dk/archive/swing/nav08574.html http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=1,4,11,18,5,17 http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=6,4,11,18,5,17 http://cn.egroups.com/message/highlanderswaps/3351 http://cn.egroups.com/message/highlanderswaps/3356 http://www.mobygames.com/user/sheet/view/havelist/so,game_title(game_id)+DESC,game_havelist_id+DESC/userHaveListId,18/userSheetId,832/offset,15/ http://www.mobygames.com/user/sheet/view/havelist/so,game_title(game_id)+DESC,game_havelist_id+DESC/userHaveListId,18/userSheetId,832/offset,60/ http://gettosdownloads.subportal.com/sn/Palm_Pilot/Home_and_Hobby/12385.html http://biblio.cesga.es:81/search*gag/aOurense+(Di%26oacute%3Bcesis).+Obispado+de+Ourense,+ed./aourense+diocesis+obispado+de+ourense+ed/-5,-1,0,B/browse http://www.beneteau-owners.com/beneteau.nsf/userlistbyboat!OpenView&Start=21.24&Count=45&Expand=39 http://www.geocities.com/Yosemite/8908/ http://www.geocities.com/Yosemite/3295/ http://lists.insecure.org/linux-kernel/2000/Apr/4105.html http://www.telematik.informatik.uni-karlsruhe.de/osf/sw/v5.0x/lp2/dna500/ http://atlas.web.cern.ch/Atlas/GROUPS/SOFTWARE/OO/dist/0.0.28/graphics/TreeBuilder/TreeMaker/CVS/?M=A http://www.21hk.com/book/zt/zt/zpj/c/chichuancilang/txmoxj/012.htm http://chat.hani.co.kr/NetBBS/Bbs.dll/brief/rcm/zka/B23lBn-t/qqatt/^ http://www3.buch-per-sms.de/impressum.jsp$ID=To7770mC6889218603037781At0.41865389376542195 http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1997/7/0/904457/ http://www.mets.com/gameinfo/990504-recap.htm http://www.mets.com/Video/990709-PiazzaHR_lr.asp http://www.people.zeelandnet.nl/cn.atlas/compatlasw1.html http://www.digitaldrucke.de/(aktuell,bekanntschaften,hilfe,marktplatz,nuernberg)/_fort/html/themen/markt/bekannt/bekannt.htm http://www.staroriental.net/nav/soeg/ihf,acf,s0,359,Gigi+Leung+Wing-Kay.html http://rapidus.tucows.com/winme/adnload/137435_28887.html http://library.bangor.ac.uk/search/aBerthoff,+Ann+E/aberthoff+ann+e/-5,-1,0,B/frameset&F=aberthier+rene&1,1 http://www.teenplatinum.com/barelylegal/underagevirgin/abductionbondage/amateurco-ed/chijapanese/{gaylink} http://www.paisvirtual.com/informatica/freeware/cltorres/contra.htm http://library.cuhk.edu.hk/search*chi/aInstitution+of+Civil+Engineers+(Great+Britain)/ainstitution+of+civil+engineers+great+britain/-5,-1,0,B/browse http://www.digitaldrucke.de/(aktuell,computer,hersteller,hilfe)/_fort/html/themen/computer/hard/links/dell.htm http://www.angelfire.com/ar/jimbowles/weekofoct3.html http://www.dtic.mil/envirodod/derpreport95/vol_2/b2_1991.html http://www.dtic.mil/envirodod/derpreport95/vol_2/b2_2010.html http://kobe.cool.ne.jp/heartisland/y_top0004.html http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=10,97,3 http://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-20000207-231308.html http://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-19991206-195152.html http://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-990920-105620.html http://www.channel7000.com/partners/tv/consumer/partners-tv-consumer-990810-082554.html http://gallery2.simplenet.com/lobby/main/videocaps/lalbrght/conair/laca26.htm http://www.ld.com/cbd/archive/1999/09(September)/30-Sep-1999/Bawd007.htm http://www.ld.com/cbd/archive/1999/09(September)/30-Sep-1999/Bawd013.htm http://chunma.yeungnam.ac.kr/~j4390071/ http://www.chaos.dk/sexriddle/h/y/z/m/ http://www.maas.ccr.it/cgi-win/hiweb.exe/a18/d262/b190,8,be,29,29,,b,,be,b, http://pub17.ezboard.com/fanimesandrpgslinkstositesandotherforums.showMessage?topicID=2.topic http://www.hotelboulevard.com/fr/riviera/standard/htmled1e03872682f66e105b3c38b4506d50/sessionLang/ANG/search.html http://bbs.msquare.or.kr/list.bbs/course/old/DiscMath95/9.html http://www.rezel.enst.fr/ftp/linux/distributions/debian/CD-1/dists/unstable/main/binary-all/mail/?N=D http://www.ee/epbe/pangandus/9910/0.2.txt http://shitty.10pics.com/buttfucking/rear/ http://www.thestateofcolorado.com/hsiwindowdoorlettering.html http://www.generation-formation.fr/brevesc.htm---o21zAo0UtDo0Ol9A074fo6Td4ezyr6feZJPAPfVbNyqruePl9neNHhIeOkatAhcgNA074wNV8XzAhcgNAPfVbdsNhJI.htm http://netscape.digitalcity.com/boston/sports/standings.dci?league=NBA&team=BOS http://netscape.digitalcity.com/boston/sports/attcompare.dci?league=NBA&team=BOS http://retailer.gocollect.com/do/session/1912752/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://mindit.netmind.com/proxy/http://www.skepdic.com/sympathetic.html http://mindit.netmind.com/proxy/http://faculty.washington.edu/chudler/moon.html http://itcareers.careercast.com/texis/it/itjs/++wwBmeE_D86esmwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqew8Qwo5qda5dc1BodDawGnwaGn31oGnmaoDmnpBraADdicnmtnapGdm1qBaBnqrDoqwcatGd1pamnVncdpaMFqoET02fgENDzmezxwwwpBmeC_D86Qwww5rmkmwwBrmeyDwww/morelike.html http://retailer.gocollect.com/do/session/1912762/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/terms_and_conditions.asp http://retailer.gocollect.com/do/session/1912762/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www.writtenbyme.com/cgi-bin/rw_readarticle.cgi/141339880.shtml http://www.writtenbyme.com/cgi-bin/rw_readarticle.cgi/410769654.shtml http://www.writtenbyme.com/cgi-bin/rw_readarticle.cgi/190045923.shtml http://tucows.megalink.com/winme/preview/76155.html http://www.buybuddy.com/sleuth/17/1/2006/32184/ http://www.affiliate.hpstore.hp.co.uk/do/session/380853/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp http://pchome.net:81/ch/Hw/CAMERA/canoneosd30/canoneosd30.htm http://pchome.net:81/ch/Hw/CAMERA/kodaknew.htm http://pchome.net:81/ch/Hw/MODEM/twluc562w2k.htm http://pchome.net:81/ch/Hw/MONITOR/mag796fd.htm http://pchome.net:81/ch/Hw/cool/anquanshuileng/anquanshuileng.htm http://pchome.net:81/ch/Hw/DISPLAY/3dbenchmarks/3dbenchmarks.htm http://pchome.net:81/ch/Hw/CAMERA/Microdrive.htm http://pchome.net:81/ch/Hw/harddisk/niyaomaishime.htm http://www.civila.com/guitar/desenredada/chat/logos/index.html-ssi http://members.xoom.it/scialpinismo/gitaappenparm/PreviewPages/PreviewPage7.htm http://cpan.nitco.com/modules/by-module/Mail/ASPIERS/URI-Bookmarks-0.92.readme http://polygraph.ircache.net:8181/services/design/http_-2www.swnebr.net/~cambridg/http_-2www.cauce.org/Malcolm/ http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_aswkit_aswkit.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_nbilwv_rbpobu.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_jkawvi_messod.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_jkawvi_otdbms.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_jkawvi_hoktlo.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_uhfkhdn_ilaeh.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_xyhsj_pfepjoa.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_alkqaay_mogsts.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_ighrg_ighrg.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_cbfjod_parbe.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_dqnlq_jfspcj.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_phcro_bwlah.html http://www.asahi-net.or.jp/~yd7k-itu/sbbsindex/old/16_phcro_xoxchqb.html http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/IkhI2h2UISFGhSJ4dK-jGu69npNFUTS7n0SO4q6b8rSzWq_RIDBJOsj9QRxPcb3IZgZlQ5jvjGikzJWNeK-85DucH1Ag5dhhL0czi-GMxyHC1dmfKc0hW5TzqJpnm938SIT3xNrWgjZN66P6 http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/oo1IpLu33emgRiskeudWkzY7LxFY35wz6EqyQ42lguNadi_4qnt4FhGUPOob_C5Wt99hQSEKEuRTRevsau9UYJ9lySivV-u51_OF4aSEhYXTt98QpjnIOFYPV6acMb20In922uOHMyYdC8HXvwhIP-8o8oM4wLBMdll6aW8xe922WllgXE1F5qlvFqyA http://msdn.microsoft.com/library/devprods/vs6/visualj/vjref/java.sql.DatabaseMetaData136.html http://msdn.microsoft.com/library/devprods/vs6/visualj/vjref/java.sql.DatabaseMetaData090.html http://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9902/Date/article-572.html http://spaceports.tucows.com/winme/preview/76400.html http://www.telecombroker.com/q/001p/ppc3/qG4gs1ewhU.htm http://ftp.nodomainname.net/pub/mirrors/.2/gnu/graphics/?N=D http://retailer.gocollect.com/do/session/1912813/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp http://retailer.gocollect.com/do/session/1912813/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/news/index.asp http://retailer.gocollect.com/do/session/1912813/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/privacy_policy.asp http://202.101.106.19/dir/100/10a/zzgk/bszn/111.htm http://www.eveclub.com/cgi-bin/eveclub.front/972959538910/Catalog/1000084 http://www.eveclub.com/cgi-bin/eveclub.front/972959538910/Club/start/1000000 http://www.slis.ua.edu/cgi-bin/clickthrough.cgi/CT=http_3a_2f_2fwww_2edermis_2enet_2fbilddb_2fdiagnose_2fenglisch_2fi697015_2ehtm http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/rnumber/8467604 http://www-personal.engin.umich.edu/~vernage/teamweb/team.building/effective.meetings/effective.meetings.facilitation.htm http://www4.law.cornell.edu/uscode/42/ch87subchIV.head.html http://yp.gates96.com/7/27/90/10.html http://yp.gates96.com/7/27/90/11.html http://yp.gates96.com/7/27/90/30.html http://yp.gates96.com/7/27/91/72.html http://yp.gates96.com/7/27/91/76.html http://yp.gates96.com/7/27/91/85.html http://yp.gates96.com/7/27/91/92.html http://yp.gates96.com/7/27/92/61.html http://yp.gates96.com/7/27/92/72.html http://yp.gates96.com/7/27/93/10.html http://yp.gates96.com/7/27/93/17.html http://yp.gates96.com/7/27/93/30.html http://yp.gates96.com/7/27/93/65.html http://yp.gates96.com/7/27/93/76.html http://yp.gates96.com/7/27/93/99.html http://yp.gates96.com/7/27/94/37.html http://yp.gates96.com/7/27/94/85.html http://yp.gates96.com/7/27/95/5.html http://yp.gates96.com/7/27/95/14.html http://yp.gates96.com/7/27/95/55.html http://yp.gates96.com/7/27/95/57.html http://yp.gates96.com/7/27/96/21.html http://yp.gates96.com/7/27/96/49.html http://yp.gates96.com/7/27/96/50.html http://yp.gates96.com/7/27/96/55.html http://yp.gates96.com/7/27/96/92.html http://yp.gates96.com/7/27/97/24.html http://yp.gates96.com/7/27/97/73.html http://yp.gates96.com/7/27/97/98.html http://yp.gates96.com/7/27/98/26.html http://yp.gates96.com/7/27/98/62.html http://yp.gates96.com/7/27/99/15.html http://yp.gates96.com/7/27/99/52.html http://www.nrk.no/finnmark/x2_9_98/nyh11.htm http://www.excelsior.com.mx/9701/970105/nac18.html http://www.symantec.co.kr/sabu/igear/igear_educ/stories.html http://www.smcworld.com/smcworld/bp/pre/0204_1_1070.html http://www.cpami.gov.tw/ymsnp/animal/fauna/nospc708choice.htm http://pub9.ezboard.com/fdawsonscreek50374helpwanted http://pub9.ezboard.com/fdawsonscreek50374frm17 http://www.happychannel.it/turismo/europa/top_news/schede/scheda_991209110434.shtml http://www.happychannel.it/turismo/europa/top_news/schede/scheda_991111111106.shtml http://dirs.educationamerica.net/New_York/Localities/N/New_York_City/Manhattan/Business_and_Economy/ http://dirs.educationamerica.net/New_York/Localities/N/New_York_City/Manhattan/Government/ http://china-water.51.net/life/life_20.htm http://china-water.51.net/life/life_22.htm http://www.egroups.com/message/ramtalk/17801 http://www.usahardware.com/inet/webSession/shopper/US972959720-31113/store/dept-1 http://www.usahardware.com/inet/webSession/shopper/US972959720-31113/store/specials http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=97&discrim=2,68,201 http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/quizz/legendes/misc/music/lit/hasard.html http://findmail.com/group/ken2061 http://www.affiliate.hpstore.hp.co.uk/do/session/380852/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-photoworld.com/photoworld.asp?lang=f http://www.affiliate.hpstore.hp.co.uk/do/session/380852/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/traveljournal.asp http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-med.stanford.edu/school/banner.html http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www-med.stanford.edu/school/neurosurgery.html http://hotop.on.net.cn/diguo/club/disp.asp?owner=A201&ID=894 http://hotop.on.net.cn/diguo/club/disp.asp?owner=A201&ID=846 http://interbaun.tucows.com/winme/preview/577.html http://www.ferien-immobilien.de/ungarn/verkauf/Gemeinsam/Immolink/Exklusiv-IB/Startseite/3d-service/Private-IB/Startseite/Default.htm http://www.eos.dk/archive/swing/msg10936.html http://www.egroups.com/message/ICSIA-PublicForum/138 http://www.online.kokusai.co.jp/Service/V0043601/wrd/G200/service/service.html http://debian.tod.net/debian/dists/unstable/main/source/libs/?N=D http://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d79/b77,e,4d,51,51,819,819,,2,,51,2,4e,,4d,4e, http://www.redhat.com/mirrors/LDP/LDP/khg/HyperNews/get/fs/fs/9/?N=D http://ftp.oleane.net/pub/CTAN/systems/knuth/local/man1/?D=A http://www.jamba.de/KNet/_KNet-_UA8j1-xFd-13bat/browse.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-_UA8j1-xFd-13bbg/showInfo-jambabanner.de/node.0/cenv0b09a http://www.tente.de/us/produkte/artikel/af000000736.htm http://dwp.bigplanet.com/bloomingprairie/look/sitemap.nhtml http://www.kfh-mainz.de/Organisationen/Ketteler/pf/ws0001.html http://extreme-dm.com/tracking/reports/dj/nph-reloads.cgi?tag=agmusik http://www.chaos.dk/sexriddle/c/v/m/v/y/ http://ring.jec.ad.jp/pub/linux/debian/debian/dists/woody/non-free/binary-i386/electronics/?D=A http://tongbang-gh.ed.taejon.kr/1998대전시/math/olym/function/m103_003/html/m103_003h01.html http://www.company-product.com/23063/ http://members.tripod.lycos.co.kr/re22/CPUCOOL5195/uni2k15/?N=D http://209.52.189.2/print_message.cfm/stepparents/8279/173602 http://216.33.87.17/sports/baseball/sba/sba04r.htm http://www.mc99.co.jp/mvp/member/new/honda/16kr3fj2/search.cgi?_file=038 http://www.emerchandise.com/browse/EMERCH/COASTERS/s.cU6lmV05 http://www.emerchandise.com/browse/CHARMED/s.cU6lmV05 http://www.across.or.jp/nbbs/nbbs.cgi/talk:n18/replyto/462 http://www.vins-siffert-scea.fr/lycee-seijo/guide/staff/yoshida.htm http://www.egroups.com/messages/grebel-list/2305 http://polygraph.ircache.net:8181/services/design/http_-2www.abcjewelry.com/http_-2www.1045fm.com/http_-2www.4sitedesign.com/stp/nbm.html http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/astro/wmmoonclock/pkg/Attic/DESCR?only_with_tag=RELEASE_4_0_0 http://biblio.cesga.es:81/search*gag/tMariposas+negras.+1:08,50+min/tmariposas+negras++++1+++08+++50+min/-5,-1,0,B/frameset&F=tmariposa+y+la+hormiga&1,1 http://polygraph.ircache.net:8181/Cameras/order/rr962.htm http://polygraph.ircache.net:8181/Cameras/order/dfwmap.htm http://support.tandy.com/support_audio/doc45/45827.htm http://image.tulips.tsukuba.ac.jp:70/fif=picture/ECWP/001.fpx&init=-0.23170732,0.0,1.2317073,1.0&rect=0.5,0.25,0.6829269,0.375&wid=600&hei=600&lng=ja&enablePastMaxZoom=OFF&page=uv1-en.html&obj=uv,1.0&cmd=NW http://pub23.ezboard.com/fcaribbeanvoiceforumsfrm3.showAddTopicScreenFromWeb http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,1+0,0-19,0+9,4 http://vipnet.tucows.com/win2k/adnload/51108_28465.html http://vipnet.tucows.com/win2k/adnload/38782_28482.html http://www4.50megs.com/tstazer/edhtms/edbeats.htm http://www.unterhaltungs-cd.de/ObervellacherBuam/B000025KMT.htm http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=bocarderont&l=fr http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=10,3,211 http://variety.studiostore.com/help_security/b.TV%20HERCULES/s.cD15jQkr http://variety.studiostore.com/help_shipping/b.TV%20HERCULES/s.cD15jQkr http://variety.studiostore.com/product/TSHER0001/b.TV%20HERCULES/s.cD15jQkr http://variety.studiostore.com/aboutus/b.TV%20HERCULES/s.cD15jQkr http://www.redrocksports.com/sports/webSession/shopper/RR972959753-31163/store/dept-5/department/dept-5/item/51530 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=135&discrim=165,71,194 http://www.kagtech.com/SpitfrireKennels http://www.expage.com/page/thekatshow http://www.jobvillage.com/channel/jobs/cleaning/gardener/b.4255.g.3878.html http://www.xmwb.sh.cn/xmwb/20000704/BIG5/14016^6070408.htm http://www.xmwb.sh.cn/xmwb/20000704/BIG5/14016^7070414.htm http://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/woody-jp/contrib/binary-all/tex/?S=A http://genforum.genealogy.com/ny/monroe/messages/350.html http://genforum.genealogy.com/ny/monroe/messages/296.html http://genforum.genealogy.com/ny/monroe/messages/306.html http://genforum.genealogy.com/ny/monroe/messages/213.html http://otenet.themes.tucows.com/fonts/preview/18792.html http://otenet.themes.tucows.com/fonts/adnload/18828.html http://otenet.themes.tucows.com/fonts/adnload/18876.html http://otenet.themes.tucows.com/fonts/preview/18877.html http://otenet.themes.tucows.com/fonts/adnload/18894.html http://otenet.themes.tucows.com/fonts/adnload/18910.html http://otenet.themes.tucows.com/fonts/adnload/18941.html http://otenet.themes.tucows.com/fonts/adnload/18949.html http://otenet.themes.tucows.com/fonts/adnload/25945.html http://ww.egroups.com/message/schoolnet_sadc/96 http://ww.egroups.com/message/schoolnet_sadc/98 http://www6.pasta.cs.uit.no/ietf/ietf45/proceedings/I-D/webdav-dublin-core-01.txt http://www-uk9.cricket.org/link_to_database/INTERACTIVE/SURVEYS/POLLS_DEC1998.html http://www.ucp.org/ucp_generaldsc.cfm/151/8/35/ucp_disctpc/292/263 http://www.ucp.org/ucp_generaldsc.cfm/151/8/35/ucp_disctpc/79/79 http://se.egroups.com/message/DBA/1700 http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/138/2000/6/0/ http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/138/2000/7/0/ http://www.inf.fu-berlin.de/lehre/WS00/SWT/material/rosebeispiele/interaccess/logicalview/cat32862112022a/cat36e7162c0192/msg343269780227.htm http://www.private-immobilien-boerse.de/leipzig/verkauf/Gemeinsam/erreichenPartner/IIM-Teil/Startseite/Gemeinsam/versicherungen/gebaeude/Allgemeine-IB/Startseite/ http://www.private-immobilien-boerse.de/leipzig/verkauf/Gemeinsam/erreichenPartner/IIM-Teil/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/Immolink/link.htm http://freetravel.bedandbreakfast.com/Canada/Prince%20Edward%20Island/Little%20Sands.asp http://freetravel.bedandbreakfast.com/Canada/Prince%20Edward%20Island/Miscouche.asp http://freetravel.bedandbreakfast.com/Canada/Prince%20Edward%20Island/O'Leary.asp http://www.buybuddy.com/sleuth/15/1/1070306/519432/ http://l-infonet.phkk.fi/fi/TIETOPALVELUT/KIRJASTO-+JA+TIETOPALVELUT/ammattikorkeakoulukirjastot/ammattikorkeakoulut/lahti/p%E4ij%E4t-h%E4me/ http://www.3w-buecher.de/GravesRobert/GravesRobert0140171991.htm http://www.3w-buecher.de/GravesRobert/GravesRobert1559948345.htm http://www.3w-buecher.de/GravesRobert/GravesRobert1850897506.htm http://members.theglobe.com/heliox2/pokepages/ninepic.htm http://taiwan.vh.org//////Providers/Textbooks/MuscleInjuries/Fig2.html http://www.globalgarden.com/Tomato/Archives/vol.1/1147.html http://www.mojahedin.org/Pages/Mojahed/Mojahed442/articles/articlesftx03.html http://216.34.146.180/161000reu/16hlth6.htm http://moshkow.sstu.samara.ru/win/BESTER/Encoding_koi http://in.egroups.com/message/Girl-Scout-Swaps/9 http://in.egroups.com/message/Girl-Scout-Swaps/31 http://members.tripod.com/floydechoes/more.htm http://nanjingnews.jlonline.com/nanjingnews/njrb/20000222/08dushi.htm http://www.egroups.com/messages/archery/38?expand=1 http://retailer.gocollect.com/do/session/1912759/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/index.asp http://home.dqt.com.cn/~ying_jia/wangwen/new/111.htm http://canoe.com/MLB97FLASF/sep30_fla_sf.html http://pub2.ezboard.com/fespguitarsmessageboardltdguitarandbassreviews.subscribeUnregisteredToTopic?topicID=8.topic http://www.catholicstore.com/search/index.cfm/FuseAction/largeImage/SKU/2558/category/Bo/subCategory/AE/subject/17 http://www.allgemeine-immobilien-boerse.de/bayern/augsburg/Verkauf/Private-IB/Startseite/Gemeinsam/Inserieren/Private-IB/IIM-Teil/Startseite/froben.htm http://www.infoscape.com.cn:8171/nf/0004/18/nfga1801.htm http://www.infoscape.com.cn:8171/nf/0004/18/nfga1809.htm http://www.linux.com/networking/network/kernel/apache/applications/HTTP/ http://www.linux.com/networking/network/kernel/apache/applications/Linuxcare/ http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=exacerbate&l=en http://dopey.rediris.es/ftp/mirror/CPAN/modules/by-module/overload/GSAR/Archive-Tar-0.071.readme http://dopey.rediris.es/ftp/mirror/CPAN/modules/by-module/overload/GSAR/Tie-IxHash-1.21.readme http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,201,226 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,201,85 http://www.gsnet.com/bdltg/es/1_136243.html?num=2 http://www.pinoycentral.com/img/UBB.nsf/e39d540ca6a9104b4825694d006ed185/6668efca7b60518648256966000fd202?Navigate&To=Prev http://www.academyfloral.com/state/cabel/flowers/harmony.html http://trading.rakuten.co.jp/items001/4c/0d/10138895/bidlist.html http://www.cs.uwa.edu.au/programming/jdk1.2.2/api/javax/swing/event/class-use/TableColumnModelListener.html http://secure.danysoft.com/asp/dany.tienda/803039052/IconBar http://ftp-stud.fht-esslingen.de/pub/Mirrors/CPAN/modules/by-authors/id/L/LH/LHS/?S=A http://genforum.genealogy.com/ga/messages/6297.html http://genforum.genealogy.com/ga/messages/7843.html http://genforum.genealogy.com/ga/messages/7281.html http://www.jsinc.com/dd/destnat/sep00/fromcol10090800.asp http://www.secinfo.com/$/SEC/Filing.asp?T=nDA3.7c_9i4 http://www.secinfo.com/$/SEC/Filing.asp?T=nDA3.7c_b19 http://www.sd.digitalcity.com/maconga/penpals/browse.dci?cat=teens http://www.sd.digitalcity.com/maconga/penpals/browse.dci?cat=seniors&sort=f http://www.picktips.com/category-1031-1172_1170_1174-4_1_3 http://www-us6.semiconductors.com/acrobat/datasheets/CR6627_1.pdf http://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/p-r/pimp.txt http://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/p-r/radiated.txt http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceMallCategories-BBC709FC_97F7_9E91E7C8C7066684B664C77C8575B940 http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceOrderStatusOverview-BBC709FC_97F7_9E91E7C8C7066684B664C77C8575B940 http://ads.puntopartenza.com/cgi-bin/redirect.cgi/31033638 http://mediate.magicbutton.net/do/session/625642/vsid/4385/tid/4385/cid/88138/mid/1702/rid/2114/chid/3393/url/http://www.worldgallery.co.uk/frameset-top50.html http://link.fastpartner.com/do/session/600388/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/netmaling.php http://www.egroups.com/message/RecipeCollectors2/3785 http://plat.debian.or.jp/debian/dists/woody/contrib/binary-alpha/admin/?S=A http://198.103.152.100/search*frc/aFILIPPELLI,+R.L/afilippelli+r+l/-5,-1,0,B/frameset&F=afilion+louis+jacques&1,,0 http://de.excite.de/wetter/katalog/4206 http://www.burstnet.com/ads/ad8386a-map.cgi/973225252.925077 http://www.branchenfuehreronline.de/A/hauptteil_a.html http://www.linux.com/networking/support/red_hat/internet/test/simple/ http://www.shopworks.com/ccfarm/index.cfm/action/search/userid/00061450-2F40-19FE-9038010B0A0ADCF2 http://www.shopworks.com/index.cfm/userid/00061450-2F40-19FE-9038010B0A0ADCF2 http://pelit.saunalahti.fi/.1/tucows/preview/144491.html http://pelit.saunalahti.fi/.1/tucows/preview/52377.html http://www.teacherformation.org/html/od/facilitators.cfm/xid,7238/yid,4053212 http://tw.yahoo.com/Regional/Countries_and_Regions/China/Provinces__Regions_and_Municipalities/Tianjin/Business/Companies/Utilities/ http://brain.brent.gov.uk/WebPages.nsf/vWebAllPagesByKey!OpenView&Start=174&Count=60&Expand=194 http://brain.brent.gov.uk/WebPages.nsf/vWebAllPagesByKey!OpenView&Start=174&Count=60&Expand=227 http://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/unfall/Gemeinsam/erreichenPartner/Startseite/Gemeinsam/MarketingStrategie/Startseite/froben.htm http://www.bemi-immobilien.de/Landhaus-Bordeaux/Gemeinsam/versicherungen/unfall/Gemeinsam/erreichenPartner/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm http://www.3wposter.com/hake/hkg1701.htm http://www.citybrazil.com.br/go/mossamedes/utilpub.htm http://oss.software.ibm.com/developerworks/opensource/cvs/icu4j/icu4j/src/com/ibm/demo/translit/Attic/?sortby=date http://www.linux.com/networking/network/management/operating_system/enterprise/research/ http://www.angelfire.com/pq/Prophetess/Prophetess.page3.html http://www.3w-nostalgie.de/ZeigerMimi/ZeigerMimi007072833X.htm http://www.excelsior.com.mx/9801/980128/for01.html http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=11&discrim=49,235,5 http://retailer.gocollect.com/do/session/1912802/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/contact.asp http://citeseer.nj.nec.com/track/64292/4220924 http://citeseer.nj.nec.com/correct/318910 http://citeseer.nj.nec.com/correct/249393 http://www.chaos.dk/sexriddle/h/y/r/k/ http://www.hig.se/(aconf,date,doc,insert,return)/~jackson/roxen/ http://www.hig.se/(aconf,date,doc,gtext,insert)/~jackson/roxen/ http://mediate.magicbutton.net/do/session/625608/vsid/4573/tid/4573/cid/88043/mid/2247/rid/2383/chid/3527/url/http://www.winesmart.com/expert.asp http://magazines.sina.com/education/renbun/93/13.html http://www6.freeweb.ne.jp/art/cilter/kamijo02.htm http://yp.gates96.com/11/25/50/28.html http://yp.gates96.com/11/25/50/41.html http://yp.gates96.com/11/25/50/65.html http://yp.gates96.com/11/25/50/74.html http://yp.gates96.com/11/25/50/91.html http://yp.gates96.com/11/25/50/93.html http://yp.gates96.com/11/25/50/94.html http://yp.gates96.com/11/25/51/59.html http://yp.gates96.com/11/25/51/93.html http://yp.gates96.com/11/25/52/66.html http://yp.gates96.com/11/25/54/46.html http://yp.gates96.com/11/25/54/68.html http://yp.gates96.com/11/25/54/83.html http://yp.gates96.com/11/25/54/95.html http://yp.gates96.com/11/25/54/98.html http://yp.gates96.com/11/25/55/1.html http://yp.gates96.com/11/25/55/6.html http://yp.gates96.com/11/25/55/96.html http://yp.gates96.com/11/25/56/83.html http://yp.gates96.com/11/25/56/89.html http://yp.gates96.com/11/25/57/30.html http://yp.gates96.com/11/25/57/68.html http://yp.gates96.com/11/25/58/56.html http://yp.gates96.com/11/25/58/67.html http://yp.gates96.com/11/25/59/7.html http://yp.gates96.com/11/25/59/40.html http://yp.gates96.com/11/25/59/58.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/legendes/lit/misc/quizz/quizz2.html http://excite.de/kleinanzeigen/katalog/7100 http://www.egroups.org/messages/stepup/97 http://sunsite.org.uk/pub/packages/proftpd/misc/?S=A http://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/DOUGM/?M=A http://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/DOUGM/Apache-Scoreboard-0.10.readme http://ring.htcn.ne.jp/archives/lang/perl/CPAN/modules/by-module/CGI/DOUGM/B-Size-0.04.readme http://herndon1.sdrdc.com/cgi-bin/can_ind/S8NY00082/1/Y/ http://in.egroups.com/message/msu-foi/20?source=1 http://www.worldstocks.de/htm/boersen/asien/indonesien_boerse.htm http://members.xoom.com/pvmnieuws/movies/movies.html http://gb.toget.com.tw/article/screensaver/index_a_2.html http://www.emis.de/journals/EJDE/Volumes/Monographs/Volumes/2000/64/?N=D http://bsd.wj.o3.net/8/1/18/4.html http://www.ftp.uni-erlangen.de/pub/mirrors/_other/afterstep.foo.net/apps/asprint/?S=A http://citeseer.nj.nec.com/cidcontext/3597768 http://m4.findmail.com/dir/Sports/Soccer/Academic_Study_of_Soccer/History http://genforum.genealogy.com/cgi-bin/print.cgi?westerman::121.html http://www-koi.bards.ru/Egorov/part84.htm http://www-koi.bards.ru/Egorov/part29.htm http://www-koi.bards.ru/Egorov/part127.htm http://www-koi.bards.ru/Egorov/part68.htm http://www.loisirs.ch/emjius/10/brglll.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/quizz/music/computers/legendes/lit/hellequin.html http://www.redrival.com/dejanss/muzika/exploited/themassacre.html http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-08-31/13/967698323786.txt http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-08-31/13/967699453627.txt http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-08-31/13/967699813970.txt http://www.chaos.dk/sexriddle/c/v/w/l/o/ http://www.chaos.dk/sexriddle/c/v/w/l/x/ http://www.allgemeine-immobilien-boerse.de/Oesterreich/verkauf/IIM-Teil/Startseite/Allgemeine-IB/Gemeinsam/3d-service/info.htm http://www.marktplatz-hs.de/cgi-bin/ChioEditionShop.s/39fe2eeb0239a4a4273fd47540f806ea/IconBar http://www.jamba.nl/KNet/_KNet-sDD8j1-GC4-puzu/browse.nl/node.0/cde7f1uou http://www.icopyright.com/1.1635.66362 http://www.ld.com/cbd/archive/1999/05(May)/07-May-1999/Vsol004.htm http://www.infoscape.com.cn:8171/nf/0007/05/nfgz0517.htm http://209.207.239.212/bkindex/c1034/f1392.html http://www.gbnf.com/genealogy/rockwel4/html/d0007/I1584.HTM http://www.gbnf.com/genealogy/rockwel4/html/d0023/I3700.HTM http://www.hornchurch.londonengland.co.uk/designersgraphic.htm http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/computers/lit/misc/colorart/lit/quizz/ http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/computers/lit/misc/colorart/lit/misc/orders_mag.html http://www.multimap.com/wi/141313.htm http://www.multimap.com/wi/141326.htm http://www.thestateofcolorado.com/aconplumbing.html http://www.thestateofcolorado.com/aconstairs.html http://ftp.netc.pt/pub/idgames/levels/doom2/0-9/10level.txt http://members.tripod.com.br/Magoo13/musicas.htm http://tucows.bigskysoft.com/winme/adnload/137256_30133.html http://www.houses-apartment-rentals.com/Texas/city_search_criteria.asp?state=TX&City=CHICOTA http://se.egroups.com/message/trabalhoseguro/186 http://www.daysinn.com/ctg/cgi-bin/DaysInn/financial_support/AAAksrACwAAABvyAAQ http://www.long-life.de/lt040.htm http://smartnet.tucows.com/winme/meditme_rating.html http://smartnet.tucows.com/winme/meditme_size.html http://www.kmoviefc-jp.com/db/prod/pd/k1000003.htm http://ftp.rge.com/pub/usenet/readers/mac/Mews/?S=A http://fi.egroups.com/messages/lasermail/298 http://fi.egroups.com/message/lasermail/295 http://www.voter.com/home/message/post/1,1559,24-60_2976_2473-,00.html http://se.egroups.com/message/rv8list/1122 http://www.ferien-immobilien.de/Rhein-Sieg-kreis/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/3d-service/Gemeinsam/Inserieren/Private-IB/Startseite/Default.htm http://library.bangor.ac.uk/search/aUnited+Kingdom+Reading+Association/aunited+kingdom+reading+association/-17,-1,0,B/exact&F=aunited+kingdom+environmental+law+association&1,2/limit http://webcenter.travelocity-leisure.netscape.com/DestGuides/0,1840,TRAVELOCITY|1987|5|2,00.html http://yokohama.cool.ne.jp/michirur/dragon/maria/m2.htm http://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/graphics/Ngraph/patches/?D=A http://mitglied.tripod.de/argewesterwald/jr/jrfo3.htm http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=3,16,10 http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=28,16,10 http://avdistrict.edgate.com/hhs/pa_rc_gre.html http://pub26.ezboard.com/fdysfuctionalrealityfrm2.showAddReplyScreenFromWeb?topicID=32.topic&index=1 http://www.geocities.co.jp/Playtown-Domino/5245/guti.html http://www.haikou.hi.cn/Pandect/hknj98/nj98d1.html http://retailer.gocollect.com/do/session/1912800/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/site_tour/index.asp http://ftp.unina.it/pub/Pcibm/pcdemos/ftp.hornet.org/graphics/images/1998/b/?M=A http://variety.studiostore.com/browse/ABUGSLIFE/FIGURINE/s.qjEoNLlG http://yp.gates96.com/11/76/10/13.html http://yp.gates96.com/11/76/10/18.html http://yp.gates96.com/11/76/11/63.html http://yp.gates96.com/11/76/14/45.html http://yp.gates96.com/11/76/14/65.html http://yp.gates96.com/11/76/14/77.html http://yp.gates96.com/11/76/15/1.html http://yp.gates96.com/11/76/15/68.html http://yp.gates96.com/11/76/15/97.html http://yp.gates96.com/11/76/16/2.html http://yp.gates96.com/11/76/16/59.html http://yp.gates96.com/11/76/16/64.html http://yp.gates96.com/11/76/16/79.html http://yp.gates96.com/11/76/17/10.html http://yp.gates96.com/11/76/17/52.html http://yp.gates96.com/11/76/19/9.html http://yp.gates96.com/11/76/19/11.html http://yp.gates96.com/11/76/19/17.html http://yp.gates96.com/11/76/19/19.html http://www.debian.org.cn/Bugs/db/67/67207-b.html http://www.bemi-immobilien.de/Exklusiv-IB/Startseite/Gemeinsam/immolink/Gemeinsam/Inserieren/Startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/3d-service/info.htm http://www.private-immobilien-boerse.de/baden-wuertemberg/calw/Verkauf/Gemeinsam/versicherungen/gebaeude/Gemeinsam/erreichenPartner/Private-IB/IIM-Teil/Startseite/frinfo.htm http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=21,0-(14,0)+9,5 http://www.thesite.msnbc.com/tlkbck/comment/2100652/0,7436,80913-291181,00.html http://202.109.72.57:8077/article/19991130/1741.htm http://www.mit.edu/afs/athena.mit.edu/astaff/project/eolcdev/arch/sgi_62/ http://www.metromix.com/top/1,1419,M-Metromix-Home-reviews!PlaceDetail-13623,00.html http://ring.jec.ad.jp/pub/linux/debian/debian/dists/woody/non-free/binary-powerpc/news/?M=A http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceStoreCategories-BBC70A07_97FC_42E663949129E2030ACC2E97E71CD8B3 http://grwy.online.ha.cn/paoe/about/aoe2.htm http://www.2pl.com/b/ar/to/1/01/01/v1/1010178470-3.htm http://www.digitaldrucke.de/(aktuell,marktplatz,nuernberg,sense,werbung)/suche/uebersicht.html http://ustlib.ust.hk/search*chi/aswiss+radio+symphony+orchestra/aswiss+radio+symphony+orchestra/-5,-1,0,B/frameset&F=aswiss+society+for+soil+and+rock+mechanics&1,1 http://www.ecatsbridge.com/BiB/static/sims/bbljuly99/00000101843221172F1.htm http://www.videogames.com/psx/sports/freestyle99/screen.html?page=19 http://www.mojahedin.org/Pages/Mojahed/Mojahed474/sci/sci02.html http://www.shopworks.com/bigmountain/index.cfm/action/cart/userid/000E50D6-1185-19FE-A703010D0A0A8CF2 http://polygraph.ircache.net:8181/http_-2www.horizonfinance.com/~xionthia/as/ http://yp.gates96.com/14/76/30/16.html http://yp.gates96.com/14/76/30/81.html http://yp.gates96.com/14/76/31/12.html http://yp.gates96.com/14/76/31/37.html http://yp.gates96.com/14/76/31/68.html http://yp.gates96.com/14/76/32/11.html http://yp.gates96.com/14/76/32/50.html http://yp.gates96.com/14/76/32/68.html http://yp.gates96.com/14/76/33/26.html http://yp.gates96.com/14/76/33/53.html http://yp.gates96.com/14/76/35/11.html http://yp.gates96.com/14/76/35/26.html http://yp.gates96.com/14/76/35/47.html http://yp.gates96.com/14/76/35/74.html http://yp.gates96.com/14/76/36/16.html http://yp.gates96.com/14/76/37/23.html http://yp.gates96.com/14/76/37/56.html http://yp.gates96.com/14/76/37/82.html http://yp.gates96.com/14/76/38/76.html http://yp.gates96.com/14/76/39/20.html http://yp.gates96.com/14/76/39/25.html http://yp.gates96.com/14/76/39/28.html http://yp.gates96.com/14/76/39/33.html http://yp.gates96.com/14/76/39/61.html http://yp.gates96.com/14/76/39/69.html http://yp.gates96.com/14/76/39/91.html http://www-usa8.cricket.org/link_to_database/ARCHIVE/ARTICLES/JAN-JUN_1996/PRESS_REACTIONS_AUS_18MAR1996 http://www-usa8.cricket.org/link_to_database/ARCHIVE/ARTICLES/JAN-JUN_1996/LOSS_WI_CRICKET_11MAR1996.html http://www-usa8.cricket.org/link_to_database/ARCHIVE/ARTICLES/JAN-JUN_1996/SPINNERS_TALES_11JAN1996 http://hurweb01.hurriyetim.com.tr/hur/turk/98/11/19/gundem/31gun.htm http://library.cuhk.edu.hk/search*chi/aKuan,+Jui-hsuan./akuan+jui+hsuan/-5,-1,0,E/exact&F=akuan+jui+hsuan&1,22 http://library.cuhk.edu.hk/search*chi/aKuan,+Jui-hsuan./akuan+jui+hsuan/-5,-1,0,E/frameset&F=akuan+jung&1,,0 http://ring.toyama-ix.net/archives/pc/winsock-l/Windows95/Finger/fing32l.txt http://cometweb01.comet.co.uk/do!tid=20&rtid=1&vsid=700&session=132044&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplGGolLarZLq4fLpmiLXv-KmooLckYLoznGmpq0qsc0mojLbkYLozvGotc0ZdoLckYLozvGsmv0qmc0jXfLkVZLdocLkYoLzcj1XfkLVZXLqkXLjbzKcob5qroLkVrLoizKlZd5fjYHfklKkZlLjjbLoZbLpl51ubZLDXZLollK3ljLbqlKjXfLkkaHotl4obmLloqL http://student.monterey.edu/nr/riveradebranepom/campus/ http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/listUnseen/fol/100001/20,0/5170254 http://www.ibiblio.org/pub/Linux/distributions/debian/contrib/binary-all/otherosfs/?D=D http://www.ilmessaggero.it/hermes/19980909/01_NAZIONALE/SPETTACOLI/E.htm http://ayasii.virtualspace.net/html/1207/12071611_himemiya02.htm http://retailer.gocollect.com/do/session/1912732/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/about.asp http://retailer.gocollect.com/do/session/1912732/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/newintros.asp http://retailer.gocollect.com/do/session/1912732/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/dealer_lookup.asp http://se.egroups.com/subscribe/pretty_of_five http://home.neo.rr.com/keeter/pics.html http://www.peopledaily.co.jp/haiwai/199910/12/newfiles/E108.html http://www.telematik.informatik.uni-karlsruhe.de/osf/sw/v4.0x/lp2/snt100/?M=A http://www.alyon.org/perso/1001-sciences/sciences_citoyens/agronomie/agronomie/intervenants.htm http://www.2pl.com/b/no/fi/3/02/24/b1/3022400016-11131.htm http://channel.nytimes.com/indexes/2000/07/21/sports/hockey/ http://space.tin.it/io/fivird/REM/eng/albums/lyrics/documentfr.html http://www.kurit.com/girls/galleryf.cgi?mp_code=7332&service=girls http://store.efunctional.com/nokia.html http://dk.egroups.com/login.cgi?login_target=%2Fmessage%2Fbonsai-cz%2F274 http://bbs.kcm.co.kr/NetBBS/Bbs.dll/boliviabbs/opn/zka/B2-kB2Fq/qqo/007D/qqatt/^ http://www.loisirs.ch/cvljnq/10/yrespd.html http://www.primenet.com/~trakker/events/abcforum.htm http://www.primenet.com/~trakker/events/frame_abcforum.htm http://www.fogdog.com/cedroID/ssd3040183253760/nav/products/featured_brands/12r/gift_packs/ http://www.fogdog.com/cedroID/ssd3040183253760/nav/products/featured_brands/12r/windshirts/ http://www.oreilly.com/homepages/dtdparse/docbook/3.0/dtdent/simmod02.htm http://dk.egroups.com/group/SCMHCSC http://www.ycwb.com.cn/gb/2000/01/11/ycwb/dsxw/9.html http://dk.egroups.com/message/teenhealth/1620 http://nbzhuhq1.top263.net/htm/y/y14-5.htm http://adserver.latimes.com/editions/orange/20001030/t000103739.html http://adserver.latimes.com/editions/orange/20001030/t000103751.html http://library.bangor.ac.uk/search/cWS+200+G4655+1999/cws++200+g4655+1999/-17,-1,0,B/frameset&F=cws++141+j74+h+1989&2,,2 http://ftpsearch.belnet.be/pub/os/linux/SuSE-Linux/i386/6.4/disks/rescue http://www.rarf.riken.go.jp/archives/tex-archive/macros/latex//contrib/supported/elsevier/model-harv.pdf http://www.diogenes.ch/4DACTION/web_glob_showhtml/path=leser/verlag/index.html&ID=483373 http://crn.com/Components/emailArticle.asp?ArticleID=2114 http://link.fastpartner.com/do/session/600410/vsid/1970/tid/1970/cid/135878/mid/1060/rid/1488/chid/1970/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/speednames.php http://link.fastpartner.com/do/session/600410/vsid/1970/tid/1970/cid/135878/mid/1060/rid/1488/chid/1970/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php http://ftp.gigabell.net/pub/FreeBSD/FreeBSD-stable/packages/emulators/ http://ftp.gigabell.net/pub/FreeBSD/FreeBSD-stable/packages/print/ http://emplois.fr.net/archive062000/2348.html http://variety.studiostore.com/browse/ANASTASIA/_/b.FAVORITES%20COMICS%20ANIMFEAT/s.eKoxAPfo http://www.geocities.co.jp/HeartLand-Gaien/3163/choko.htm http://members.tripod.com/~moviemaniac1/moviesR/Rocketman.html http://wiem.onet.pl/wiem/0006ac-sp1.html http://msdn.microsoft.com/library/devprods/vs6/visualj/vjref/java.net.UnknownHostException001.html http://www.tiscover.ch/1Root/Kontinent/6/Staat/30/Bundesland/31/Ort/1732/Homepage/m_homepage...2.html http://power.luneng.com/power/library/jzjs/jzjs99/jzjs9903/990311.htm http://citeseer.nj.nec.com/cidcontext/1976718 http://in.egroups.com/messages/srcg/2 http://sunsite.informatik.rwth-aachen.de/cgi-bin/ftp/ftpshow/pub/comp/Linux/debian/dists/potato/main/disks-sparc http://pd.shiseido.co.jp/s9701unt/html/unt00025.htm http://www.kame.tadaima.com/9721036/taro1.html http://www.kame.tadaima.com/9721036/taro8.html http://www.unc.edu/courses/chem41/classnotes/41s6/sld008.htm http://a1sexpics.com/butts/buttfucking/ http://moundoflove.com/buttfucking/butts/asslickinganal.html http://www.digitaldrucke.de/(arbeitsvermittlung,hilfe,nuernberg)/_fort/html/themen/hilfe/hilfe.htm http://freethemes.netc.pt/preview/15221.html http://freethemes.netc.pt/preview/51972.html http://freethemes.netc.pt/preview/74442.html http://cn.tech.yahoo.com/000913/23/1dpl.html http://cn.tech.yahoo.com/000913/23/1dp2.html http://wap.jamba.de/KNet/_KNet-JgK8j1-FGd-13di8/browse.de/node.0/cde7f1uou http://imageserver2.tibetart.com:8087/fif=fpxbuddhist/43.fpx&init=0.0,0.0,1.0,1.0&rect=-0.25,0.25,0.25,0.75&wid=280&hei=400&lng=en_US&enablePastMaxZoom=OFF&page=image.html&obj=uv,1.0&cmd=S http://www.ozemail.com.au/~pballard/gnt_hidden123/mar12.htm http://www.ozemail.com.au/~pballard/gnt_hidden123/act9.htm http://www.ozemail.com.au/~pballard/gnt_hidden123/rom7.htm http://www.ozemail.com.au/~pballard/gnt_hidden123/2co13.htm http://www.ozemail.com.au/~pballard/gnt_hidden123/heb12.htm http://www.ozemail.com.au/~pballard/gnt_hidden123/jam4.htm http://ftp.darenet.dk/tucows/winnt/adnload/1449_29554.html http://www.chaos.dk/sexriddle/w/j/u/o/ http://www.chaos.dk/sexriddle/w/j/u/v/ http://opac.lib.rpi.edu/search/tmcgraw+hill+series+in+advanced+chemistry/-5,-1,0,B/frameset&tmcgraw+hill+series+in+advanced+chemistry&9,,42 http://www.zcu.cz/ftp/mirrors/pgp/6.5/6.5.1/win/ http://webpolitik.subportal.com/sn/Multimedia_and_Graphics/Misc__Graphics_Tools/12852.html http://ftp.lip6.fr/pub2/perl/CPAN/doc/manual/html/lib/SysV/SysV.html http://bbs.gznet.edu.cn/cgi-bin/getannounce//groups/GROUP_9/Telecom/friend/fbf/ewqtr http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-10.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-88.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-92.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-177.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-178.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-229.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-288.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9709/date/article-293.html http://www.usq.edu.au/unit-1997/fullspec/54081s2x.htm http://sound-dist.secured.co.uk/cgi-bin/psProdDet.cgi/15P04|972959617|Helmet|user|0|1,0,0,0 http://www.buybuddy.com.au/sleuth/8/1/5010204/40843/ http://www.maxpages.com/vote.cgi?site=pokemonyellow1&pg=Home http://rex.skyline.net/html/Automobiles_-_Dealers_-_Used.html?64,outdoor,transportation,collectibles,transportation http://www.linux.com/networking/network/communications/management/updates/Windows_NT/ http://retailer.gocollect.com/do/session/1912735/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/top_ten.asp?pagenum=1 http://amarilloglobenews.com/stories/031000/ http://www.egroups.com/post/swish?act=reply&messageNum=275 http://www.apcmag.com/apcweb/reviewsdisc.nsf/aac7d56ca8fd884b852563be00610639/af5bb64432e7f9444a2565240026bbbf!Navigate&To=PrevMain http://best.netease.com/guestbook/personal/zhuirinew3.html http://best.netease.com/cgi-bin/view/viewbasic.cgi?japanboy4 http://www.ftp.uni-erlangen.de/cgi-bin/view/pub/mirrors/redhat/current/i386/doc/gsg/ch-basics.htm http://www.ftp.uni-erlangen.de/cgi-bin/view/pub/mirrors/redhat/current/i386/doc/gsg/p5202.htm http://splitrock.themes.tucows.com/preview/77000.html http://splitrock.themes.tucows.com/preview/25855.html http://splitrock.themes.tucows.com/preview/134493.html http://splitrock.themes.tucows.com/preview/14722.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=13,0-22,0+15,0-0,2 http://www.icopyright.com/1.1634.64625 http://mvweb.de/olympia/nachrichten/sportarten/ergebnisse/bdt-190900-438-dpa_153140.html http://www.rge.com/pub/tex/fonts/armtex/v2.0/examples/plain/ http://www.club-internet.fr/cgi-bin/h?Antibes http://www.caprili.it/santantimo.htm http://dic.empas.com/show.tsp/?q=%C3%EB%C8%EF%20%F6%AD%FD%E9&f=B http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=98&discrim=2,38 http://www.artex.firenze.it/_qualitart/articoli/zoom/02235.htm http://home.powertech.no/huftis/w3c/TR/WAI-WEBCONTENT-NO-NYN/checkpoint-list.txt http://mtlab.biol.tsukuba.ac.jp/WWW/PDB2/PCD0467/htmls/07.html http://library.cuhk.edu.hk/search*chi/aShu,+Tien-min./ashu+tien+min/-5,-1,0,B/exact&F=ashu+tsung+chiao&1,6 http://www.trnonline.com/archives/2000archives/05242000/how_now_joe_brown/23506.shtml http://www.bemi-immobilien.de/Exklusiv-IB/Startseite/Gemeinsam/versicherungen/gebaeude/Gemeinsam/MarketingStrategie/Gemeinsam/erreichenPartner/Gemeinsam/versicherungen/lebensversicherung/Startseite/frinfo.htm http://santabarbarashops.com/Mall/Stores/StoreInfo/asp/store-id/1000007121.html http://www.angelfire.com/ok/americassweetheart/UNique.html http://ukinvest.ukwire.com/articles/199909070731000375A.html http://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP374033.html http://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP363722.html http://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP288187.html http://www.streetprices.com/Electronics/Consumer/Camcorders/Digital/sortproductbylowprice/SP288192.html http://www.bemi-immobilien.de/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/Gemeinsam/versicherungen/gebaeude/Startseite/Gemeinsam/Gemeinsam/immolink/Top-Darlehens-Konditionen/anforderungsformular.htm http://celes.subportal.com/sn/Business/Standard_Calculators/index1.html http://www.linux.com/networking/network/networking/it/future/firewall/ http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=198&discrim=87,19,3 http://www.hig.se/(append,define,language,quote,tablify)/~jackson/roxen/ http://www.guba.com/114/236/12fE/index-3.phtml http://genforum.genealogy.com/tn/messages/7906.html http://207.138.41.133/message/BienestarCalifornia/16 http://207.138.41.133/message/BienestarCalifornia/26 http://chasnaz.freeyellow.com/email.html http://genforum.genealogy.com/cgi-bin/print.cgi?mcevoy::217.html http://www.civila.com/brasil/fov/ http://www.emerchandise.com/associates/b.FAVORITES%20PAGEANTS/s.oAq5vp1w http://www.emerchandise.com/help_security/b.FAVORITES%20PAGEANTS/s.oAq5vp1w http://www.z-plus.de/freizeit/kino/galerie/roula/kritikwelt.html http://www.angelfire.com/mo2/MrMime2000/wewon.html http://www.gazeta.com/Iso/Regiony/Lodz/Raporty/Jedzenie/Jedz/020jed.html http://www.sportas.de/ddsup00.htm http://muc-zvs-web1.goethe.de/an/mel/wabhorst/dtourism.htm http://www.cardina.net/~erps http://www.polbox.com/p/paruwa/spec.html http://ww2.comune.fe.it/cgi-win/hiweb.exe/a2/d72/b31,e,1f,b,b,50,50,,3,,1f,3,9,,1f,9, http://www.ld.com/cbd/archive/1999/03(March)/29-Mar-1999/15awd002.htm http://dk.egroups.com/post/cbradio?act=reply&messageNum=823 http://aecjobbank.com/texis/script/newjobs/+lww7mwww0xBV6e52iHwwwesPBB2eZmwwwt6erV0Vwwwh6er6Gswwwt6er6bgwwwt6etDL-www+6ethrCwwxeRT43eR4mwwwt6etrvuwwwn6KeU-wwwmcmrmwxerjmx7mwww1hzmww-eHxww/jobdirectory.html http://www.envy.nu/summerslip/past.html http://www.envy.nu/summerslip/leave.html http://home.pacific.net.sg/~kinnkinn/ http://www.bluesapphires.net/ladies/lv0444.shtml http://www.freerepublic.com/forum/a4148bd.htm http://www.sdinfonet.com.cn/024/32/024329969.htm http://www.sdinfonet.com.cn/024/32/024329953.htm http://www.jpc-music.com/8754347.htm http://www.jpc-music.com/5183511.htm http://www.jamba.nl/KNet/_KNet-ytO8j1-7D4-pwef/browse.nl/node.0/cde7f38ny http://dk.egroups.com/message/noholdsbarred/210 http://uoi.tucows.com/winme/preview/75912.html http://207.197.132.133/lobbyists/98profiles/556.htm http://www.jobvillage.com/channel/jobs/protective_services/private_investigator/g.4.html http://www.jobvillage.com/channel/jobs/protective_services/private_investigator/b.8946.g.4179.html http://aleph.tau.ac.il:4500/ALEPH/eng/ATA/AAS/AAS/SET-MAIL/381462/11/ http://www-rn.informatik.uni-bremen.de/home/X11R6/xc/lib/font/Speedo/?D=A http://www.brio.de/BRIO.catalog/39fe2f7006f69fb6273fd472aa78073d/UserTemplate/6 http://cardiology.medscape.com/IMNG/ClinPsychNews/1998/v26.n07/cpn2607.34.01.html http://www.incestpornstories.com/hot-hardcore-fuckingbanging/plus-sizewhale/slutspretty/slutsbest-friends/erectionfellatio/bisexualtinkerbell.html http://yp.gates96.com/7/65/10/40.html http://yp.gates96.com/7/65/11/15.html http://yp.gates96.com/7/65/11/34.html http://yp.gates96.com/7/65/11/69.html http://yp.gates96.com/7/65/11/88.html http://yp.gates96.com/7/65/12/95.html http://yp.gates96.com/7/65/13/82.html http://yp.gates96.com/7/65/13/91.html http://yp.gates96.com/7/65/13/93.html http://yp.gates96.com/7/65/14/2.html http://yp.gates96.com/7/65/14/8.html http://yp.gates96.com/7/65/15/31.html http://yp.gates96.com/7/65/15/38.html http://yp.gates96.com/7/65/15/51.html http://yp.gates96.com/7/65/15/95.html http://yp.gates96.com/7/65/15/96.html http://yp.gates96.com/7/65/16/4.html http://yp.gates96.com/7/65/16/20.html http://yp.gates96.com/7/65/16/58.html http://yp.gates96.com/7/65/17/22.html http://yp.gates96.com/7/65/17/66.html http://yp.gates96.com/7/65/18/37.html http://yp.gates96.com/7/65/18/69.html http://yp.gates96.com/7/65/18/97.html http://yp.gates96.com/7/65/19/0.html http://yp.gates96.com/7/65/19/12.html http://yp.gates96.com/7/65/19/16.html http://yp.gates96.com/7/65/19/28.html http://yp.gates96.com/7/65/19/37.html http://yp.gates96.com/7/65/19/44.html http://dyade.inrialpes.fr/aaa/public/java/jdk1.3/docs/api/javax/swing/plaf/basic/class-use/BasicSplitPaneUI.KeyboardUpLeftHandler.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/asiasanahaku/kalatalous/ty%F6voimapolitiikka/pienet+ja+keskisuuret+yritykset/maatilatalous/ http://www.ferien-immobilien.de/ungarn/verkauf/Gemeinsam/MarketingStrategie/Allgemeine-IB/Private-IB/Private-IB/Startseite/Default.htm http://ftp.du.se/disk2/CPAN/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/libwww-perl-5.43.readme http://ftp.du.se/disk2/CPAN/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/libwww-perl-5.46.readme http://ftp.du.se/disk2/CPAN/modules/by-category/15_World_Wide_Web_HTML_HTTP_CGI/WWW/webchat-0.05.readme http://209.0.220.240/biz/541519/541-389-1493.htm http://www.shsu.edu/wcb/schools/SHSU/sed/rmzoubi/12/forums/forum54/wwwboard.html http://retailer.gocollect.com/do/session/1912768/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/news/index.asp http://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9610/Date/article-33.html http://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9610/Date/article-31.html http://www.acfas.ca/congres/congres67/S408.htm http://pub1.ezboard.com/fthehawkeyehotspotfrm16.showMessage?topicID=178.topic http://archives.marshall.edu/~mccomas/cd315-spring00-list/1549.html http://www.asiastockwatch.com/AsiaStockWatch_-_Cached/Articles/asw_recommend_friend_con/1,1145,617_1_1:3,00.html http://wiem.onet.pl/wiem/014a7e.html http://linux99.inrialpes.fr/linux/RPM/kondara/1.2/errata/bugfixes/i586/System_Environment_Daemons.html http://linux99.inrialpes.fr/linux/RPM/kondara/1.2/errata/bugfixes/i586/User_Interface_X.html http://cn.egroups.com/login.cgi?login_target=%2Fmessage%2FWeb_Holidays%2F35 http://library.bangor.ac.uk/search/aEuropean+Academy+of+Allergology+and+Clinical+Immunology/aeuropean+academy+of+allergology+and+clinical+immunology/7,-1,0,B/bibandlinks&F=aeuropean+association+for+animal+production+commission+on+animal+management&1,1 http://www4.freeweb.ne.jp/art/fujiso/gehp/pge222.html http://pnews.jcc.co.jp/scoop/9905/990506kk2-3ss.html http://ring.nii.ac.jp/archives/linux/Vine/Vine-1.1/kernel-2.2.x-kit/RPMS/ http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=81&discrim=8,230,214 http://www.emerchandise.com/browse/BUFFYTHEVAMP/KEYCHAIN/b.TV%20BUFFYTHEVAMP/s.DfgPpLQw http://www.emerchandise.com/browse/BUFFYTHEVAMP/MAGNET/s.DfgPpLQw http://www.koms.de/I-Data/Upgrades/HostCom/Cx/isp/?S=A http://www.back2roots.org/Aminet/Forums/Util--Wb--Amero36/ http://www.hig.se/(autoformat,define,en,modified,referrer)/~jackson/roxen/ http://216.35.79.131/sites/gunits/052302u.html http://216.35.79.131/sites/gunits/052303u.html http://216.35.79.131/sites/gunits/032883u.html http://itcareers.careercast.com/texis/it/itjs/+4wwBmecXD86ExwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewShwAwMwoacnwmamnpcdOMnDBaMwoDBnDwDqnanDtoDnnGaDnBidGAaoDqc1mna5BGdDtaADdicnmtnaGn31oGnmaMFqtwAwMwoDzmeZxwwwpBmIe0B-decrwww5rmeAdwwwBrmeZpwww/morelike.html http://troy.lib.sfu.ca/search/tadvocate+vanc/tadvocate+vanc/7,-1,0,B/browse http://210.159.30.200:8080/-_-http://www2s.biglobe.ne.jp/~proton/kokuritu/ http://210.159.30.200:8080/-_-http://www2s.biglobe.ne.jp/~proton/mituzawa/mitusta.html http://config.tucows.com/win2k/monitor2k_size.html http://config.tucows.com/win2k/adnload/136674_47327.html http://www.thisisyork.com/york/news/YORK_NEWS_CAMPAIGNS_POSTOFFICE5.html http://yp.gates96.com/5/78/0/35.html http://yp.gates96.com/5/78/0/41.html http://yp.gates96.com/5/78/0/65.html http://yp.gates96.com/5/78/0/79.html http://yp.gates96.com/5/78/0/81.html http://yp.gates96.com/5/78/1/33.html http://yp.gates96.com/5/78/1/76.html http://yp.gates96.com/5/78/2/0.html http://yp.gates96.com/5/78/2/65.html http://yp.gates96.com/5/78/3/37.html http://yp.gates96.com/5/78/4/31.html http://yp.gates96.com/5/78/4/60.html http://yp.gates96.com/5/78/4/73.html http://yp.gates96.com/5/78/5/28.html http://yp.gates96.com/5/78/5/65.html http://yp.gates96.com/5/78/6/12.html http://yp.gates96.com/5/78/6/38.html http://yp.gates96.com/5/78/6/99.html http://yp.gates96.com/5/78/7/48.html http://yp.gates96.com/5/78/8/49.html http://yp.gates96.com/5/78/8/55.html http://yp.gates96.com/5/78/8/71.html http://yp.gates96.com/5/78/9/19.html http://yp.gates96.com/5/78/9/94.html http://link.fastpartner.com/do/session/600420/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/fastpartner.php http://www.highwired.net/Guidance/UniversalNav/Redirect/0,5314,15089-15089-728,00.html http://ring.tains.tohoku.ac.jp/archives/lang/perl/CPAN/modules/by-module/Math/ILYAZ/os2/?S=A http://www.outpersonals.com/cgi-bin/w3com/pws/out/DzRIZER-v0LffJEf3raIMcG3_vXLUQncNB0JHLK7Xt_XcNu5W9Xwg3bnK7e0BWrbchX2jMSNnK6eY6UuDPq6GFLMrzB0DcydY5VgMGVRUFbdksWiDCuTI0LBo3psuJxBJjEd http://www.outpersonals.com/cgi-bin/w3com/pws/out/vihIvBk0g-CdjheZ4MILAcJAB--YtsE3nzjAldQSrSojV9JzVQJV-1yVbCi9rsPamZBGc9GfXE6dq1sCz-CnrfwDCHqr_nfUtl2qUN5oWAHphPSuuQXCc2fjfBv3EI-W4XBgp-ANhxEJS0536665 http://www.outpersonals.com/cgi-bin/w3com/pws/out/VihIDgZ6TF6W8zfPesIFMiw-CNzcKPLyYr5OXnsaqepOa1j4Wz2V-pVOhRfX5lUkxRpYs_BkTdpvjf7zUAk3RdhEaXDfmzm4RA2CLjQ84zSbEZ_Vil1cFFmY0FFZr5oIErljk11AnTlYM6y066jO http://www.outpersonals.com/cgi-bin/w3com/pws/out/dRhIQJ3pEIfD5uG_JFeaP3_7Bke37Z5pJi0A-hZ_-kxEK4Z1jl3HNb6d3hgJ7UZ34jMQGSNzhYuMNxB-oyBon62h9GWx3Xt1Zk_o4kS3s9ybikCpzetMwprVGDCC-YzllwvEWxmP66jF http://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/24161000003783000000741030000081551/v2tvindex.wo/810000000071551/1.0.4/3/Webobjects1 http://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d3345/b77,c,4d,469,469,46e,46e,168e,168e,,51,,4d,51, http://findmail.com/messages/themcse/102 http://netcon.tucows.com/winme/adnload/136907_28427.html http://netcon.tucows.com/winme/adnload/136906_30076.html http://www.jyu.fi/~heili/tietoverkot/?S=A http://www1.onelist.com/dir/1/16/483/32773?st=10 http://www1.onelist.com/messages/animadores http://seussville.com/teachers/authors/ayre.html http://seussville.com/teachers/authors/corm.html http://www.tente.de/sw/produkte/rubriksuche/aa000001461.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=57&discrim=165,57,164 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=57&discrim=165,57,207 http://jars.developer.com//classes/jresout.cgi?resource=2897 http://members.tripod.co.jp/spirits/?S=A http://homepages.go.com/homepages/i/u/g/iuguy22/ http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=21,5,24 http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=31,5,24 http://troy.lib.sfu.ca/search/delectrolytes+periodicals/delectrolytes+periodicals/-5,-1,0,B/exact&F=delectrolytes+congresses&1,3 http://www.rdg.ac.uk/ITS/Topic/Stats/StGSAS8_01/SAS8/af/z0254912.htm http://www.rdg.ac.uk/ITS/Topic/Stats/StGSAS8_01/SAS8/af/z0254924.htm http://ring.jec.ad.jp/local/mirror/FreeBSD-current/snapshots/i386/5.0-20000902-CURRENT/compat20/ http://ring.jec.ad.jp/local/mirror/FreeBSD-current/snapshots/i386/5.0-20000902-CURRENT/dict/ http://ring.jec.ad.jp/local/mirror/FreeBSD-current/snapshots/i386/5.0-20000902-CURRENT/manpages/ http://www.xmission.com/~dkenison/cgi/lwgate.cgi/KLR650/archives/v02.n1682/date/article-7.html http://ring.toyama-ix.net/pub/linux/Vine/Vine-2.0/ppc/?S=A http://romulus.ehs.uiuc.edu/cgi-bin/lwgate/RADSAFE/archives/radsafe9907/Date/article-80.html http://www.officeqmart.com/cgi-bin/qmart.front/972959552267/Catalog/3000033 http://www.checkout.com/member/movies/title/member_reviews_form/1,7722,882122,00.html http://mindit.netmind.com/proxy/http://www.siennasoft.com/english/order/orders_retail.shtml http://pelit.saunalahti.fi/.1/tucows/adnload/267_29529.html http://pelit.saunalahti.fi/.1/tucows/adnload/7574_29534.html http://zenha.myrice.com/2/23.htm http://zenha.myrice.com/2/20.htm http://citeseer.nj.nec.com/cachedpage/62677/1 http://citeseer.nj.nec.com/check/248055 http://www.3wbooks.de/BrackRuth/BrackRuth3258053200.htm http://preview.egroups.com/group/u_exactus http://preview.egroups.com/group/ticovista http://www.linux.com/networking/linux/support/va_linux_systems/price/sales/ http://kulichki-mac.rambler.ru/moshkow/akm/zercalo/kosmix/03.html http://innopac.lib.tsinghua.edu.cn:2080/search*chi/tStructure+and+bonding+&%2359%3B+70/tstructure+and+bonding+++70/19,-1,0,B/browse http://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/archivers/gcpio/files/ http://www-d0.fnal.gov/d0dist/dist/releases/pmc04.00.00/calibration_management/?S=A http://mvweb.de/olympia/nachrichten/sportarten/news/bdt-290900-158-dpa_173282.html http://www.scifi.com/bboard/browse.cgi/3/1/69/57?pnum=2 http://www.diogenes.ch/4DACTION/web_rd_aut_prview/a_id=7056459&area=&ID=483365 http://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/L/LA/LAXEN/?D=A http://www.affiliate.hpstore.hp.co.uk/do/session/380856/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/Main/acheterhp/ http://library.cuhk.edu.hk/search*chi/aLu,+Li,+1914-/alu+li+1914/-5,-1,0,B/frameset&F=alu+li+chun&1,1 http://www-usa4.cricket.org/link_to_database/ARCHIVE/2000-01/IND_LOCAL/WOMEN/OTHERS/KLCA-SL/SQUADS/ http://www.babyheirlooms.com/catalog/htmlos.cat/041141.1.4425650346 http://193.207.57.3/cgi-win/hiweb.exe/a2/d9/b1305,4,5,,1f,5, http://www.icopyright.com/1.1664.228033 http://www.trax.nilex.co.uk/trax.cgi/A1C/B1S/1AR/A2S/A1S/D1L/ http://www.trax.nilex.co.uk/trax.cgi/A1C/B1S/1AR/A2S/A1S/A2S/ http://www.ferien-immobilien.de/baden-wuertemberg/calw/Verkauf/Gemeinsam/Inserieren/Private-IB/Gemeinsam/Super-Zins-Konditionen/3d-service/info.htm http://sunsite.informatik.rwth-aachen.de/LinuxArchives/redhat/releases/guinness/i386/en/dosutils/fips15c/restorrb/ http://213.36.119.69/do/session/153002/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/connaitre/revue-presse_titres.html http://pub19.ezboard.com/uvinylangel.showPublicProfile?language=EN http://boeing_dude.tripod.com/id125_m.htm http://members.fortunecity.com/greatway1/gallery-pageother-0.htm http://www.searchtraffic.com/wsignup.php3?owor12 http://www.staroriental.net/nav/soeg_c/ihf,acv,s0,194,陳慧琳.html http://www.jpc-music.com/5864555.htm http://oaziz.narod.ru/kuhn/uzb/sal_f1.html http://preview.egroups.com/message/4aromatherapy/1112 http://www.luecos.de/webguides/reisen/travelpictures/europe http://www.maas.ccr.it/cgi-win/hiweb.exe/a18/d47/b47,8,be,29,29,,38,,be,38, http://www.chaos.dk/sexriddle/k/u/u/a/ http://www.chaos.dk/sexriddle/k/u/u/d/ http://student.monterey.edu/nr/nielsenadamp/campus/ http://excite.de/gesundheit/katalog/3727 http://www.ozemail.com.au/~jcai/page19.html http://www.ozemail.com.au/~jcai/page24.html http://www.hantsnet.co.uk/scrmxn/c23173.html http://www.fogdog.com/cedroID/ssd3040183334784/content/fan/subway_series/ http://www.fogdog.com/cedroID/ssd3040183334784/boutique/arnette/ http://www.fogdog.com/cedroID/ssd3040183334784/boutique/hi-tec/ http://www.fogdog.com/cedroID/ssd3040183334784/boutique/marmot/ http://ftpsearch.belnet.be/packages/CPAN/modules/by-module/Stat/ENNO/ http://go1.163.com/_NTES/~yejingsong/03/y18/506.htm http://sinr.net/book/content/343/26710.html http://www.ramada.com/ctg/cgi-bin/Ramada/progpack/AAAksrACwAAABtrAAV http://library.bangor.ac.uk/search/aBoer,+J.+H.+de+(Jan+Hendrik),+1899-/aboer+j+h+de+jan+hendrik+1899/-5,-1,0,B/buttonframe&F=aboer+dirk+jan+den&1,1 http://library.cuhk.edu.hk/search*chi/a三省堂(千代田區,+Tokyo,+Japan)/a%7B213024%7D%7B214d49%7D%7B213840%7D+%7B213458%7D%7B213073%7D%7B214c24%7D%7B213455%7D+tokyo+japan/-5,-1,0,B/browse http://ibm1.cicrp.jussieu.fr/ibmc/classref/ref/ISetCanvas--Style_DSC.htm http://amateur-alley.porncity.net/169/ http://www.teacherformation.org/html/od/facilitators.cfm/task1,about/discussion_id,2/xid,1989/yid,5768630 http://www.shopworks.com/index.cfm/action/mallcat/mallcatlevel/2/parentmallcat/6/userid/000056F0-2E26-19FE-AF65010C0A0A8CF2 http://retailer.gocollect.com/do/session/1912760/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/shipping_policy.asp http://news.novgorod.ru/news/2001/4/1/8/-1 http://news.novgorod.ru/news/2001/4/3/8/-1 http://sp201.unige.ch:49213/cxxdoc/classref/ref/ITimingTestStopwatch_DSC.htm http://netscape.digitalcity.com/boston/localexperts/profile.dci?screenName=PSYWU http://netscape.digitalcity.com/boston/localexperts/profile.dci?screenName=Mende67 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=17,2,26,33,23 http://www.multicosm.com/facade/www.isinet.com/isilinks/isilinks.html http://kutschen.de/Schoner/Info-d/history/history/literature/ http://troy.lib.sfu.ca/search/dengineering+research+periodicals/dengineering+research+periodicals/-5,-1,0,B/frameset&F=dengineering+research+grants+canada&3,,4 http://member.nifty.ne.jp/y-shibata/pc/pch2.htm http://stocks.tradingcharts.com/stocks/charts/iops-bb/m http://www.kaos.dk/sexriddle/x/j/c/s/z/ http://www.bioimages.org.uk/HTML/R138925.HTM http://pub22.ezboard.com/fawolpaintballfrm1.threadControl?topicID=82.topic http://www.incestpornstories.com/hot-hardcore-fuckingbanging/plus-sizewhale/body-shotstounge/fuckinghardcore/barely-legalbackseat/{gaylink} http://www.buybuddy.com/sleuth/27/1/1060904/5811/ http://www.loisirs.ch/gtfmjv/9/nkrlua.html http://vorg1.subportal.com/sn/Utilities/File_Maintenance_and_Repair_Utilities/6387.html http://smartnet.tucows.com/winme/adnload/138584_30392.html http://ftpsearch.belnet.be/mirrors/src.doc.ic.ac.uk/usenet/usenet-by-hierarchy/comp/emacs/?D=A http://genforum.genealogy.com/cgi-genforum/forums/green.cgi?7578 http://cio.cisco.com/warp/public/789/33.html http://www7.freeweb.ne.jp/diary/bru_dog/tk/ http://www.chinabyte.com/staticpages/software/software_download/GRBA/software_download_23274_GRBA.html http://www.chinabyte.com/staticpages/software/software_download/GRBA/software_download_9599_GRBA.html http://www.seekon.com/L/US/IL/Abingdon http://freethemes.arrakis.es/skins/winamp/adnload/25359.html http://www.hig.se/(accessed,modified,remove_cookie,smallcaps,sqlquery)/~jackson/roxen/ http://cn.egroups.com/message/SF-users/218 http://cn.egroups.com/message/SF-users/235 http://www.chaos.dk/sexriddle/r/f/y/c/ http://www.chaos.dk/sexriddle/r/f/y/e/ http://www.chaos.dk/sexriddle/r/f/y/g/ http://yp.gates96.com/13/50/10/33.html http://yp.gates96.com/13/50/10/49.html http://yp.gates96.com/13/50/10/55.html http://yp.gates96.com/13/50/10/98.html http://yp.gates96.com/13/50/11/35.html http://yp.gates96.com/13/50/11/73.html http://yp.gates96.com/13/50/11/94.html http://yp.gates96.com/13/50/12/39.html http://yp.gates96.com/13/50/13/8.html http://yp.gates96.com/13/50/13/67.html http://yp.gates96.com/13/50/14/8.html http://yp.gates96.com/13/50/14/11.html http://yp.gates96.com/13/50/14/47.html http://yp.gates96.com/13/50/16/18.html http://yp.gates96.com/13/50/16/58.html http://yp.gates96.com/13/50/17/33.html http://yp.gates96.com/13/50/18/13.html http://yp.gates96.com/13/50/18/49.html http://yp.gates96.com/13/50/18/54.html http://yp.gates96.com/13/50/19/0.html http://cn.egroups.com/post/romtrade?act=reply&messageNum=3851 http://members.fortunecity.com/toleransi/sorbonne.html http://ring.htcn.ne.jp/pub/lang/perl/CPAN/modules/by-module/PPM/MURRAY/?S=A http://sunsite.berkeley.edu/PhiloBiblon/BITAGAP/BIB/BIB5648.html http://sunsite.berkeley.edu/PhiloBiblon/BITAGAP/BIB/BIB7392.html http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53940/eus53960/eus54753/eus543189/eus550516/ http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53940/eus53960/eus54753/eus543189/eus550528/ http://shn.webmd.com/roundtable_printing/774674 http://www.zi.unizh.ch/software/unix/statmath/sas/sasdoc/lgref/z0205140.htm http://www.hblb.org.uk/hblbweb.nsf/$Pages/NewsArchive1!OpenDocument&ExpandSection=16,12,3,13,5,6,9 http://www.uni-duesseldorf.de/ftp/ftp/pf/share/fvwm-2.0.45/?S=A http://members.tripod.com/~PhyrePhox/mcse/70-088.htm http://extreme-dm.com/tracking/reports/dj/nph-ref1.cgi?tag=nimrood http://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20040397/-5,-1,0,B/frameset&F=bp20040402&1,1 http://209.0.220.240/spec/txve.htm http://209.0.220.240/spec/tyai.htm http://ftp.up.pt/Linux/Linus/net-source/www/clients/netscape/?M=A http://ftp.up.pt/Linux/Linus/net-source/www/clients/netscape/?D=A http://www.jobvillage.com/channel/jobs/health_care/nursing/licensed_practical_nurse/b.9505.g.1766.html http://www.zope.org/Members/stevea/CoadObjectModels/BackLinks/backlinks http://www.mairie-montreuil93.fr/ville_pratique/environ/energie/mve/media/?D=A http://member.shangdu.net/home2/chr/jishang/hongkong/inxg-6.html http://www.wild-dog.com/activity/touring/idx/page_18_1.html http://members.tripod.co.jp/susu/?M=A http://www.dulux.co.uk/UKRETAIL:623356687:DFinity.1QJiP4jMLco http://www.kordic.re.kr/~trend/Content326/agriculture04.html http://www.kordic.re.kr/~trend/Content326/agriculture09.html http://ftp.lip6.fr/pub12/OpenBSD/src/gnu/egcs/config/mh-aix43 http://ftp.lip6.fr/pub12/OpenBSD/src/gnu/egcs/config/mh-elfalphapic http://ftp.lip6.fr/pub12/OpenBSD/src/gnu/egcs/config/mt-x86pic http://www.ecatsbridge.com/BiB/static/sims/bbljuly99/00000101758612773F1.htm http://pub20.ezboard.com/faustralianslotcarreviewhoracing.showMessage?topicID=2.topic&index=47 http://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/games/exchess/pkg/DESCR http://homepage.renren.com/sandybay/help.htm http://no.egroups.com/post/oslosynth?act=reply&messageNum=634 http://www.brio.de/BRIO.catalog/39fe2f940703266c273fd472aa7806a8/UserTemplate/2 http://www.50megs.com/prettysenshi/captures/ep3/SMep3.html http://www.thisislancashire.co.uk/lancashire/archive/1999/11/05/CHORNEWS5VQ.html http://au.yahoo.com/Regional/U_S__States/California/Metropolitan_Areas/San_Francisco_Bay_Area/Entertainment_and_Arts/Restaurants/Coffee_and_Tea_Houses/ http://www.niwl.se/WAIS/30002/30002360.htm http://www.infoscape.com.cn:8178/gb/content/2000-08/16/content_6082.htm http://link.fastpartner.com/do/session/600419/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php http://www.canit.se/(c1,f3,ftp,generellt,irc,mail)/support/ http://citeseer.nj.nec.com/cidcontext/3787443 http://www.affiliate.hpstore.hp.co.uk/do/session/380878/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry.asp http://www.usq.edu.au/unit-1997/fullspec/51129s3x.htm http://worldres.lycos.com/script/gen_mr.asp?hotel_id=6354&n=1518 http://www.members.aon.at/~kleindlp/neue_seite_4.htm http://210.169.76.95/html/tai_0043/bat_1180.html http://oneplace.adbureau.net/accipiter/adclick/site=ONEPLACE/area=INDEX/POSITION=FOOTER/AAMSZ=468x60/ACC_RANDOM=262411779164 http://www.service911.com/mvu/step/0,2632,6+34+90+23506+13880_4,00.html http://ftp.lip6.fr/pub11/NetBSD/NetBSD-current/src/usr.sbin/kvm_mkdb/Makefile http://www.bemi-immobilien.de/Private-IB/Startseite/Startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/immolink/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/gebaeude/anforderungsformular.htm http://wap.jamba.de/KNet/_KNet-BOC8j1-LFd-13bpy/showInfo-hilfe.de/node.0/cenv0b09a http://wap.jamba.de/KNet/_KNet-BOC8j1-LFd-13bq0/browse.de/node.0/cde7f1uou http://cnnews.sina.com/kwongzhou/china/2000/1026/2083022_2.html http://www.msb.malmo.se/search*swe/dFlygplanskonstruktion/dflygplanskonstruktion/-5,-1,0,B/frameset&F=dflygolyckor&4,,6 http://home.hanmir.com/~100sun/joo4.htm http://www.szed.com/szsb/19990629/GB/default.htm http://www.szed.com/szsb/19990629/GB/4-NPCLASS.HTM http://www.szed.com/szsb/19990629/GB/7-NPCLASS.HTM http://www2.kbank.no/Web/nlpublish.nsf/Published/ord_og_uttrykk!OpenDocument&ExpandSection=15,24,26,25 http://movies.exit.de/lichtsammler/images/tunnel/gross/sw_kb/?D=A http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=5,34,38 http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=21,34,38 http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=31,34,38 http://fi.egroups.com/login.cgi?login_target=%2Fmessage%2Fgamp%2F1734 http://de.excite.de/katalog/katalog/9231 http://www-win.rusf.ru/esli/rubr/books/es0500di.htm http://www.jamba.de/KNet/_KNet-yjF8j1-8Gd-13cj6/browse.de/node.0/cde7f1uou http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/misc/lit/programs/misc/math/lit/athalie.html http://ftp.fi.debian.org/debian/dists/Debian2.2r0/contrib/binary-powerpc/interpreters/?S=A http://jupiter.u-3mrs.fr/~msc41www/releves/04350110.HTM http://ocean.ntou.edu.tw/search*chi/dDigital+modulation/ddigital+modulation/7,-1,0,E/frameset&F=ddigital+techniques+signal+processing&4,,0 http://pub20.ezboard.com/fcharmingtailsresourcetradeyoursportscardshere.unsubscribeUnregisteredToTopic?topicID=43.topic http://www.kaos.dk/sexriddle/x/w/k/u/q/ http://www.kaos.dk/sexriddle/x/w/k/u/t/ http://216.205.158.3/smm/programs/CDG_Player/wwwboard/messages/27.html http://216.205.158.3/smm/programs/CDG_Player/wwwboard/messages/60.html http://fen.com/whatworks/review/edit/1,2560,1-9696-5539-0-45394,00.html http://yp.gates96.com/8/74/30/30.html http://yp.gates96.com/8/74/31/1.html http://yp.gates96.com/8/74/32/12.html http://yp.gates96.com/8/74/32/60.html http://yp.gates96.com/8/74/32/92.html http://yp.gates96.com/8/74/33/41.html http://yp.gates96.com/8/74/33/55.html http://yp.gates96.com/8/74/33/57.html http://yp.gates96.com/8/74/33/95.html http://yp.gates96.com/8/74/34/21.html http://yp.gates96.com/8/74/34/23.html http://yp.gates96.com/8/74/34/79.html http://yp.gates96.com/8/74/35/3.html http://yp.gates96.com/8/74/35/22.html http://yp.gates96.com/8/74/35/79.html http://yp.gates96.com/8/74/36/31.html http://yp.gates96.com/8/74/36/84.html http://yp.gates96.com/8/74/37/58.html http://yp.gates96.com/8/74/37/77.html http://yp.gates96.com/8/74/37/89.html http://yp.gates96.com/8/74/37/97.html http://yp.gates96.com/8/74/39/43.html http://yp.gates96.com/8/74/39/63.html http://yp.gates96.com/8/74/39/88.html http://www9.hmv.co.uk:5555/do/session/1347828/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/newmenu.html http://www9.hmv.co.uk:5555/do/session/1347828/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/departments/d80_sd0_pt0.html http://gladstone.uoregon.edu/~sme28057/arch181-202/assign2/?M=A http://cco.cisco.com/univercd/cc/td/doc/product/core/7206/7206ig/trble6ug.pdf http://210.32.1.18/goldbook/humor/mh/c/changgu/1/028.htm http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=17,28,24,31,11 http://www.spiral.at/Katalog/Artikel/7561032/ http://www.crutchfield.com/cgi-bin/S-Ql7dbZlSZa2/viewcart.asp http://www.fogdog.com/cedroID/ssd3040183327788/nav/products/winter_sports/1b/shell_pants/ http://www.fogdog.com/cedroID/ssd3040183327788/nav/products/winter_sports/1j/oakley/ http://www.fogdog.com/cedroID/ssd3040183327788/nav/products/winter_sports/1l/day_packs/ http://www.thestateofcolorado.com/pglblock.html http://www.staroriental.net/nav/soeg/ihf,adj,s0,259,Kristy+Yeung+Gung-Yu.html http://pcmcia.sourceforge.org/cgi-bin/HyperNews/get/pcmcia/toshiba/38.html http://sunsite.org.uk/public/public/packages/Dr-Fun/df9412/?N=D http://nt.mortgage101.com/partner-scripts/1144.asp?p=mig&pw=600 http://biblioteca.upv.es/bib/doc/doc_fisbd/17/87050//C/1828104/3////25/N/MLTPAI http://130.80.29.3/content/houston/k-12/hanc/ http://javatest.a-net.nl/exhibits/default.htm http://javatest.a-net.nl/museum_info/job_opportunities.asp http://books.hyperlink.co.uk/booklist/Alphabet_Workbook/Cheney/Martha/1565658396 http://kobe.cool.ne.jp/orera/guestbook.html http://ftp.eecs.umich.edu/pub/NetBSD/packages/1.4.1/vax/audio/ http://ftp.eecs.umich.edu/pub/NetBSD/packages/1.4.1/vax/editors/ http://ftp.eecs.umich.edu/pub/NetBSD/packages/1.4.1/vax/tk80/ http://www.zdnet.de//news/artikel/1999/03/09001-wc.html http://neptune.guestworld.com/gear/gateway.cfm?action=private&owner=sitonga7 http://www.de.lycos.de/dir/Reisen_und_Regionen/L%E4nder_und_St%E4dte/Deutschland/Schleswig-Holstein/St%E4dte_und_Orte/St%E4dte_und_Orte_P_bis_S/ http://www.mirror.edu.cn/res/sunsite/pub/academic/music/album-reviews/1995/9-September/?M=A http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=213&discrim=176,11,57 http://europa.eu.int/abc/doc/off/bull/el/9705/x085.htm http://europa.eu.int/abc/doc/off/bull/el/9705/x209.htm http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=15,0+17,0-3,0-9,0 http://www.ferien-immobilien.de/baden-wuertemberg/stuttgart/Verkauf/Gemeinsam/MarketingStrategie/Ferien-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/indexbeginn.htm http://www.ferien-immobilien.de/baden-wuertemberg/stuttgart/Verkauf/Gemeinsam/MarketingStrategie/Ferien-IB/Startseite/Gemeinsam/Super-Zins-Konditionen/Gemeinsam/impressum.htm http://www.chaos.dk/sexriddle/s/e/x/v/i/a/w/ http://pub4.ezboard.com/fscarletstreethorroritalianstyle.showAddReplyScreenFromWeb?topicID=15.topic http://ftp.dti.ad.jp/pub/lang/CPAN/authors/id/P/PJ/PJF/ http://www.highwired.net/Paper/EmailToFriend/1,2102,302-183023,00.html http://ftpsearch.belnet.be/mirror3/ftp.kde.org/pub/kde/Incoming/Attic/old/1.1.2/apps/ide/?D=A http://www.affiliate.hpstore.hp.co.uk/do/session/380877/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-creativeworld.com/creativeworld.asp?lang=f http://expert.cc.purdue.edu/~steinfoc/assignment3/assig3.html http://www.wyborcza.com/Ascii/Raporty/Filmowa/277rap.html http://www.redhat.com/mirrors/LDP/LDP/LG/issue50/misc/pollman/?D=A http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=148&discrim=142,11,200 http://www.marktplatz-hs.de/cgi-bin/ChioEditionShop.s/39fe2ee602379b7e273fd47540f806e1/Catalog http://www.affiliate.hpstore.hp.co.uk/do/session/380836/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/SMARTTIPS/createbroch.asp http://joy1.alpha-g.ne.jp/tree/user/a/amuro/2_index.shtml http://time.188.net/movie/star/taiwan/2/pic/image36.htm http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=25,1,36,31,11 http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/audio/kdemultimedia11-i18n/Attic/pkg-comment?only_with_tag=RELEASE_2_2_7 http://www.landfield.com/ftp/usenet/news.answers/bicycles-faq/?S=A http://wap.jamba.de/KNet/_KNet-puF8j1-aGd-13clg/browse.de/node.0/cenv0b09a http://www.empas.com/search/all.html?q=%C0%CC%B7%D3%B4%D9 http://www.linux.com/networking/server/install/howto/website/developers/ http://aecjobbank.com/texis/script/newjobs/+NwxBm6ev7I1wwwhmrmwxetiAw/jobdirectory.html http://www.egroups.com/message/ijtihadmk/5 http://www.egroups.com/message/ijtihadmk/11 http://www.realize.com/am67bd81.htm,qt=e784fe2f=2a38a234-7-da6e2d-0-0-0-3-- http://www.realize.com/p643c81.htm,qt=e784fe2f=2a38a234-7-da6e80-0-0-0-3-- http://moneysaver.net/netcall/?almktng http://www.agria.hu/bikersmeeting/archivum/talalkozo/foto/taj.cgi?15n http://link.fastpartner.com/do/session/600401/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/ http://198.103.152.100/search*frc/aDidsbury,+Howard+F.,+1924-/adidsbury+howard+f+1924/-5,-1,0,B/frameset&F=adidier+marcel&1,,0 http://198.103.152.100/search*frc/aDidsbury,+Howard+F.,+1924-/adidsbury+howard+f+1924/-5,-1,0,B/frameset&F=adidier+michel&1,,0 http://www.medoc-ias.u-psud.fr:81/synoptic/gif/001020/?D=A http://shop.goto.com/compperiph/periph/cdrom/search/sidexside.jhtml?s=1&sort_up=LOW_PRICE http://excite.de/wirtschaft/katalog/1356 http://excite.de/wirtschaft/katalog/2631 http://www.areteoutdoors.com/channel/earth/caving/b.89.g.473.html http://www.areteoutdoors.com/channel/earth/caving/b.91.g.473.html http://bo.ole.com/actualidad/articulo/html/act13873.htm http://www.dulux.co.uk/UKRETAIL:446033260:DFinity.1QJiP4jMomdoclfieh http://www.linux.com/networking/network/release/sap/hardware/firewall/ http://genforum.genealogy.com/cgi-genforum/forums/hendrix.cgi?430 http://www.chaos.dk/sexriddle/s/p/w/c/ http://198.103.152.100/search*frc/tCanada+in+the+21st+century.+II,+Resources+and+technology/tcanada+in+the+21st+century+ii+resources+and+technology/-5,-1,0,B/frameset&F=tcanada+in+the+21st+century+no+01&1,1 http://books.hyperlink.co.uk/bookinfo/Sunk_Costs_and_Market_Structure/Sutton/John/0262193051 http://members.tripod.com/theshavedbeaver/site2/s2laststand.html http://members.tripod.com/theshavedbeaver/site2/s2s1ep21.html http://www.ytmag.com/cgi-bin/redirect.cgi/602479760 http://www18.freeweb.ne.jp/school/syodou/you005.htm http://www.fogdog.com/cedroID/ssd3040183334500/nav/products/featured_brands/2h/replica_jerseys/ http://www.fogdog.com/cedroID/ssd3040183334500/nav/products/featured_brands/2h/replica_jerseys/4.html http://www.fogdog.com/cedroID/ssd3040183334500/crs/nvCZ/wld/fogdog_sports/champion/fan_memorabilia/apparel/vlade_divac_replica_jersey.html http://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4897.g.5299.html http://www.bcbsal.org/Provider_Dir/pharmacy/state/Oregon/HILLSBORO/index_29061.html http://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d2066/b77,c,4d,469,469,1b65,1b65,,51,811,4d,51,811,, http://www.loisirs.ch/bbewxu/2/wofyff.html http://mitglied.tripod.de/Jag3/jag3b.htm http://linuxberg.starhub.net.sg/x11html/preview/9016.html http://linuxberg.starhub.net.sg/x11html/preview/9062.html http://linuxberg.starhub.net.sg/x11html/preview/9103.html http://linuxberg.starhub.net.sg/x11html/preview/9820.html http://linuxberg.starhub.net.sg/x11html/preview/10370.html http://linuxberg.starhub.net.sg/x11html/preview/9965.html http://linuxberg.starhub.net.sg/x11html/preview/10117.html http://linuxberg.starhub.net.sg/x11html/preview/10129.html http://linuxberg.starhub.net.sg/x11html/preview/10152.html http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=150&discrim=251,11,3 http://totalsports.aol.com/stats/bbo/int/20000624/tol.at.swb.game.html http://excite.de/gesundheit/katalog/41575 http://bbs.csie.ntu.edu.tw/txt/Emprisenovel/ebooks/other/hsiao_yi/jqhy/007.txt http://www.memorialcup99.com/HockeyStLouisArchive/nov17_stl.html http://www.letsmusic.com/directory/theme/genre_each/1,1137,Z-ㄴ-124-2-2,00.asp http://rainforest.parentsplace.com/dialog/get/bedwetting/29/2.html?outline=-1 http://www.volny.cz/j_medkova/p05.html http://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d2072/b77,c,4d,51,51,815,815,818,7d9,,51,7d9,818,, http://collection.nlc-bnc.ca/100/200/301/ccmd-ccg/ccmd_report-e/rpt1e.pdf http://cn.egroups.com/post/export-import-indonesia?act=forward&messageNum=595 http://www.secinfo.com/$/SEC/Filing.asp?T=1zBgb.6t_9yc http://www.realize.com/am81.htm,qt=4619dc8c=279e650e-c-16fba7d-1-0-0-0-- http://amadeus.siba.fi/doc/php3-ldap/html/features.html http://amadeus.siba.fi/doc/php3-ldap/html/function.ada-fetchrow.html http://amadeus.siba.fi/doc/php3-ldap/html/function.array-pop.html http://amadeus.siba.fi/doc/php3-ldap/html/function.current.html http://amadeus.siba.fi/doc/php3-ldap/html/function.ftp-size.html http://amadeus.siba.fi/doc/php3-ldap/html/function.getmyinode.html http://amadeus.siba.fi/doc/php3-ldap/html/function.gmdate.html http://amadeus.siba.fi/doc/php3-ldap/html/function.hw-getusername.html http://amadeus.siba.fi/doc/php3-ldap/html/function.icap-list-alarms.html http://amadeus.siba.fi/doc/php3-ldap/html/function.ifx-free-char.html http://amadeus.siba.fi/doc/php3-ldap/html/function.imap-reopen.html http://amadeus.siba.fi/doc/php3-ldap/html/function.is-link.html http://amadeus.siba.fi/doc/php3-ldap/html/function.is-string.html http://amadeus.siba.fi/doc/php3-ldap/html/function.mcal-event-set-recur-monthly-wday.html http://amadeus.siba.fi/doc/php3-ldap/html/function.mhash-get-block-size.html http://wwws.br-online.de/geld/boerse/980420/110001.html http://family.go.com/Categories/reviews/Features/family_2000_01/dony/dony0100craftapple/ http://family.go.com/Categories/reviews/Features/family_2000_01/dony/dony0100craftcactus/ http://family.go.com/Categories/reviews/Features/family_2000_01/dony/dony0100petvetticks/ http://www.maastrek.de/maas/d49da6854db9e797f212/1/0/1 http://astro1.chungnam.ac.kr/NetBBS/Bbs.dll/astromov/lst/qqadm/1/zka/B2-kB2Bl/qqo/004D http://channel.cnnsi.com/basketball/college/2000/ncaa_tourney/west/news/2000/03/25/keady_ap/lg_keady_ap.html http://incmagazine.com/articles/details/0,3532,AGD5_ART13806_CNT56_GDE30,00.html http://incmagazine.com/research/details/0,3470,AGD5_CNT49_GDE30_RSC16754,00.html http://gatekeeper.dec.com/pub/linux/lorax/i386/misc/src/anaconda/balkan/CVS/ http://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd720350329 http://www.proviser.co.uk/regional/towns/alford/street_maps/alpha_b.html http://www.fogdog.com/cedroID/ssd3040183255203/ http://www.columbia.edu/~wl158/OCD.htm http://www.irishnews.com/Archive2000/29052000/international.html http://www.irishnews.com/Archive2000/29052000/sportinter.html http://38scbshop.freeyellow.com/download.html http://news.dinf.ne.jp/news/fj/rec/animation/msg01441.html http://datastore.tucows.com/winnt/adnload/5372_28388.html http://pages.infinit.net/limal/visage/chap17.htm http://www.hotelboulevard.com/fr/paris/standard/htmlc258073cfbe254c1722c86e0aec5f5da/sessionLang/ANG/search.html http://www.icopyright.com/1.1642.213678 http://wiem.onet.pl/wiem/012aa2.html http://www.secinfo.com/dRRsz.9e.htm http://lily.nju.edu.cn/literature/cangshu/wx/wra/ysz/16.htm http://home.swipnet.se/~w-15978/ http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.stanford.edu/dept/EIS/moral_responsibility.htm http://smb.slac.stanford.edu/cgi-bin/nph-proxy.cgi/000/http/www.stanford.edu/dept/EIS/hardin_review.htm http://www.uni-duesseldorf.de/ftp/pf/share/flex-2.5.2/man/man1/?S=A http://mindit.netmind.com/proxy/http://www.ninds.nih.gov/health_and_medical/pubs/chronic_pain_htr.htm http://mindit.netmind.com/proxy/http://www.smalltime.com/notvictims/cutting.html http://www.peopledaily.co.jp/zdxw/7/19991231/19991231001085.html http://pokemonothin.8m.com/cgi-bin/c/736/64/dXNlcmJhbm5lcg==/gn/4638/ http://www.chaos.dk/sexriddle/s/e/x/u/y/n/d/ http://www.bestinfo.net.cn/bsti_kjhy/kyys/bjkyys/arim/technical.html http://www.leicos.de/webguides/fun_lifestyle/unterhaltung/43101.html http://209.207.239.212/bkindex/c1047/f1423.html http://cylis.lib.cycu.edu.tw/search*chi/tEncyclopaedia+of+mathematical+sciences+&%2359%3B+v.+65/tencyclopaedia+of+mathematical+sciences+v+++65/-17,-1,0,B/frameset&F=tencyclopaedia+of+mathematical+sciences+v+++48&1,1 http://www.sanxia.net/beauty/Nanako/313.htm http://www.sanxia.net/beauty/Nanako/323.htm http://mirrortucows.technet.it/winme/adnload/138469_29790.html http://www.fogdog.com/cedroID/ssd3040183321970/nav/stores/walking/ http://www.fogdog.com/cedroID/ssd3040183321970/customer_service/employment.html http://mirror.pku.edu.cn/www.berkeley.edu/ls.berkeley.edu/lscr/services/backups/UCBackup.html http://retailer.gocollect.com/do/session/1912804/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp http://www.uni-duesseldorf.de/ftp/pf/share/ddd-1.4d/man/man1/?M=A http://www.uni-duesseldorf.de/ftp/pf/share/ddd-1.4d/man/man1/?S=A http://javatest.a-net.nl/servlet/pedit.Main/http://www.zdnet.com/special/stories/wireless/0,10676,2557092-8,00.html http://ftp.sunet.se/pub/os/FreeBSD/development/FreeBSD-CVS/ports/archivers/makeself/ http://www.jamba.nl/KNet/_KNet-QYL8j1-2D4-pw4k/browse.nl/node.0/cde7f1uou http://www.discoveromaha.com/shared/health/adam/ency/imagepage/1090.000233.html http://home.dqt.com.cn/cgi-bin/push/setluntan?luntan=64 http://sjsulib1.sjsu.edu:81/search/dbusiness+periodicals/-5,-1,1,B/frameset&dbusiness+vocational+guidance&2,,3 http://www-d0.fnal.gov/d0dist/dist/releases/psim01.01.00/cft_tuple/VERSION http://pub3.ezboard.com/fmcdonaldscollectorsclubauctions.subscribeUnregisteredToTopic?topicID=136.topic http://shopping.lycos.co.kr/cgi-bin/LCWB.cgi/957424027/957522583/Catalog/1301/001 http://www.cs.kuleuven.ac.be/~java/docs/jdk1.3/docs/api/java/sql/class-use/DriverPropertyInfo.html http://www.buybuddy.com/sleuth/27/1/1060701/505427/ http://web4.sportsline.com/u/football/nfl/players/splits/4451_split.htm http://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/ports/alpha/packages-5-current/japanese/?M=A http://no.egroups.com/login.cgi?login_target=%2Fgroup%2Ftkd-full http://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/immolink/Gemeinsam/3d-service/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/MarketingStrategie/Strategie.htm http://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/immolink/Gemeinsam/3d-service/Startseite/www.ferien-immobilien.de/ferien-ib/startseite/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm http://www.3wposter.com/czaja/czj2002.htm http://pub19.ezboard.com/fallamericanbaseballleagueplayersneeded.showMessage?topicID=6.topic http://ftp.uni-mannheim.de/info/OReilly/nutshell/practcpp/disk/doit/?N=D http://www02.geocities.co.jp/HeartLand-Kaede/4970/index2.htm http://www.selbstmachen.de/shops/pop/infotext/8008.htm http://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/unstable/contrib-jp/binary-alpha/doc/?D=A http://genforum.genealogy.com/cgi-genforum/forums/flynn.cgi?1004 http://www.iwon.com/home/movies/movies_filmography_page/0,13178,Marguerite+Hickey,00.html http://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=700&session=132028&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5 http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus65300/eus65303/eus77824/eus541028/eus168664/ http://user.chollian.net/~iipuni/pds1/?M=A http://tucows.ciaoweb.it/winnt/adnload/73935_29937.html http://home2.keyciti.com/x2001/ http://www.amateurplatinum.com/teenagerclique/fagbodyshots/elbow-greaseac/plus-sizemen/butt-fuckpartner/actionextreme/hitting-itendurance.html http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/vfs.txt?only_with_tag=LINUX-2_3_99_pre4 http://oss.sgi.com/cgi-bin/cvsweb.cgi/linux-2.3-4/linux/Documentation/filesystems/vfs.txt?only_with_tag=LINUX-2_3_17 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+18,0-0,0-3,0 http://www.skaninforma.no/nord-troendelag/leksvik-h.htm http://194.128.65.4/pa/cm199798/cmwib/wb971115/nil.htm http://www.on.fuchu.or.jp/~oimatudo/englishmisomanzyu.htm http://map.ipc.co.jp/asp/onmap/connect/g-2/a-719/ http://cherokee1.edgate.com/goucheres/ed_current.html http://www.online.kokusai.co.jp/Service/V0043594/wrd/G200/service/service.html http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=21,16,7 http://binary.tucows.com/winnt/adnload/70807_30160.html http://binary.tucows.com/winnt/adnload/1422_28846.html http://genforum.genealogy.com/cgi-genforum/forums/theroux.cgi?69 http://rex.skyline.net/navigate.cgi?news,ice,women,resources,living http://umweb2.unitedmedia.com/creators/rugrats/archive/rugrats-20001015.html http://retailer.gocollect.com/do/session/1912824/vsid/2089/tid/2089/cid/621609/mid/1540/rid/1520/chid/2083/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/product_display/products/product_lines.asp http://retailer.gocollect.com/do/session/1912824/vsid/2089/tid/2089/cid/621609/mid/1540/rid/1520/chid/2083/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/clubhouse/suggestions.asp http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=146,7,19 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=146&discrim=146,7,231 http://login.hq.cricinfo.org/link_to_database/ARCHIVE/1996-97/OD_TOURNEYS/SINWS/SINWS-MATCHES/SL_ZIM_SINWS_ODI5_03SEP1996_DAILY_MR.html http://preview.egroups.com/group/God_Calling http://www.fogdog.com/cedroID/ssd3040183340945/nav/products/outlet/1b/sunglasses_optics/ http://www.fogdog.com/cedroID/ssd3040183340945/nav/products/outlet/1c/dc/ http://www.fogdog.com/cedroID/ssd3040183340945/customer_service/contact_us.html http://link.fastpartner.com/do/session/600424/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/itjobbank.php http://link.fastpartner.com/do/session/600424/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/index.php http://pub2.ezboard.com/fteamnexgenforumhelpnexgennexencodestudio.unsubscribeUnregisteredToTopic?topicID=29.topic http://www02.geocities.co.jp/SiliconValley-PaloAlto/1763/event/ni2k/ni2k.htm http://yp.gates96.com/7/89/60/35.html http://yp.gates96.com/7/89/61/4.html http://yp.gates96.com/7/89/61/38.html http://yp.gates96.com/7/89/62/80.html http://yp.gates96.com/7/89/63/8.html http://yp.gates96.com/7/89/63/16.html http://yp.gates96.com/7/89/65/10.html http://yp.gates96.com/7/89/65/42.html http://yp.gates96.com/7/89/65/54.html http://yp.gates96.com/7/89/65/88.html http://yp.gates96.com/7/89/65/98.html http://yp.gates96.com/7/89/66/26.html http://yp.gates96.com/7/89/66/55.html http://yp.gates96.com/7/89/67/28.html http://yp.gates96.com/7/89/68/67.html http://yp.gates96.com/7/89/69/63.html http://yp.gates96.com/7/89/69/73.html http://www.mediko.de/news/alt.support.eating-disord/19944.html http://www.mediko.de/news/alt.support.eating-disord/19975.html http://www13.cplaza.ne.jp/musicnavi/i-mode/id/KICS113.html http://home.beseen.com/community/alienpilot/AbductionTheory.html http://www.hausbau-finder.de/festpreis/anbieter/A11/A11_05_eg.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=10,15,200 http://ftp.eecs.umich.edu/pub/NetBSD/packages/1.3.3/mac68k/kde/ http://www.leg.wa.gov/pub/rcw%20-%20text/title_49/chapter_028/rcw_49_28_065.txt http://fi.egroups.com/login.cgi?login_target=%2Fmessages%2Fdfbl%2F77 http://ring.omp.ad.jp/pub/NetBSD/NetBSD-current/src/sys/arch/sgimips/dev/?D=A http://retailer.gocollect.com/do/session/1912781/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/postcards/index.asp http://providenet.tucows.com/win2k/adnload/136128_47180.html http://providenet.tucows.com/win2k/adnload/38527_29571.html http://no.egroups.com/dir/1/16/476/32069/32291/104313/293356 http://www.playease.com/et/beauty/img/lingmuyamei/lmam043.htm http://202.99.23.201/gb/special/node_484.htm http://202.99.23.201/gb/special/node_518.htm http://202.99.23.201/gb/special/node_531.htm http://ring.jec.ad.jp/archives/NetBSD/NetBSD-current/pkgsrc/fonts/acroread-chsfont/README.html http://www.gaiax.com/~dengeki/lineb.html?haru_da_pump http://cafe2.daum.net/Cafe-bin/Bbs.cgi/naturalproductspds/qry/zka/B2-kB27p/qqatt/^ http://cafe2.daum.net/Cafe-bin/Bbs.cgi/naturalproductspds/qry/zka/B2-kB23t/qqatt/^ http://cafe2.daum.net/Cafe-bin/Bbs.cgi/naturalproductspds/qry/zka/B2-kB23r/qqatt/^ http://my.egroups.com/group/uk-mac-dev http://www.f20.parsimony.net/forum35990/archiv.htm http://findmail.com/group/Costumers http://variety.studiostore.com/browse/PEOPLE/b.FAVORITES%20PEOPLE/s.ZaC1r6Q6 http://www.chinawolf.com/~warson/japan/chichuan/cat/jiangzuo/020.htm http://www.branchen-vermittler.de/Branchen/Mecklenburg/Mecklenburg_Region_3/Neustrelitz/kopf_neustrelitz.html http://www.xmission.com/(art,ftp,geek,music,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,places,privacy,stuffiuse)/~bill/links.html http://www.cs.helsinki.fi/linux/linux-kernel/Year-1999/1999-49/1283.html http://www.ecotec.co.jp/view/arc/f/free/33/umcotk/zxlqox.html http://www.ecotec.co.jp/view/arc/f/free/33/tgiotk/uftfwm.html http://www.ecotec.co.jp/view/arc/f/free/33/purotk/qxxotk.html http://www.ecotec.co.jp/view/arc/f/free/33/purotk/sewotk.html http://www.ecotec.co.jp/view/arc/f/free/33/purotk/sjkfwm.html http://www.ecotec.co.jp/view/arc/f/free/33/hazfwm/llhetk.html http://www.ecotec.co.jp/view/arc/f/free/33/bvtctk/eptrik.html http://www.ecotec.co.jp/view/arc/f/free/33/rvkptk/syurzz.html http://library.cuhk.edu.hk/search*chi/a��頦��哨蕭嚙賢��鞈�嚙踝���+1934-/a{214b33}{213021}{214451}+1934/-5,-1,0,B/frameset&F=a{214b33}{213021}{213c63}&6,,7 http://mitglied.tripod.de/~haubentaucher/bilder.htm http://amc.hollywood.com/maltin/v/valleyofthekings-1954.htm http://amc.hollywood.com/maltin/v/vannuysblvd-1979.htm http://amc.hollywood.com/maltin/v/venicevenice-1992.htm http://amc.hollywood.com/maltin/v/vicesquad-1931.htm http://amc.hollywood.com/maltin/v/violette-1978.htm http://amc.hollywood.com/maltin/v/voiceofthewhistler-1945.htm http://amc.hollywood.com/maltin/v/vulturethe-1967.htm http://members.tripod.co.jp/hatahata/hikoki/?D=A http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-23/07/972255822718.txt http://www.mapion.co.jp/custom/AOL/admi/23/23105/matsubaracho/5chome/index-43.html http://search.chollian.net/cgi-bin/filter.cgi?cid=1109&g=11 http://search.chollian.net/cgi-bin/filter.cgi?cid=1109&p=5 http://www.linux.com/networking/network/new/website/applications/business/ http://www.fogdog.com/cedroID/ssd3040183313598/nav/products/w_golf/1s/ball_retrievers/ http://www.fogdog.com/cedroID/ssd3040183313598/nav/products/w_golf/1t/biographical_books/ http://rammstein.sonicnet.com/artists/news/1090.jhtml http://rammstein.sonicnet.com/allmusic/ai_bio.jhtml?ai_id=1090 http://www.ycwb.com.cn/gb/2000/08/18/ycwb/gnxw/7.html http://www.vorlesungen.uni-osnabrueck.de/informatik/c98/code/19/?D=A http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-23/11/972270515716.txt http://www.affiliate.hpstore.hp.co.uk/do/session/380869/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry1.asp http://uk.biz.yahoo.com/mutual_funds/micropal/lf/fund/008776/properf.html http://troy.lib.sfu.ca/search/aasociacion+argentina+de+ciencias+naturales/aasociacion+argentina+de+ciencias+naturales/-5,-1,0,E/frameset&F=aasociacion+argentina+de+ciencias+naturales&1,,0 http://uk.dir.yahoo.com/Regional/U_S__States/Virginia/Metropolitan_Areas/Charlottesville_Metro/Travel_and_Transportation/Accommodation/Caravan_Parks_and_Camp_Sites/ http://uk.dir.yahoo.com/Regional/U_S__States/Virginia/Metropolitan_Areas/Charlottesville_Metro/Travel_and_Transportation/Accommodation/Hotels/ http://library.cwu.edu/search/cQA76.73.A35+T75/cqa+++76.73+a35+t75/-5,-1,0,B/marc&F=cqa+++76.73+a8+j33+1985&1,1, http://www.tages-anzeiger.ch/sport/nagano/0902/olymp_art4.htm http://finance.sina.com.cn/globe/globe/2000-03-16/23725.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,3-9,0+0,1-0,3 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,3-9,0+0,1-9,3 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,3-9,0+0,1-19,0 http://temps-libre.promovacances.net/D02/BH/BDANE/voyagealacarte.htm http://sunsite.org.uk/public/computing/networks/internet/ietf/98aug/imapext-attendees-98aug.txt http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=124&discrim=221,178 http://cpan.nettuno.it/authors/Ilya_Zakharevich/modules/FreezeThaw-0.41.readme http://cpan.nettuno.it/authors/Ilya_Zakharevich/modules/Math-Pari-2.001700.readme http://ricoh.co.jp/SHOGI/emate/tanigawa/tume0069a.html http://troy.lib.sfu.ca/search/dlatin+america+periodicals/dlatin+america+periodicals/-5,-1,0,B/marc&F=dlatin+america+pest+control+industry&1,1, http://moviestore.zap2it.com/browse/MOVIES/COLLECTI/s.w2bwHPkr http://moviestore.zap2it.com/browse/MOVIES/BUNDLE/s.w2bwHPkr http://moviestore.zap2it.com/browse/MOVIES/BOWL/s.w2bwHPkr http://moviestore.zap2it.com/browse/MOVIES/JEWELRY/s.w2bwHPkr http://moviestore.zap2it.com/browse/MOVIES/COMIC/s.w2bwHPkr http://www9.hmv.co.uk:5555/do/session/1347801/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/Top_Navigation_Bar/top_banner.html http://www3.adobe.com/type/browser/F/P_103/F_FRAK-70005000.html http://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/j-l/kewl.txt http://ftp.netc.pt/pub/idgames/levels/doom2/deathmatch/j-l/ledges-z.txt http://park.org:8888/Japan/CSK/hyakki/zukan/turezure/ue/c_tirizuka.html http://pub4.ezboard.com/fscarletstreetfilmmusic.unsubscribeUnregisteredToTopic?topicID=54.topic http://tucows.niagara.com/win2k/adnload/37364_29149.html http://wap.jamba.de/KNet/_KNet-JGG8j1-eGd-13cre/showInfo-special1.de/node.0/cde7f1uou http://www.personalmd.com/news/n0706062122.shtml http://ds.dial.pipex.com/tmc/ConfPresentations/s2000/NetworkingJ/msconfig.htm http://calcul.si.uji.es/Programes/SAS/proc/z0325264.htm http://www.kaos.dk/sexriddle/x/m/k/i/i/ http://ring.toyama-ix.net/archives/lang/perl/CPAN/clpa/1998-08/?N=D http://ring.toyama-ix.net/archives/lang/perl/CPAN/clpa/1998-08/?S=A http://www.spiral.at/Katalog/Artikel/0879070/ http://homepage1.nifty.com/nao~nao/pages/profile.html http://www.ferien-immobilien.de/friesland/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/3d-service/Allgemeine-IB/Startseite/ http://www.ferien-immobilien.de/friesland/verkauf/Gemeinsam/Inserieren/Allgemeine-IB/3d-service/Gemeinsam/erreichenPartner/email3d.htm http://www.thestateofcolorado.com/m1jerepair.html http://www.legis.state.pa.us/WU01/LI/BI/TI/1989/0/MNTENNIS.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1989/0/MNTRASH.HTM http://www.shop4magazines.com/pg004752.htm http://www.shop4magazines.com/pg005070.htm http://www.shop4magazines.com/pg005084.htm http://fi.egroups.com/login.cgi?login_target=%2Fmessage%2Fsocalscan%2F5293 http://www.incestpornstories.com/hot-hardcore-fuckingbanging/bootsfeet-/hitting-itsmacking/{hardcorelink} http://www.columbia.edu/~mkn12/Nominees.html http://www.generation-formation.fr/pdetail.htm---o21zAo06Rxo0Ol9A074fo6s0Md6jIHeNHhIeOkn2ApvFFo6s5dfexiWo2W81N3OsPeaR2VeuzlEdRsR3djaPfdNjfco41qrfP6sWd6wuCoz4ZteOgKHekLVSePl8vNhiWhAhcgNAPfVbdsNhJl.htm http://tiscover.at/1Root/Kontinent/6/Staat/7/Bundesland/20/Ort/212/Sonstige_Sportstaette/276591/Bericht/berw...1.html http://fi.egroups.com/message/meterreader/207?source=1 http://polygraph.ircache.net:8181/services/design/http_-2www.arthritis.org/http_-2www.alameda-vcf.org/http_-2www.microsoft.com/ie/ie.htm http://www.fortunecity.com/lavender/deathrace/251/billy.html http://ftpsearch.belnet.be/packages/CPAN/modules/by-module/AppleII/?N=D http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,34,29,16,25 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=21,34,29,16,25 http://www.ftp.uni-erlangen.de/pub/unix/BSD/FreeBSD/FreeBSD-current/ports/irc/tirc/ http://retailer.gocollect.com/do/session/1912840/vsid/1696/tid/1696/cid/604361/mid/1540/rid/1420/chid/1725/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/company_info/about.asp http://retailer.gocollect.com/do/session/1912840/vsid/1696/tid/1696/cid/604361/mid/1540/rid/1420/chid/1725/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlmo5larLZqVLafpLmiXLvlmHolaLrZqLpl4/url/http://www.gocollect.com/company_info/terms_and_conditions.asp http://businessrecorder.com/story/S0024/S2401/S2401113.htm http://arabia.com/article/0,1690,Sports|20732,00.html http://www.worldmedicus.com/servlet/Controller/$7006041629a50000.sj_viewa/ http://myhome.naver.com/chocobini/company.html http://builder.hw.net/frmMessageFront/1,1079,'1~21~0~8~1~2348~9590',00.html http://pub1.ezboard.com/fcrossstitchcorner504212000shepherdsbushretreat.showAddReplyScreenFromWeb?topicID=48.topic&index=5 http://www.parisnights.de/fanfiction/archive/authors/andrews/stories/bright.htm http://198.103.152.100/search*frc/cCA1+MPR+NS51+98Y25/cca1+mpr+ns51+98y25/7,-1,0,E/2browse http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus51605/eus147927/eus269761/eus269920/eus918452/ http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus51605/eus147927/eus269761/eus269920/eus918493/ http://www.computing.net/cgi-bin/report.pl/windows95/wwwboard/forum/3119.html|21 http://www.kiarchive.ru:8093/pub/misc/books/Camelot/Vasilyev/Forgotten_Road/ http://yp.gates96.com/4/9/50/30.html http://yp.gates96.com/4/9/51/1.html http://yp.gates96.com/4/9/51/88.html http://yp.gates96.com/4/9/51/92.html http://yp.gates96.com/4/9/52/3.html http://yp.gates96.com/4/9/52/53.html http://yp.gates96.com/4/9/52/67.html http://yp.gates96.com/4/9/53/25.html http://yp.gates96.com/4/9/53/50.html http://yp.gates96.com/4/9/53/96.html http://yp.gates96.com/4/9/54/40.html http://yp.gates96.com/4/9/54/57.html http://yp.gates96.com/4/9/54/77.html http://yp.gates96.com/4/9/55/57.html http://yp.gates96.com/4/9/55/71.html http://yp.gates96.com/4/9/56/1.html http://yp.gates96.com/4/9/56/98.html http://yp.gates96.com/4/9/57/6.html http://yp.gates96.com/4/9/57/90.html http://yp.gates96.com/4/9/58/91.html http://yp.gates96.com/4/9/58/96.html http://yp.gates96.com/4/9/59/29.html http://yp.gates96.com/4/9/59/33.html http://yp.gates96.com/4/9/59/84.html http://yp.gates96.com/4/9/59/97.html http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1997/5/0/900308/ http://www2.odn.ne.jp/~cao20970/affair/oh/ha-342 http://www2.odn.ne.jp/~cao20970/affair/oh/ha-346 http://wap.jamba.de/KNet/_KNet-lvH8j1-nGd-13d1j/browse.de/node.0/cdzqggtyb http://www.danielwebster.org//hallofusa/thestampact/HENDRICKFISHER.COM//thestampact/ http://news.cn.tom.com/maya/cnnav/01/item/2000_09/309490.shtml http://polygraph.ircache.net:8181/services/design/http_-2www.paducahrotary.org/pbcmap.htm http://polygraph.ircache.net:8181/services/design/http_-2www.paducahrotary.org/mainpage.htm http://www.debian.org.cn/Bugs/db/23/23547.html http://www.debian.org.cn/Bugs/db/54/54172.html http://www.adetti.iscte.pt/ADETTI/Security/HowTo/Java/jdk1.2.1/docs/guide/beans/spec/beancontext.fm7.html http://www.users.qwest.net/~campputz/page413.htm http://flybird.soyou.edu.cn/item/2000-07-31/164671.html http://www.cognigen.net/corporate/trainers.cgi?full-timer http://www.babyheirlooms.com/catalog/htmlos.cat/041143.1.1156359481 http://ramdam.com/art/k/katerine.htm http://ramdam.com/art/k/krapulax.htm http://aleph.tau.ac.il:4501/ALEPH/eng/ATA/AAM/AAM/SET-MAIL///1249009 http://online.linux.tucows.com/conhtml/adnload/8973_2294.html http://www.arrakis.es/~lady_cel/frcontenf.htm http://online.linux.tucows.com/conhtml/adnload/39034_1349.html http://online.linux.tucows.com/conhtml/adnload/51651_2248.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=23,0+14,0-13,0-13,0 http://www.ferien-immobilien.de/Westerwald/verkauf/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/Gemeinsam/Inserieren/Private-IB/Gemeinsam/suche.htm http://www.linux.com/networking/network/it/alternative/developers/Apple/ http://www.sanxia.net/beauty/Nanako/418.htm http://www-usa8.cricket.org/link_to_database/ARCHIVE/1999-2000/OTHERS+ICC/NORTHANTS_IN_WI/ARTICLES/ http://gds.cc.va.us:8888/Mcn%3dMELISSA%20BACK,%20ou%3dSV.CC.VA.US,%20ou%3dFaculty%20%26%20Staff,%20o%3dvccs,%20c%3dUS http://www.allgemeine-immobilien-boerse.de/nordrhein-Westfalen/luedinghausen/Verkauf/Ferien-IB/Startseite/Gemeinsam/erreichenPartner/Versteigerungen-IB/Startseite/IIM-Teil/Startseite/froben.htm http://198.103.152.100/search*frc/dIndustrial+relations+--+Germany+(West)+--+History/dindustrial+relations+germany+west+history/-5,-1,0,B/frameset&F=dindustrial+relations+germany+dictionaries&1,,0 http://secure.danysoft.com/asp/dany.tienda/892496425/Catalog http://yp.gates96.com/13/57/90/23.html http://yp.gates96.com/13/57/90/91.html http://yp.gates96.com/13/57/91/68.html http://yp.gates96.com/13/57/92/22.html http://yp.gates96.com/13/57/92/49.html http://yp.gates96.com/13/57/92/73.html http://yp.gates96.com/13/57/93/75.html http://yp.gates96.com/13/57/94/16.html http://yp.gates96.com/13/57/94/62.html http://yp.gates96.com/13/57/94/99.html http://yp.gates96.com/13/57/95/19.html http://yp.gates96.com/13/57/95/34.html http://yp.gates96.com/13/57/95/84.html http://yp.gates96.com/13/57/96/22.html http://yp.gates96.com/13/57/96/24.html http://yp.gates96.com/13/57/96/52.html http://yp.gates96.com/13/57/96/70.html http://yp.gates96.com/13/57/97/39.html http://yp.gates96.com/13/57/97/55.html http://yp.gates96.com/13/57/98/4.html http://yp.gates96.com/13/57/98/41.html http://yp.gates96.com/13/57/98/58.html http://yp.gates96.com/13/57/98/98.html http://yp.gates96.com/13/57/98/99.html http://yp.gates96.com/13/57/99/79.html http://carriage.de/Schoner/Info-d/history/literature/literature/ http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/lit/computers/misc/unitest/misc/computers/programs/simple/simple.html http://kwic.tucows.com/partners/flyswat/get_acx.html http://sp201.unige.ch:49213/cxxdoc/ioc/concepts/c2g2rcsm.htm http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=0,2-0,1-21,0+9,1 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=10,2,183 http://firstweb.tucows.com/win2k/adnload/58783_28760.html http://www.boerseninfos.de/dynamic/ak/mk/news/719350-20000830-104827.html http://baseball.mainichi.co.jp/life/family/syuppan/wakaru/wakaru-j/10/01/01.html http://helios.nlib.ee/search*est/dsÃĩjalised+blokid/dsw~ajalised+blokid/-5,-1,0,B/exact&F=dsw~ajalised+konfliktid&1,58/limit http://helios.nlib.ee/search*est/dsÃĩjalised+blokid/dsw~ajalised+blokid/-5,-1,0,B/frameset&F=dsw~ajalised+konfliktid&11,,58 http://lexicon.linux.tucows.com/conhtml/adnload/8642_2088.html http://ua.php.net/manual/es/function.pg-fieldisnull.php http://www.babyheirlooms.com/catalog/htmlos.cat/041132.1.4352706945 http://www.civila.com/guitar/chat/desenredada/juegos/ http://sunsite.org.uk/public/pub/packages/info-mac/pilot/?N=D http://www.aelita.net/products/products/support/news/Reg/Subscribe/company/contact/default.htm http://cn.egroups.com/message/newsclips/295 http://www.jornada.unam.mx/2000/sep00/000922/oriente-y.htm http://members.tripod.co.jp/mosokke/dubair01ghe.html http://202.99.23.245/zdxw/21/20000217/200002172112.html http://link.fastpartner.com/do/session/600412/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/speednames.php http://link.fastpartner.com/do/session/600412/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/nordicliving.php http://link.fastpartner.com/do/session/600412/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php http://iant.subportal.com/sn/Utilities/System_Maintenance_and_Repair_Utilities/2128.html http://polygraph.ircache.net:8181/client/http_-2www.scubaring.com/http_-2www.aaainvestments.com/http_-2www.primenet.com/~stmmoon/stmbik.html http://itcareers.careercast.com/texis/it/itjs/+wwwBme89D86qxwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDanDtoDnnGaMw55wqr15nBB5aoDhdGMwBodDa5nq1GoBOaDnBidGAapGdBdqdc5aGn31oGnmanLpnGonDqnaMFqhTfR20DzmehrwwwpBme26D86eSqwww5rmePdwwwBrmeZpwww/morelike.html http://itcareers.careercast.com/texis/it/itjs/+awwBme3AT+6ezqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDanDtoDnnGaMw55wqr15nBB5aoDhdGMwBodDa5nq1GoBOaDnBidGAapGdBdqdc5aGn31oGnmanLpnGonDqnaMFqhTfR20DzmehrwwwpBme26D86eSqwww5rmeEdwwwBrmeZpwww/jobpage.html http://itcareers.careercast.com/texis/it/itjs/+vwwBme26D86eSqwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewGtmoBGnaqdGpdGwBodDanDtoDnnGaMw55wqr15nBB5aoDhdGMwBodDa5nq1GoBOaDnBidGAapGdBdqdc5aGn31oGnmanLpnGonDqnaMFqhTfR20DzmehrwwwpBme26D86eSqwwwGzmwwww5rmeEdwwwBrmeZpwww/morelike.html http://www.starcities.com/usa/ca/carlsbad/ http://www.3w-geschichten.de/PlumptreGeorge/PlumptreGeorge1857938461.htm http://residence.educities.edu.tw/goyen/ http://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.primenet.com/~mmfact/http_-2www.microsoft.com/ie/download/ http://polygraph.ircache.net:8181/http_-2www.whowhere.com/http_-2www.primenet.com/~mmfact/http_-2www.infohwy.com/odframes.html http://www.linux.com/networking/network/management/industry/internet/services/ http://cn.egroups.com/message/ruosulista/1176 http://ftp.jp.debian.org/debian/dists/unstable/main/binary-i386/tex/?M=A http://de.excite.de/bildung/katalog/17722 http://de.excite.de/bildung/katalog/17893 http://de.excite.de/bildung/katalog/17879 http://www.emerchandise.com/browse/BUFFYTHEVAMP/PIN/b.TV%20BUFFYTHEVAMP/s.Xpiu5LCZ http://variety.studiostore.com/browse/VARIETY/CAMERA/s.dmZspziz http://carriage.de/Schoner/Sammlungen/models/info-e/Info-d/ http://www.gazeta.com/Iso/Plus/Kraj/Prezyden/Ak/700kwa.html http://www.linux.com/networking/network/networking/developers/operating_system/Debian/ http://online.linux.tucows.com/conhtml/adnload/8808_32695.html http://149.221.91.10/news/lokales/wermelskirchen/ http://opac.lib.rpi.edu/search/avirgin+vision+limited/7,-1,0,B/frameset&avirginia+cooperative+fisheries+research+unit&1,1 http://www.emerchandise.com/browse/DISNEY-FAM/ACTIONFI/b.FAVORITES%20KIDSSTUFF%20DISNEY-FAM/s.erm2bF5K http://polit.kulichki.net/moshkow/PXESY/GORIN/ http://polit.kulichki.net/moshkow/COPYRIGHT/stolyarov.txt http://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/textproc/rman/pkg/DESCR http://cgi.www.4tourism.com/uk/wareham65426.html http://cgi.www.4tourism.com/uk/wareham22477.html http://www.ccnet.com/affif/_themes/sumipntg/_vti_cnf/?M=A http://web.tin.it/regionesardegna/ital/lavpubb/bandi_contratti/schema5_1q.htm http://ring.htcn.ne.jp/archives/text/CTAN/macros/latex/contrib/other/apa/ http://ftpsearch.belnet.be/packages/CPAN/modules/by-module/Callback/Callback-1.02.readme http://iant.subportal.com/sn/Utilities/Misc__Utilities/12800.html http://yp.gates96.com/2/51/0/86.html http://yp.gates96.com/2/51/1/72.html http://yp.gates96.com/2/51/2/10.html http://yp.gates96.com/2/51/3/7.html http://yp.gates96.com/2/51/3/50.html http://yp.gates96.com/2/51/4/90.html http://yp.gates96.com/2/51/5/6.html http://yp.gates96.com/2/51/5/42.html http://yp.gates96.com/2/51/5/50.html http://yp.gates96.com/2/51/6/49.html http://yp.gates96.com/2/51/8/12.html http://yp.gates96.com/2/51/8/50.html http://yp.gates96.com/2/51/9/82.html http://yp.gates96.com/2/51/9/94.html http://archive.soccerage.com/s/fr/09/37602.html http://archive.soccerage.com/s/fr/09/39203.html http://ftp.ring.gr.jp/archives/NetBSD/NetBSD-1.4.1/pmax/binary/security/ http://www.yorosiku.net:8080/-_-http://www.us-japan.org/otr/ http://support.dell.com/docs/storage/dlt1/ug/sp/jumpers.htm http://moviestore.zap2it.com/browse/MOVIES/MOUSEPAD/s.uiIfdEiW http://moviestore.zap2it.com/browse/MOVIES/STANDUP/s.uiIfdEiW http://focusin.ads.targetnet.com/ad/id=animeart&opt=cin&cv=210&uid=972942857 http://www.emerchandise.com/browse/SATNIGHTLIVE/SWEATSHI/s.pJ2FFfba http://www.realize.com/p5dee81.htm,qt=e784fe2f=2a38a234-e-1ade986-0-0-0-3-- http://support.tandy.com/support_audio/doc30/30780.htm http://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/umg/chlabel2.html http://sun1.rrzn-user.uni-hannover.de/jgaertner/matlab/help/techdoc/umg/chprin12.html http://www.es.co.nz/~rotary.home.html http://www.excelsior.com.mx/9802/980217/nac18.html http://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/biblioteca1/1316779952/prevarticle http://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/stable/non-free-jp/binary-alpha/net/?D=A http://guest/forestpatholog/diseases/annosus.html http://guest/forestpatholog/diseases/rot.html http://no.egroups.com/message/readbygrade3/2029 http://www.cybercd.de/artist/Fabri,+Stafke.htm http://www.jamba.de/KNet/_KNet-zQG8j1-hGd-13cwi/admLogin.de/node.0/cenv0b09a http://www.digitaldrucke.de/(aktuell,computer,marktplatz,sense,tausch)/_fort/html/themen/computer/computer.htm http://ring.tains.tohoku.ac.jp/pub/linux/debian/debian-jp/dists/potato/contrib-jp/source/news/?S=A http://strategis.ic.gc.ca/sc_indps/recboats/frndoc/3g.html http://ftp.eq.uc.pt/software/unix/Linux/redhat/redhat-6.2/i386/doc/gsg/figs/rpmlite/?M=A http://www.judds-resort.com/judds/Lake-Winni-pike-lodge/upload/upload/photo/fallphoto/boat/12.html http://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/cnwctl/ http://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/mailwrapper/ http://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/traceroute6/ http://ftp.eecs.umich.edu/.7/NetBSD/NetBSD-current/src/usr.sbin/yppoll/ http://pelit.saunalahti.fi/.3/linuxberg/conhtml/preview/8785.html http://www.asahi-net.or.jp/~rz3n-snd/kitakan/kamiyosida.html http://www.chaos.dk/sexriddle/s/e/x/q/x/k/l/ http://www.chaos.dk/sexriddle/s/e/x/q/x/k/y/ http://ring.jec.ad.jp/archives/text/CTAN/dviware/umddvi/libcompat/?S=A http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/OCtIhwK0_lecIJU9yN87J4DTFWqXdztVO8nfP1zxdwq79fkod_IhHN3-iHbCrlaXZ5ATMMc_Gb5Zt_RdtVOloKJ1Z7DGqz2vE9vOjESyOqryETO-lNa0NWtCoTJH_QGCfq7ss5VGa1MO3iLryKZ2gIVI_Lonfx_bC9m7 http://seniorfriendfinder.com/cgi-bin/w3com/pws/ffsenior/D-tI2p4N__5TTgffRqVzdrKNYFZc3jj2Oatw29gt_YiNBPXUlYZaTA2ndP2CrwlrdiMS8YzPKxDR7Vp4ZBqD3d5o3MwYrYIxk31YsVtP3yFS2bLdZcBGLKdyNUc9yYgvGsGMXAMcEAUJPjtRqUVzDpuhHzS6V_U76I6G http://my.egroups.com/subscribe/enemapix http://yp.gates96.com/0/23/40/60.html http://yp.gates96.com/0/23/40/82.html http://yp.gates96.com/0/23/41/67.html http://yp.gates96.com/0/23/43/71.html http://yp.gates96.com/0/23/43/75.html http://yp.gates96.com/0/23/44/64.html http://yp.gates96.com/0/23/44/73.html http://yp.gates96.com/0/23/44/84.html http://yp.gates96.com/0/23/45/19.html http://yp.gates96.com/0/23/46/9.html http://yp.gates96.com/0/23/46/26.html http://yp.gates96.com/0/23/46/37.html http://yp.gates96.com/0/23/46/92.html http://yp.gates96.com/0/23/47/39.html http://yp.gates96.com/0/23/47/52.html http://yp.gates96.com/0/23/48/52.html http://yp.gates96.com/0/23/49/12.html http://yp.gates96.com/0/23/49/90.html http://retailer.gocollect.com/do/session/1912812/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/help/index.asp http://retailer.gocollect.com/do/session/1912812/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/sports/index.asp http://203.93.50.148:2222/*0110http://www.snweb.com/gb/people_daily/2000/10/20/i1020004.htm http://cn.egroups.com/messages/romtrade/5024 http://members.tripod.co.jp/medo/_private/ http://dbc.copystar.com.tw/DelphiChat/200001/msg0325.htm http://tucows.pi.be/winnt/diskcnt_license.html http://millennium.fortunecity.com/ruthven/144/5041.htm http://news.pchome.com.tw/ttv/finance/20000616/ http://library.bangor.ac.uk/search/dEcology+--+Poland+--+Periodicals/decology+poland+periodicals/-17,-1,0,B/frameset&F=decology+north+america+congresses&1,1 http://www.could.be/travel/north_america/united_states/lodge_2.htm http://genforum.genealogy.com/cgi-bin/print.cgi?huntington::195.html http://www.bemi-immobilien.de/Ferien-IB/Startseite/Gemeinsam/immolink/Gemeinsam/MarketingStrategie/Gemeinsam/erreichenPartner/Gemeinsam/3d-service/Top-Darlehens-Konditionen/anforderungsformular.htm http://members.tripod.co.jp/snowmen/?D=A http://ftp.unicamp.br/pub/FAQ/sf/alt_history/part6 http://www.affiliate.hpstore.hp.co.uk/do/session/380884/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp http://grid9.linux.tucows.com/x11html/adnload/9444_3744.html http://www.linux.com/networking/network/communications/tools/web/support/ http://www.linux.com/networking/network/communications/tools/web/alternative/ http://cometweb01.comet.co.uk/do!tid=20&rtid=1&vsid=700&session=132030&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplGGolLarZLq4fLpmiLXv-KmooLckYLoznGmpq0qsc0mojLbkYLozvGotc0ZdoLckYLozvGsmv0qmc0jXfLkVZLdocLkYoLzcj1XfkLVZXLqkXLjbzKcob5qroLkVrLoizKlZd5fjYHfklKkZlLjjbLoZbLpl51ubZLDXZLollK3ljLbqlKjXfLkkaHotl4obmLloqL http://yp.gates96.com/14/77/20/1.html http://yp.gates96.com/14/77/20/3.html http://yp.gates96.com/14/77/20/32.html http://yp.gates96.com/14/77/20/55.html http://yp.gates96.com/14/77/21/7.html http://yp.gates96.com/14/77/22/20.html http://yp.gates96.com/14/77/22/26.html http://yp.gates96.com/14/77/22/50.html http://yp.gates96.com/14/77/23/63.html http://yp.gates96.com/14/77/23/96.html http://yp.gates96.com/14/77/25/53.html http://yp.gates96.com/14/77/26/8.html http://yp.gates96.com/14/77/26/32.html http://yp.gates96.com/14/77/27/0.html http://yp.gates96.com/14/77/27/55.html http://yp.gates96.com/14/77/27/78.html http://yp.gates96.com/14/77/28/8.html http://yp.gates96.com/14/77/28/53.html http://yp.gates96.com/14/77/28/57.html http://yp.gates96.com/14/77/28/99.html http://yp.gates96.com/14/77/29/96.html http://mirror.nucba.ac.jp/mirror/FreeBSD/FreeBSD-stable/ports/cad/xcircuit/files/?D=A http://pub3.ezboard.com/BBSForum.showForumSearch?boardName=jenxforum&forumName=jenxforumfrm0 http://genforum.genealogy.com/cgi-genforum/forums/hi.cgi?415 http://elib.zib.de/pub/opt-net/msc/msc-90-xx/90c15/v93w20n4 http://biblio.cesga.es:81/search*gag/aDittrich,+Stefan/adittrich+stefan/-5,-1,0,E/frameset&F=adittman+richard+h+coaut&1,,0 http://biblio.cesga.es:81/search*gag/aDittrich,+Stefan/adittrich+stefan/-5,-1,0,E/frameset&F=adittmar+jorge&1,1 http://biblio.cesga.es:81/search*gag/aDittrich,+Stefan/adittrich+stefan/-5,-1,0,E/exact&F=adivis+jan&1,4 http://www.doc.ic.ac.uk/~gwsb98/bucket/Wine-20001026/etc/?D=A http://news.fm365.com/xinwen/guoji/20000531/72641.htm http://www.newquestcity.com/templates/eventout.cfm?nqc=TN0730 http://www.rhena.de/kempinsk1.htm http://www.jamba.de/KNet/_KNet-tkL8j1-PGd-13dss/showInfo-wir.de/node.0/cenvd8eze http://www.jamba.de/KNet/_KNet-tkL8j1-PGd-13dsv/browse.de/node.0/ceo0fdeye http://cpan.nitco.com/modules/by-module/String/BLCKSMTH/?N=D http://www.digitaldrucke.de/(hilfe,nuernberg)/_fort/html/themen/computer/soft/links/intuit.htm http://www.jeunesdocteurs.com/fplr/56/08.html http://simf1.tripod.com/Rio.htm http://www.mirror.kiev.ua:8083/paper/1998/17/1251/people.htm http://web2.sportsline.com/u/baseball/mlb/2000PO_stats/tpSTLw.htm http://www15.freeweb.ne.jp/art/charukun/yusuke.htm http://map.ipc.co.jp/asp/onmap/r/new/g-24/f-905972/ http://www.affiliate.hpstore.hp.co.uk/do/session/380882/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp http://www.webcrawler.com/education/arts_and_humanities/visual_arts/art_history/c19th/arts_and_crafts/mackintosh_cr/structures/ http://polygraph.ircache.net:8181/wwwboard/http_-2www.microsoft.com/msoffice/frontpage/http_-2www.linkstar.com/home/partners/marketlink-international-inc http://polygraph.ircache.net:8181/wwwboard/http_-2www.microsoft.com/msoffice/frontpage/ECA2.htm http://polygraph.ircache.net:8181/wwwboard/http_-2www.microsoft.com/msoffice/frontpage/http_-2www.intac.com/~dversch/catalog.html http://excite.de.netscape.com/kunst/katalog/24315 http://www.outpersonals.com/cgi-bin/w3com/pws/out/KhhIzVYqtXJlJzGPqrqzbJbUw7ERB8P7PSm9mTaj3BkJF6tLfllGlz2yKgLweoM1LPKLdHjjKv8zfb9tb2yojpTmzt6264ZE3V9vWzxY1mZnhDOG1vlwPrnwH5OCJM6C98fbjgZX66II http://mirror.nucba.ac.jp/mirror/Netscape/netscape6/french/6_PR2/windows/win32/?S=A http://www.linux.com/networking/server/install/howto/red_hat/package/ http://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/proof/972959618-- http://brain.brent.gov.uk/WebPages.nsf/vWebAllPagesByKey!OpenView&Start=97&Count=60&Expand=152 http://i-mode.kakiko.com/deaitomo/mag/magurox/1405b.html http://www.ring.gr.jp/pub/NetBSD/arch/amiga/snapshot/20000115-1.4P/binary/security/ http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=18,0+20,0-17,0-0,0 http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/www/anoncvs.html?annotate=1.2&sortby=rev http://ftp.jp.debian.org/debian/dists/woody/non-free/binary-sh/hamradio/?M=A http://netscape.complete-skier.com/resorts/survey/submit.asp?ResortID=772 http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=9,17,2,16,5,14 http://www.egroups.com/messages/zingiber/238 http://www.umr.edu/~rhall/class/sap/sap8/demo.html http://209.207.239.212/bkindex/c1043/f1202.html http://se.egroups.com/message/ackmud/104 http://school.educities.org/card/cug55.html http://school.educities.org/card/wgl.html http://school.educities.org/card/a77125.html http://school.educities.org/card/apple6128.html http://school.educities.org/card/c369852.html http://school.educities.org/card/cges4216.html http://school.educities.org/card/cges6307.html http://school.educities.org/card/eaa.html http://school.educities.org/card/f129235832.html http://school.educities.org/card/g1546.html http://school.educities.org/card/h223422022.html http://school.educities.org/card/lemon6112.html http://school.educities.org/card/st6408.html http://www.dulux.co.uk/UKRETAIL:1243142410:DFinity.1QJiP4jRACol http://www.iagora.com/pages/bbaddpost/::bb_id=148:mid=43302:thread_id=8185:parent_id=43302::lang=de http://www.iagora.com/pages/bbaddpost/::bb_id=148:mid=43431:thread_id=8185:parent_id=43431::lang=de http://www.egroups.com/message/intelligent_humor/875 http://club.telepolis.com/klvinbc/fotosb.htm http://plat.debian.or.jp/debian/dists/woody/non-free/binary-mips/editors/?D=A http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,12,63 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,12,237 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=207&discrim=3,12,120 http://www.jamba.de/KNet/_KNet-_tJ8j1-AGd-13ddq/browse.de/node.0/cdel3j591 http://immihelpdownloads.subportal.com/sn/Utilities/System_Analysis_Utilities/2980.html http://dwp.bigplanet.com/crestinginc/discussion/edit.nhtml http://dwp.bigplanet.com/crestinginc/discussion/list.nhtml?profile=discussion http://194.128.65.4/pa/cm199900/cmwib/wb991127/ahead.htm http://61.128.218.34/book/hhsh/wu/wolongsheng/jiangxue/055.htm http://gd.cnread.net/cnread1/wgwx/t/tuwen/kxj/035.htm http://gd.cnread.net/cnread1/wgwx/t/tuwen/kxj/041.htm http://www.redrocksports.com/sports/webSession/shopper/RR972959743-31143/store/dept-5/department/dept-5/item/50110 http://www.redrocksports.com/sports/webSession/shopper/RR972959743-31143/store/dept-5/department/dept-5/item/51530 http://www.redrocksports.com/sports/webSession/shopper/RR972959743-31143/store/dept-5/department/dept-5/item/51510 http://www.yorku.ca/org/yusa/who99/wh02.html http://www1.onelist.com/message/ar8200/3350 http://www.kodak.se/US/en/corp/features/kern/jodi/index.shtml http://cafe3.daum.net/Cafe-bin/Bbs.cgi/semtle15pds/rnw/zka/B2-kB27k http://my.egroups.com/messages/dcfwriters/187?expand=1 http://link.fastpartner.com/do/session/600414/vsid/1970/tid/1970/cid/135878/mid/1060/rid/1488/chid/1970/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/gosafe.php http://www.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/20/Ort/108147/Bauernhof/315126/Homepage/f_homepage...2.html http://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/net/gnut/patches/?D=A http://www.mtranslations.cz/40/cs/dictionary/dictionary_index.html http://pub10.ezboard.com/BBSSystem.handleLoginCheck?action=forgotPassword&boardName=alakazamslair http://tour.stanford.edu/cgi/locate3.prl/139.6/jMtlo http://www.shopworks.com/index.cfm/action/search/userid/00042DDE-2F63-19FE-9038010B0A0ADCF2 http://thestar.com/back_issues/ED20001004/life/20000820LFE01_AH-BATH.html http://thestar.com/back_issues/ED20001004/life/20000818LFE01_LI-DEPRESS.html http://thestar.com/back_issues/ED20001004/life/20000806LFE01_AH-DAHLIAS.html http://www.hole.kommune.no/hole/journweb.nsf/7e180336094ef23a412568cd004a5093/466e7592a4c6c7ccc12568e3004402e8!Navigate&To=Prev http://mailthat.subportal.com/sn/Multimedia_and_Graphics/Graphics_Editors/3752.html http://www.gbnf.com/genealogy/rockwel4/html/d0014/I6348.HTM http://www.lookforforestry.com/catalog/FORSALE/FORKLIFT/JCB/930RTFL/ http://www.espl.org/mearscol/pagendxs/stockley/d1828.htm http://in.egroups.com/messages/eyecandy/1290 http://in.egroups.com/message/eyecandy/1264 http://in.egroups.com/message/eyecandy/1271 http://www.ferien-immobilien.de/bayern/deggendorf/Verkauf/Exklusiv-IB/Startseite/3d-service/Gemeinsam/Immolink/Gemeinsam/vertriebspartner.htm http://linux99.inrialpes.fr/linux/RPM/redhat/6.2/i386/Distribs.html http://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=4,13,11,10 http://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/1997-98/jmc1/labs/Ex04/jwb97/?S=A http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/folderFrame/100001/0/alpha/2509069 http://www.scifi.com/bboard/browse.cgi/1/5/545?lnum=4223 http://www.fogdog.com/cedroID/ssd3040183304719/customer_service/ http://www.fogdog.com/cedroID/ssd3040183304719/nav/products/winter_sports/1b/suits/ http://www.gpul.org/ftp/lang/java/JDK/jdk1.1.6-docs/api/java.lang.Math.html http://www.gpul.org/ftp/lang/java/JDK/jdk1.1.6-docs/api/java.lang.IncompatibleClassChangeError.html http://www.staroriental.net/nav/soeg/ihf,aai,n2,418,Electric+Wave+Girl+1998.html http://www.parentsplace.com/expert/lactation/basics/qa/0,3459,5757,00.html http://www.francetrade.fr/opcvm/details/4/44200.html http://www.francetrade.fr/opcvm/details/4/42876.html http://genforum.genealogy.com/cgi-bin/print.cgi?phillippines::319.html http://www.affiliate.hpstore.hp.co.uk/do/session/380860/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-photoworld.com/photoworld.asp?lang=f http://ftp.eq.uc.pt/software/unix/Linux/docs/HOWTO/translations/italian/distributions/?M=A http://store1.europe.yahoo.com/brink2/2000074017704.html http://store1.europe.yahoo.com/brink2/2000073276003.html http://www.cbe21.com.cn/xueke/dili/jiaoxuezs/ziliaojn/tupianhc/i0733.htm http://www.networkpatternmatching.com/inventory/L/Limoges-American/Limoges-American-Tea-Rose-(Green).html http://www.networkpatternmatching.com/inventory/L/Limoges-American/Limoges-American-Toledo-Delight-(Sand).html http://ftp.debian.org/dists/sid/non-free/binary-hppa/games/?M=A http://www.angelfire.com/vt/kAoZzZ http://yp.gates96.com/14/28/60/15.html http://yp.gates96.com/14/28/60/17.html http://yp.gates96.com/14/28/60/41.html http://yp.gates96.com/14/28/60/75.html http://yp.gates96.com/14/28/60/83.html http://yp.gates96.com/14/28/60/87.html http://yp.gates96.com/14/28/61/96.html http://yp.gates96.com/14/28/62/12.html http://yp.gates96.com/14/28/62/28.html http://yp.gates96.com/14/28/62/45.html http://yp.gates96.com/14/28/62/74.html http://yp.gates96.com/14/28/63/24.html http://yp.gates96.com/14/28/63/45.html http://yp.gates96.com/14/28/64/33.html http://yp.gates96.com/14/28/65/84.html http://yp.gates96.com/14/28/66/28.html http://yp.gates96.com/14/28/66/49.html http://yp.gates96.com/14/28/67/15.html http://yp.gates96.com/14/28/67/17.html http://yp.gates96.com/14/28/67/92.html http://yp.gates96.com/14/28/67/95.html http://yp.gates96.com/14/28/68/10.html http://yp.gates96.com/14/28/69/20.html http://yp.gates96.com/14/28/69/64.html http://yp.gates96.com/14/28/69/74.html http://www.cs.kuleuven.ac.be/documentation/Sun/WorkShop/html_docs/c-plusplus/stdlibcr/deq_4164.htm http://no.egroups.com/message/Holiday-Best/571?source=1 http://www.outpersonals.com/cgi-bin/w3com/pws/out/G1hIPcWIQWr-i3fHpjDuaPPPdDR9n25II-MFpjX9vR_df0A3ukwPXLd19bYe7oxRH5Zr5z3G_wJnwM6gAVSOlRUN-p5MKYEBVJa1T-GaZS44Z98yjSST2LfXzEdc9Xqp8W0jRiNL6iAX http://msn.expedia.co.uk/wg/Asia/China/P31642.asp http://www.angelfire.com/fl2/gulfcoastsoftball/images/?N=D http://www.greenleaves.com/bookcat/gb_0879513802.html http://cn.egroups.com/post/Digitrends_Daily?act=reply&messageNum=210 http://www.bookhome.net/wuxia/hzlz/li/031.html http://gb.toget.com.tw/intro/game_action/game_action_click/19990804_3190_dl.html http://www.mbnet.mb.ca/gray/cgrcc.html http://www.civila.com/noticias/chat/logos/juegos/esgratis/logos/index.html-ssi http://www.ytmag.com/cgi-bin/redirect.cgi/1197948180 http://debian.tod.net/debian/dists/sid/contrib/binary-arm/admin/?M=A http://haste.co.kr/www.amaquest.com.tw/support.htm http://www.diogenes.ch/4DACTION/web_rd_aut_frlist_az/ID=483376&chr=A http://ads.neoseeker.com/remoteclick/GB972959289/ http://urawa.cool.ne.jp/whoinside/cg/cgframe2.htm http://excite.de/bildung/katalog/33148 http://plat.debian.or.jp/debian-archive/dists/Debian-2.0/hamm/binary-m68k/news/ http://wwwpriv.uni-koblenz.de:81/~admin/Doku/HtmlTutor/tcdkc.htm http://platsbanken.amv.se/kap/text/62/000907,150090,120901,40,1427050362.shtml http://216.35.79.131/sites/gunits/022140u.html http://www.hotelboulevard.com/fr/paris/standard/htmle55cd396d0d1450ad1eddadf65bd6574/sessionLang/ANG/prov/browse/cp/75011/resultatSearch.html http://www.ftp.uni-erlangen.de/cgi-bin/view/pub/unix/Linux/MIRROR.KDE/unstable/apps/README http://www.ftp.uni-erlangen.de/pub/unix/Linux/MIRROR.KDE/unstable/apps/network/ http://www.ycwb.com.cn/gb/2000/04/28/dnzk/itkx/3.html http://polygraph.ircache.net:8181/http_-2www.microsoft.com/guestbook/http_-2www.nmpinc.com/cfiguest.htm http://www.our-home.org/giulianovallemani/success.htm http://retailer.gocollect.com/do/session/1912838/vsid/2312/tid/2312/cid/573127/mid/1020/rid/2147/chid/2210/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlZe5ofpLqjXLpl4/url/http://www.gocollect.com/product_display/products/product_lines.asp http://binary.tucows.com/win2k/adnload/60913_29719.html http://www.allhealth.com/kickbutt/qa/0,4801,6565_168263-1,00.html http://library.cuhk.edu.hk/search*chi/tChinese+history+series.+[Motion+picture]/tchinese+history+series/-5,1,1,B/frameset&F=tchinese+history+index+to+learned+articles+1902+1962&1,1, http://cafe4.daum.net/Cafe-bin/Bbs.cgi/culturalistpds/lst/qqeq/1/zka/B2-kB27p http://lib1.nippon-foundation.or.jp/1997/0012/contents/086.htm http://members.tripod.com/~theernest/lit/long.html http://de.excite.de/auto/katalog/13030 http://www.szinfo.com/book/ke/fam/nk1/wlsf/001.htm http://www.backflip.com/members/cquinn/466730/sort=1/ http://130.158.208.53/WWW/PDB2/PCD4711/htmls/49.html http://astronomysite.com/mapug1/15/msg15752.htm http://astronomysite.com/mapug1/15/msg15922.htm http://astronomysite.com/mapug1/15/msg15970.htm http://astronomysite.com/mapug1/12/msg12909.htm http://astronomysite.com/mapug1/9/msg9909.htm http://astronomysite.com/mapug1/7/msg7248.htm http://astronomysite.com/mapug1/7/msg7288.htm http://astronomysite.com/mapug1/7/msg7300.htm http://astronomysite.com/mapug1/7/msg7277.htm http://astronomysite.com/mapug1/3/msg3386.htm http://astronomysite.com/mapug1/0/msg898.htm http://astronomysite.com/mapug1/2/msg2146.htm http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/x11-fm/systemg/pkg/Attic/DESCR http://www.posterwelt.de/byers/bye2506.htm http://www.5a8.com/book/wg/zpj/f/fajieyefu/huimie/003.htm http://www.5a8.com/book/wg/zpj/f/fajieyefu/huimie/015.htm http://businessrecorder.com/story/S0015/S1510/top http://sunsite.org.uk/Mirrors/ftp.microsoft.com/bussys/winnt/winnt-public/fixes/usa/nt351/hotfixes-postsp5/sec-fix/?S=A http://sunsite.org.uk/Mirrors/ftp.microsoft.com/bussys/winnt/winnt-public/fixes/usa/nt351/hotfixes-postsp5/sec-fix/readme.txt http://www.angelfire.com/ky/dodone/HistJ.html http://www.cricinfo.com/link_to_database/ARCHIVE/1997-98/WI_IN_PAK/WI_IN_PAK_NOV-DEC1997_WI-SQUAD.html http://www.egroups.com/message/-Girlhelp-/3251 http://www.egroups.com/message/-Girlhelp-/3268 http://202.130.244.3/wuliwangye/help/help.htm http://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/mirror.html http://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/s20ghinelli.html http://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/s25dress.html http://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/s30wen.html http://ftp.gwdg.de/pub/EMIS/EMS/journals/SLC/divers/slc41email.html http://guardian.co.uk/Print/0,3858,3889048,00.html http://genforum.genealogy.com/mccallum/messages/187.html http://genforum.genealogy.com/mccallum/messages/192.html http://genforum.genealogy.com/mccallum/messages/133.html http://genforum.genealogy.com/mccallum/messages/95.html http://genforum.genealogy.com/mccallum/messages/82.html http://genforum.genealogy.com/mccallum/messages/30.html http://dekooi.tucows.com/win2k/adnload/37333_29427.html http://dekooi.tucows.com/win2k/adnload/37624_29418.html http://dekooi.tucows.com/win2k/preview/139483.html http://www.zurich-schweiz.ch/static/it/peraziende/grandiimprese/riskmanagement/procedere_con_metodo/gestione_del_rischio/ http://cn.egroups.com/login.cgi?login_target=%2Fmessage%2Fcertdev%2F373 http://www.angelfire.com/pa2/DreamAvs/ http://www.madisonmag.com/sh/entertainment/stories/entertainment-20000713-013454.html http://variety.studiostore.com/browse/WHATSNEW/SHIRT/b.FAVORITES%20WHATSNEW/s.GqXR0UHu http://variety.studiostore.com/browse/WHATSNEW/MUG/b.FAVORITES%20WHATSNEW/s.GqXR0UHu http://www.ecs.soton.ac.uk/~ecc/teaching/java/ExampleCode/Chapter10/s03/ http://ftp.nacamar.de/pub/NetBSD/packages/1.4/alpha/cross/?M=A http://www.he.ctc.org.cn/ctc2/news/internet/develop/news0413-7.htm http://www.he.ctc.org.cn/ctc2/news/internet/invest/news0523-4.htm http://www.he.ctc.org.cn/ctc2/news/internet/invest/news0514-1.htm http://www.he.ctc.org.cn/ctc2/news/internet/politics/news0518-1.htm http://www.linux.com/networking/network/applications/industry/trade_show/internet/ http://www.linux.com/networking/network/applications/industry/trade_show/Motorola/ http://www.linux.com/networking/network/applications/industry/trade_show/distro/ http://iinet.tukids.tucows.com/mac/5-8/macmulti58_license.html http://www.leg.wa.gov/pub/rcw%20-%20text/title_48/chapter_098/rcw_48_98_005.txt http://universal.eud.com/1999/02/28/28304AA.shtml http://www.firstview.com/WRTWfall97/MAX_MARA/P033.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/SOSIAALI-+JA+TERVEYSALA/tietoverkot/suositukset/tietotekniikka/sanat/getdoc.akM?document_id=479 http://l-infonet.phkk.fi/fi/TIETOPALVELUT/SOSIAALI-+JA+TERVEYSALA/tietoverkot/suositukset/tietotekniikka/sanat/www/ http://ns.studenti.to.it/~s86852/applets/tetris.htm http://www.egroups.com/message/grebel-list/1014 http://emedici.net/www.homesbyavi.com/canadian_site/communities/evergreen/evergreen.html http://ring.toyama-ix.net/pub/net/wu-ftpd/wu-ftpd/binaries/?N=D http://ring.nii.ac.jp/archives/text/CTAN/support/vmspell/?N=D http://ftpsearch.belnet.be/packages/CPAN/modules/by-authors/John_Macdonald/CHECKSUMS http://students.depaul.edu/~eephrem/piazza123 http://students.depaul.edu/~eephrem/maqdoomi.html http://ftp.unina.it/pub/Unix/KDE/stable/2.0/distribution/deb/?D=A http://www.dulux.co.uk/UKRETAIL:1433075516:DFinity.1QJiP4jMofi7bof http://yp.gates96.com/14/20/10/26.html http://yp.gates96.com/14/20/10/34.html http://yp.gates96.com/14/20/10/63.html http://yp.gates96.com/14/20/11/36.html http://yp.gates96.com/14/20/11/73.html http://yp.gates96.com/14/20/12/93.html http://yp.gates96.com/14/20/13/42.html http://yp.gates96.com/14/20/13/44.html http://yp.gates96.com/14/20/14/9.html http://yp.gates96.com/14/20/15/62.html http://yp.gates96.com/14/20/15/77.html http://yp.gates96.com/14/20/16/52.html http://yp.gates96.com/14/20/16/70.html http://yp.gates96.com/14/20/16/83.html http://yp.gates96.com/14/20/17/91.html http://yp.gates96.com/14/20/17/98.html http://yp.gates96.com/14/20/18/8.html http://yp.gates96.com/14/20/18/73.html http://yp.gates96.com/14/20/19/38.html http://yp.gates96.com/14/20/19/42.html http://yp.gates96.com/14/20/19/56.html http://www.wco.com/~havok/wellington.html http://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bbm0019678/7,-1,0,E/frameset&F=bbm0019685&1,1 http://cdrom.zeelandnet.nl/elfsound/archief.htm http://businessrecorder.com/story/S0055/S5527/top http://www.private-immobilien-boerse.de/DominikanischeRep/verkauf/Versteigerungen-IB/Startseite/Gemeinsam/GmbH-Kauf-Verkauf-Insolvenz-konkurs/Startseite/IIM-Teil/Startseite/froben.htm http://ring.nii.ac.jp/archives/lang/perl/CPAN/doc/manual/html/pod/perlfunc/utime.html http://yp.gates96.com/14/21/10/71.html http://yp.gates96.com/14/21/11/15.html http://yp.gates96.com/14/21/12/55.html http://yp.gates96.com/14/21/12/58.html http://yp.gates96.com/14/21/13/94.html http://yp.gates96.com/14/21/14/7.html http://yp.gates96.com/14/21/14/12.html http://yp.gates96.com/14/21/14/32.html http://yp.gates96.com/14/21/14/96.html http://yp.gates96.com/14/21/15/3.html http://yp.gates96.com/14/21/15/51.html http://yp.gates96.com/14/21/16/32.html http://yp.gates96.com/14/21/16/87.html http://yp.gates96.com/14/21/17/19.html http://yp.gates96.com/14/21/17/31.html http://yp.gates96.com/14/21/18/15.html http://yp.gates96.com/14/21/18/68.html http://yp.gates96.com/14/21/19/56.html http://cafe2.daum.net/Cafe-bin/Bbs.cgi/kjbugopds/lst/qqa/f/zka/B2-kB2Rt http://legalminds.lp.findlaw.com/list/courtinterp-spanish/frm04580.html http://legalminds.lp.findlaw.com/list/courtinterp-spanish/frm04611.html http://genforum.genealogy.com/cgi-genforum/forums/sweden.cgi?5207 http://variety.studiostore.com/main/b.FAVORITES%20NOSTALGI%20CLASTV%20ILOVELUCY/s.VfgR3aEr http://variety.studiostore.com/help/b.FAVORITES%20NOSTALGI%20CLASTV%20ILOVELUCY/s.VfgR3aEr http://bsd.sinica.edu.tw/cgi-bin/cvsweb.cgi/ports/x11-clocks/xalarm/patches/Attic/patch-aa?only_with_tag=RELEASE_2_2_8 http://gd.cnread.net/cnread1/ztxs/h/henggouzhengshi/eld/013.htm http://gd.cnread.net/cnread1/ztxs/h/henggouzhengshi/eld/022.htm http://gd.cnread.net/cnread1/ztxs/h/henggouzhengshi/eld/024.htm http://ftp.unina.it/pub/Amiga/NetBSD/NetBSD-current/xsrc/xc/lib/xkbfile/?N=D http://202.99.23.245/zdxw/17/20000217/200002171734.html http://sunsite.org.uk/packages/netbsd/NetBSD-current/pkgsrc/net/batchftp/files/ http://www.highwired.net/Activity/PrintArticle/0,1640,1326-186648,00.html http://phpbuilder.net/forum/archives/1/2000/10/1/104426?&print_mode=1 http://www.cognos.co.uk/de/vertriebspartner/vertriebspartner_plz.html http://citeseer.nj.nec.com/cidcontext/3974259 http://fi.egroups.com/message/free-classifieds/4556?source=1 http://genforum.genealogy.com/cgi-genforum/forums/epler.cgi?2 http://no.egroups.com/post/relations_iVillage?act=reply&messageNum=5 http://198.103.152.100/search*frc/lHD69+P75H84/lhd+++69+p75+h84/-5,-1,0,E/frameset&F=lhd+++69+p75+k47+1984&1,1 http://www.4positiveimages.com/4positiveimages/921456486/UserTemplate/2 http://haha.3322.net/donghua/agui/adi/6.htm http://mediate.magicbutton.net/do/session/625591/vsid/4573/tid/4573/cid/88043/mid/2247/rid/2383/chid/3527/url/http://www.winesmart.com/CaseDetails.asp?idCase=66 http://www.lettera.de/tp/deutsch/inhalt/lis/8676/1.html http://www.citybrazil.com.br/sc/regioes/joinville/expressoes.htm http://webcvs.kde.org/cgi-bin/cvsweb.cgi/www/food/worse_is_better.html?sortby=date http://yp.gates96.com/7/45/60/13.html http://yp.gates96.com/7/45/61/3.html http://yp.gates96.com/7/45/61/60.html http://yp.gates96.com/7/45/62/37.html http://yp.gates96.com/7/45/62/48.html http://yp.gates96.com/7/45/62/70.html http://yp.gates96.com/7/45/64/9.html http://yp.gates96.com/7/45/64/33.html http://yp.gates96.com/7/45/64/43.html http://yp.gates96.com/7/45/64/55.html http://yp.gates96.com/7/45/65/14.html http://yp.gates96.com/7/45/65/48.html http://yp.gates96.com/7/45/65/57.html http://yp.gates96.com/7/45/66/27.html http://yp.gates96.com/7/45/67/51.html http://yp.gates96.com/7/45/68/12.html http://yp.gates96.com/7/45/68/78.html http://yp.gates96.com/7/45/69/25.html http://www.msb.malmo.se/search*swe/aHarley,+Robert/aharley+robert/-5,-1,0,B/browse http://www.superdownloads.com.br/linkinvalido.cfm?ID=748 http://linuz.sns.it/doc/howto/en/html/AI-Alife-HOWTO-6.html http://www.linux.com/networking/network/market/tools/applications/ http://www.linux.com/networking/network/market/tools/frame_relay/ http://www.linux.com/networking/network/market/tools/e-commerce/ http://opac.lib.ntnu.edu.tw/search*chi/aUnited+Nations.+Dept.+of+Economic+and+Social+Affairs/aunited+nations+dept+of+economic+and+social+affairs/7,-1,0,B/frameset&F=aunited+nations+economic+and+social+commission+for+asia+and+the+pacific&6,,7 http://www.affiliate.hpstore.hp.co.uk/do/session/380863/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp http://www.affiliate.hpstore.hp.co.uk/do/session/380863/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/entry.asp http://www.shmoo.com/mail/ids/oct99/msg00288.html http://bsd.sinica.edu.tw/ftp_pub/NetBSD/packages/1.3/hp300/?M=A http://bsd.sinica.edu.tw/ftp_pub/NetBSD/packages/1.3/hp300/archivers/ http://www.affiliate.hpstore.hp.co.uk/do/session/380868/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/REGISTRATION/entry.asp http://www.insideneworleans.com/shared/health/adam/ency/imagepage/1562.000872.html http://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/devel/xxgdb/patches/patch-ac http://genforum.genealogy.com/casey/messages/327.html http://genforum.genealogy.com/casey/messages/164.html http://genforum.genealogy.com/casey/messages/337.html http://genforum.genealogy.com/casey/messages/73.html http://genforum.genealogy.com/casey/messages/57.html http://genforum.genealogy.com/casey/messages/50.html http://genforum.genealogy.com/casey/messages/23.html http://genforum.genealogy.com/casey/messages/116.html http://www.msb.malmo.se/search*swe/aNorman,+Karin,+1947-/anorman+karin+1947/-5,-1,0,B/frameset&F=anorman+leslie&1,1 http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/rnumber/9096335 http://www.mindspring.com/~arachnid/?S=D http://www6.freeweb.ne.jp/business/n-bns/hre/ http://news.swww.com.cn/wccdaily/review/200005/29/html/0908.htm http://tucows.hom.net/croomnt_rating.html http://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/1AS/A4L/A4D/B1R/ http://www.trax.nilex.co.uk/trax.cgi/A1C/A2S/1AS/A4L/A4D/A5L/ http://www.5a8.com/book/kh/zg/zpj/h/heju/001.htm http://www.5a8.com/book/kh/zg/zpj/h/heju/002.htm http://www.luckyman.de/computer/hpaccess/java_cgi/java_applet/linien/applet_linien_nav1.htm http://www.secure-me.net/information/kb/POP http://in.egroups.com/message/BodybuildingContests/2804 http://in.egroups.com/message/BodybuildingContests/2820 http://in.egroups.com/message/BodybuildingContests/2822 http://theconnection.vnunet.com/Analysis/Stfriend/70206 http://www.yorosiku.net:8080/-_-http://www.nrcse.washington.edu/newsletter/newsletter.pdf http://www.britishairways.nl/regional/barbados/docs/spec_world_offer.shtml http://www.xmwb.sh.cn/xmwb/19981117/BIG5/13421^4111719.htm http://www.z-plus.de/TEXTE/HOMEPAGE/HILFE/HILFE_SURFTIPS201099/text5.html http://uzgamez.subportal.com/games/previews/0900/westwood/russian_general.html http://bsd.sinica.edu.tw/ftp_pub/NetBSD/packages/1.3/sun3/?D=A http://my.egroups.com/messages/dcfwriters/132?expand=1 http://my.egroups.com/message/dcfwriters/147 http://my.egroups.com/message/dcfwriters/149 http://oss.sgi.com/cgi-bin/cvsweb.cgi/projects/failsafe/FailSafe/failsafe/scripts/?only_with_tag=MAIN http://sound-dist.secured.co.uk/cgi-bin/psShop.cgi/add|8P007|972959615|Warm===and===Dry|user|0|1,0,0,1 http://www.alsapresse.com/jdj/00/01/13/MA/photo_6.html http://www.highwired.net/ESchoolDrive/Frameset/0,5592,13577-52,00.html http://uk.sports.yahoo.com/000922/59/ak705.html http://universal.eud.com/1999/02/26/26204DD.shtml http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/audio/gkrellmvolume/pkg-descr?only_with_tag=MAIN http://www3.skolverket.se/kursinfo/99_00/skolform/21/alt_nav/S_52S_10S_36VAV_SVSTEK_1715.HTML http://www3.skolverket.se/kursinfo/99_00/skolform/21/alt_nav/S_52S_10S_36VAV_SVSTEK_1719.HTML http://www.wsrn.com/apps/research/history.xpl?s=CMDCD&f=HISTORY http://www.wsrn.com/apps/charts/?s=CMDCD&data=Z10 http://pub3.ezboard.com/utherealcharron.showPublicProfile?language=EN http://ring.shibaura-it.ac.jp/archives/graphics/gimp/gtk/binary/DEBIAN/stable/?S=A http://209.52.189.2/discussion.cfm/autism/29762/198522 http://www.affiliate.hpstore.hp.co.uk/do/session/380851/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp http://www01.sankei.co.jp/advertising/furusato/tokuhain/9810/1018sindou.html http://kulichki-mac.rambler.ru/abiturient/ak.htm http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,1-20,0+9,0 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,1-20,0+18,0 http://ballesta.inrialpes.fr/Infos/Personnes/Christophe.Rippert/ressources/tutorial/security1.2/summary/glossary.html http://www.affiliate.hpstore.hp.co.uk/do/session/380872/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/main/respect/ http://www11.cplaza.ne.jp/babyweb/bbs/bdnmp01/no24/99N.html http://www.homeway.com.cn/lbi-html/news/zhxw/gatxw/20000922/165807.shtml http://gd.cnread.net/cnread1/yqxs/d/dingqianrou/ssqj/009.htm http://library.bangor.ac.uk/search/tBiol.+philos/tbiol+philos/-17,-1,0,B/frameset&F=tbioindicators+and+environmental+management&1,1 http://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/peacelink-scuola/70630505/view/1 http://www.indian-express.com/ie/daily/19980626/17750374.html http://www.indian-express.com/ie/daily/19980626/17751044.html http://www.indian-express.com/ie/daily/19980626/17751334.html http://www.indian-express.com/ie/daily/19980626/17751494.html http://polygraph.ircache.net:8181/services/define/http_-2www.disney.com/links.html http://pub10.ezboard.com/fsavings4yousavings4you.subscribeUnregisteredToTopic?topicID=56.topic http://www8.freeweb.ne.jp/shopping/arthome/arthome/menu.html http://rainforest.parentsplace.com/dialog/get/medinfo/4/1.html?outline=3 http://www.emerchandise.com/aboutus/b.TV%20SATNIGHTLIVE/s.afJ7iGE2 http://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/net/arpwatch/pkg/?S=A http://ring.omp.ad.jp/archives/NetBSD/packages/pkgsrc/net/arpwatch/pkg/DESCR http://210.178.135.1/netbbs/Bbs.cgi/nhic30872/qry/zka/B2-kBI-o/pno/0/qqo/004A/qqatt/^ http://yp.gates96.com/8/48/0/54.html http://yp.gates96.com/8/48/1/98.html http://yp.gates96.com/8/48/2/23.html http://yp.gates96.com/8/48/3/13.html http://yp.gates96.com/8/48/3/14.html http://yp.gates96.com/8/48/3/23.html http://yp.gates96.com/8/48/3/84.html http://yp.gates96.com/8/48/4/5.html http://yp.gates96.com/8/48/4/72.html http://yp.gates96.com/8/48/5/4.html http://yp.gates96.com/8/48/5/49.html http://yp.gates96.com/8/48/6/38.html http://yp.gates96.com/8/48/6/89.html http://yp.gates96.com/8/48/8/10.html http://yp.gates96.com/8/48/8/41.html http://yp.gates96.com/8/48/8/87.html http://news.medscape.com/adis/CDI/2000/v19.n02/cdi1902.02.biel/cdi1902.02.biel-01.html http://www.parsonstech.com/genealogy/trees/PKINGMAN/d2438.htm http://www.parsonstech.com/genealogy/trees/PKINGMAN/d2502.htm http://www.chaos.dk/sexriddle/j/c/b/o/ http://www.outpersonals.com/cgi-bin/w3com/pws/out/FahI8ikSPIvk79ErK106-87Jy3U1_XgCksR4DWkUOldKaD_pciJBXOOmI2Sr4jXlDCT9Mkz59aBZhyyi3xxBeYROt0IpVObKZD4YcwBAhl9afrfb6y3nWI3SwdRE_Vp3d80RzmrDkPVZYQkJyvOgorzS http://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+catalogs&3,,0 http://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+catalogs+periodicals&1,1 http://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+dictionaries&3,,0 http://opac.lib.rpi.edu/search/dchemicals+dictionaries/-5,-1,0,E/frameset&dchemicals+economic+aspects+united+states&1,,0 http://www.jsonline.com/news/state/oct00/lambeau31103000a.asp http://polygraph.ircache.net:8181/used/http_-2www.scubaring.com/http_-2www.alpinehotel.com/chinese/chine.htm http://www.kaos.dk/sex-riddle/k/a/k/i/p/g/g/e/ http://haikou.hainan.gov.cn/ghgl/ghsc/hkfg3020.html http://variety.studiostore.com/main/VARIETY/s.Fz90iGDh http://library.cuhk.edu.hk/search*chi/cPN595.C6I18+1993/cpn++595+c6+i18+1993/-5,1,1,E/frameset&F=cpn++595+c6+k6+1997&1,1, http://library.cuhk.edu.hk/search*chi/cPN595.C6I18+1993/cpn++595+c6+i18+1993/-5,1,1,E/frameset&F=cpn++595+c6+l515&1,1, http://link.fastpartner.com/do/session/600425/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/learn.htm http://www.nanyang.com.my/20001020/articles/15-10-2000k16.htm http://202.99.23.245/rmrb/199912/11/newfiles/col_19991211001063_zhxw.html http://help.sap.com/saphelp_45b/helpdata/en/a7/2872510a6c11d28a220000e829fbbd/frameset.htm http://www.s10.sexshare.com/~pornking/hardcore/43.html http://www.gbnf.com/genealogy/Lawler99/html/d0102/I1772.HTM http://ring.edogawa-u.ac.jp/pub/linux/RedHat/aic/OLD/aic7xxx-5.0.x/boot_disks/5.0.11/SuSE/?D=A http://www.t-online.de/sport/inhalte/adispi51.htm http://ftp.lip6.fr/pub11/FreeBSD/development/FreeBSD-CVS/src/kerberos5/usr.sbin/k5stash/ http://education.legend-net.com/xinwen/gaokao/zl5/zhsh/3/zhshyk.html http://www.contractorresource.com/Wyoming/Cody/ http://213.36.119.69/do/session/152998/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/boutique/ http://213.36.119.69/do/session/153000/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/hotels.html http://213.36.119.69/do/session/153000/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www3.travelprice.com/voyages/recherche.phtml http://ftp.unina.it/pub/TeX/macros/latex/contrib/supported/combine/?D=A http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,2,11 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,2,233 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=237&discrim=178,2,5 http://www12.freeweb.ne.jp/novel/urufu24/linkz/ug1.html http://www12.freeweb.ne.jp/novel/urufu24/linkz/pv.html http://computers.kharkov.ua/win/43/ http://www.1001e.net/nk4/022.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=4&discrim=93,164,176 http://dic.empas.com/show.tsp/?q=revisable&f=B http://yp.gates96.com/0/28/30/45.html http://yp.gates96.com/0/28/30/46.html http://yp.gates96.com/0/28/31/24.html http://yp.gates96.com/0/28/32/64.html http://yp.gates96.com/0/28/33/28.html http://yp.gates96.com/0/28/33/85.html http://yp.gates96.com/0/28/33/87.html http://yp.gates96.com/0/28/33/96.html http://yp.gates96.com/0/28/34/52.html http://yp.gates96.com/0/28/35/7.html http://yp.gates96.com/0/28/36/23.html http://yp.gates96.com/0/28/36/52.html http://yp.gates96.com/0/28/37/50.html http://yp.gates96.com/0/28/38/85.html http://yp.gates96.com/0/28/39/16.html http://www.fan590.com/JamMoviesReviewsE/earth_king.html http://www.sportbuecher.de/shop/3-88034-750-6.html http://www.msb.malmo.se/search*swe/aWhitaker,+Galvin,+Utgivare/awhitaker+galvin/-5,-1,0,B/exact&F=awhitburn+joel&1,2 http://ftp.sunet.se/pub/security/vendor/microsoft/winnt/frn/nt40/?M=A http://www.intervoz.com.ar/2000/03/02/op_n04.htm http://www.ntut.edu.tw/~s7370840/8-19.htm http://www.back2roots.org/Music/Files/Wondergirl%20-%20You%26Me/ http://www.private-immobilien-boerse.de/nordrhein-Westfalen/Muehlheim-ruhr/Verkauf/3d-service/IIM-Teil/Startseite/Gemeinsam/Inserieren/IIM-Teil/Startseite/frinfo.htm http://web.singnet.com.sg/~spirit5/letters/oct2000/frankm1025-3.htm http://web.singnet.com.sg/~spirit5/letters/oct2000/davidp1025.htm http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=decuplicavamo&l=it http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=decuplichiate&l=it http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=decuplichereste&l=it http://members.tripod.com/~OZEMU/cgi-bin/ http://ring.tains.tohoku.ac.jp/archives/pack/dos/hardware/midi/?D=A http://kutschen.de/Schoner/info-e/info-e/collections/literature/ http://www.jamba.de/KNet/_KNet-MJJ8j1-DGd-13dgc/showInfo-special1.de/node.0/cde7f1uou http://www.jamba.de/KNet/_KNet-MJJ8j1-DGd-13dgy/browse.de/node.0/cenv0b09a http://in.egroups.com/message/sfconsim-l/6415 http://genforum.genealogy.com/cgi-genforum/forums/vt.cgi?4123 http://www.linux.com/networking/network/sap/article/price/VA_Linux_Systems/ http://www.linux.com/networking/network/sap/article/price/regulation/ http://slacvx.slac.stanford.edu/sldmcwww/mc/MC74BB_98R16B_WIN_ALL.HTML http://www.xmission.com/~dkenison/cgi/lwgate.cgi/KLR650/archives/v02.n1611/date/article-15.html http://www.iwon.com/home/movies/movies_filmography_page/0,13178,Macon+McCalman,00.html http://excite.de/spiele/katalog/26997 http://www.trax.nilex.co.uk/trax.cgi/A1C/B1S/B2R/A2U/B3S/B1R/ http://www.power2lead.com/Global/English.nsf/pgWWLocations!OpenPage&ExpandSection=2,6,27,9,26 http://itcareers.careercast.com/texis/it/itjs/+owwBm1eP0-dzwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewDPwdGpdGwBodDa5dhBiwGna5O5BnManDtoDnnGa5nDodGa5BwhhaidGAanLpnGonDqnaqdMp1BnGamnVncdpaMFqhTfR20Dzme8twwwpBmer+D86e9qwww5rmeZpwwwBrmeZpwww/morelike.html http://pub4.ezboard.com/fnationoferidinegeneral.showAddReplyScreenFromWeb?topicID=615.topic&index=2 http://www.chaos.dk/sexriddle/m/i/s/x/ http://kiasuplanet.subportal.com/sn/Games/Tetris_Clone_Games/5532.html http://kiasuplanet.subportal.com/sn/Games/Tetris_Clone_Games/11418.html http://kiasuplanet.subportal.com/sn/Games/Tetris_Clone_Games/676.html http://www.rge.com/pub/networking/ldap/umich/max500/beta/?M=A http://my.egroups.com/dir/Health/Fitness/Exercise_Equipment http://my.egroups.com/messages/prevention http://pub4.ezboard.com/factiveprodiscussioncommunityactivitiesquestions.showMessage?topicID=12.topic http://www.look4cranes.com/catalog/AUCTIONRESULT/AGGREGATE+-+CONVEYOR+%2F+FEEDER+%2F+STACKER/POWERSCREEN/ http://www.fogdog.com/cedroID/ssd3040183344300/cgi-bin/MyFogdog http://www.fogdog.com/cedroID/ssd3040183344300/nav/products/featured_brands/3b/gloves_mittens/ http://www.houses-apartment-listings.com/Washington/city_search_criteria.asp?state=WA&City=CONCONULLY http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/c23417.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x12810.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x14250.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x14507.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x15988.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x17214.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x18550.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x19113.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x1949.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x21473.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x31101.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x3585.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x44035.html http://www.brunel.ac.uk/~ccusjpe/linux/howto/Consultants-HOWTO/x4711.html http://www.online.kokusai.co.jp/Home/V0043638/wrd/G100/ http://ftp.lip6.fr/pub5/FreeBSD/branches/-current/ports/print/ghostscript5/ http://ftp.lip6.fr/pub5/FreeBSD/branches/-current/ports/print/texinfo/ http://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/ats/?N=D http://garbo.uwasa.fi/pub/linux/distributions/SuSE/7.0/dosutils/exceed/USER/HOSTEX/SCHEME/?D=A http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/showNextUnseen/fol/100001/922702 http://link.fastpartner.com/do/session/600391/vsid/1314/tid/1314/cid/134340/mid/1060/rid/1180/chid/1314/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php http://www.jamba.de/KNet/_KNet-wEF8j1-bGd-13cma/showInfo-datenschutz.de/node.0/cenvptf1i http://www.jamba.de/KNet/_KNet-wEF8j1-bGd-13cmd/browse.de/node.0/cenv0b09a http://www-usa6.cricket.org/link_to_database/PLAYERS/RSA/T/THOMPSON_DS_03003252/ http://sunsite.org.uk/public/public/packages/WWW/emacs-w3/?S=A http://www.excelsior.com.mx/9811/981129/buh25.html http://www.anixter.nl/SBJEVE/170699-2155-01.html http://innopac.lib.tsinghua.edu.cn:2082/search*chi/aBrooks,+Jane+B./abrooks+jane+b/-5,-1,0,B/browse http://tour.stanford.edu/cgi/options.prl/95.70/gMcto http://www.cksd.edgate.com/emeraldheightses/elections/students/the_parties/ http://novel.hichinese.net/comment/comment.php?page=2091&action=write http://205.161.150.96/cgi-bin/c2k/additem.html&item=204578 http://www.nhic.or.kr/netbbs/Bbs.cgi/nhic31282/qry/zka/B2-kB2-m/pno/0/qqo/004A/qqatt/^ http://scripts.infoart.ru/magazine/znamia/n4-20/shpakov.htm http://excite.de/bildung/katalog/19909 http://911codes.com/games/platform/n64/sect/div/cont/list_cheat/spray/y/id/0000009557/gid/0000003573/_cheats/_walkthroughs/_codes/_pc/_n64/_psx/_gameboy/_playstation/ http://ftp.jp.debian.org/debian/dists/stable/main/source/web/?M=A http://www.fogdog.com/cedroID/ssd3040183335913/nav/products/featured_brands/3c/all/ http://his.luky.org/ML/linux-users.3/msg08073.html http://yomiuri-1422.excite.co.jp/entertainment/animated_cartoon_comic/each_work_title/ha_line/ha http://yomiuri-1422.excite.co.jp/entertainment/animated_cartoon_comic/each_work_title/ha_line/hu_he/berserk http://library.cwu.edu/search/dWorld+War,+1914-1918+--+Diplomatic+history/dworld+war+1914+1918+diplomatic+history/-5,-1,0,B/exact&F=dworld+war+1914+1918+diplomatic+history&1,49 http://www.utdallas.edu/dept/sci_ed/Caribbean/images/Jennifer%20Jordan/Antigua%20Mangrove/?N=D http://www.baustoffhandel.de/service/faqs/faq-tapezieren.htm http://muc-zvs-web1.goethe.de/ms/bud/film/un_f2.htm http://www.online.kokusai.co.jp/Map/V0043636/wrd/G1000/map/sitemap.html http://win.www.citycat.ru/funny/fido/2000_05/25.html http://nathanael.upi.jussieu.fr/tele6.nsf/autres+centres+de+formations!OpenPage&ExpandSection=9,1,7,13,15,6 http://yp.gates96.com/11/79/50/1.html http://yp.gates96.com/11/79/50/92.html http://yp.gates96.com/11/79/52/64.html http://yp.gates96.com/11/79/54/79.html http://yp.gates96.com/11/79/54/81.html http://yp.gates96.com/11/79/56/28.html http://yp.gates96.com/11/79/56/30.html http://yp.gates96.com/11/79/56/46.html http://yp.gates96.com/11/79/56/83.html http://yp.gates96.com/11/79/57/10.html http://yp.gates96.com/11/79/57/33.html http://yp.gates96.com/11/79/58/1.html http://yp.gates96.com/11/79/58/48.html http://yp.gates96.com/11/79/58/82.html http://yp.gates96.com/11/79/59/62.html http://l-infonet.phkk.fi/fi/TIETOPALVELUT/ELINKEINO-+JA+YRITYSTOIMINTA/Matkailu+-+maantiede/matkailu/linja-autoliikenne/joukkoliikenne/aikataulut/ http://cn.egroups.com/message/romtrade/3823 http://www.idgnet.com/idgns/1999/07/16/SmallFrenchBusinessesMoveSlowlyTo.shtml http://www-d0.fnal.gov/d0dist/dist/releases/psim01.01.00/Exceptions/?M=A http://www.4positiveimages.com/4positiveimages/781560892/Catalog http://dellnet.excite.fr/yellow_pages/annuaire/823 http://ftp.chg.ru/pub/math/grace/MIRRORS http://ftp.chg.ru/pub/math/grace/aux/ http://legalminds.lp.findlaw.com/list/lawlibref-l/mail8.html http://carriage.de/Schoner/modelle/models/Info-d/Sammlungen/ http://chunma.yeungnam.ac.kr/~j4390214/경기상승.htm http://members.tripod.co.jp/stpp/?M=A http://map.ipc.co.jp/asp/onmap/connect/f-525598/g-28/ http://www.fortunecity.com/business/lerner/101/form.html http://www.sportskorea.net/BBS/Bbs/db/L019/act/new/bnum/000060/zka/6/o/6/drc/f http://ftp.jp.debian.org/debian/dists/Debian2.2r0/main/binary-all/hamradio/?M=A http://admin.afiliando.com/do/session/189476/vsid/1507/tid/1507/cid/23455/mid/1025/rid/1168/chid/1205/parser/yes/imref/eqqLmwlGltt5tkpHrYjLXofLklkKZljLkju5lZa5l0/url/http://www.submarino.com.mx/toy/home.asp http://www.gasex.com/gay.male.erotica/penis.gay.twink.men.html http://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/ak/?S=A http://gb.toget.com.tw/intro/desktop_wallpaper/desktop_wallpaper_idol/20000417_7747_dl.html http://yp.gates96.com/13/50/50/27.html http://yp.gates96.com/13/50/52/20.html http://yp.gates96.com/13/50/52/31.html http://yp.gates96.com/13/50/52/44.html http://yp.gates96.com/13/50/53/33.html http://yp.gates96.com/13/50/53/45.html http://yp.gates96.com/13/50/53/72.html http://yp.gates96.com/13/50/54/34.html http://yp.gates96.com/13/50/54/62.html http://yp.gates96.com/13/50/54/83.html http://yp.gates96.com/13/50/54/84.html http://yp.gates96.com/13/50/55/5.html http://yp.gates96.com/13/50/55/61.html http://yp.gates96.com/13/50/55/75.html http://yp.gates96.com/13/50/56/0.html http://yp.gates96.com/13/50/56/15.html http://yp.gates96.com/13/50/56/21.html http://yp.gates96.com/13/50/56/29.html http://yp.gates96.com/13/50/57/2.html http://yp.gates96.com/13/50/57/54.html http://yp.gates96.com/13/50/58/9.html http://yp.gates96.com/13/50/58/34.html http://yp.gates96.com/13/50/59/64.html http://yp.gates96.com/13/50/59/70.html http://yp.gates96.com/13/50/59/75.html http://yp.gates96.com/13/50/59/85.html http://www.ilmessaggero.it/hermes/19990419/07_MARCHE/40/AGRI.htm http://www.ilmessaggero.it/hermes/19990419/07_MARCHE/40/NERA.htm http://amigos.com/cgi-bin/w3com/pws/ffe/IURImAxosglBgN4t3Iz538S9DOsFp6mHl6tpYJehgGibFrnWNcTM3WIsDckFomPqZ-JB8f_Qj8Aua4sE4AFvcFyidtj2iI6k1zPchuFbLwWMCo3hr8eXPNuxbHPQdRvo8J246667 http://amigos.com/cgi-bin/w3com/pws/ffe/F3hIBiydr9mPRNSqk-dll3MTqIZCaRN3wRH0-H7o4qF0vlfPBXUV-Vhn028iva56e-GCSyYZKBQxuCJO8Y2JF25fVTkPHzFtrNMoOVhEp2n7Y11PhN9pvFNyqgssdZW8Eay0XJsP0vuD4oCbmJVx http://home.digitalcity.com/boston/sportsguy/main.dci?page=curse2 http://ftpsearch.belnet.be/mirror/ftp.funet.fi/pub/Linux/doc/logos/.cap/?S=A http://ftpsearch.belnet.be/mirror/ftp.funet.fi/pub/Linux/doc/logos/.cap/?D=A http://my.netian.com/~52tour/kyung1.html http://aol.weather.com/weather/radar/single_site/us_ny_allegany.html http://www-usa16.cricket.org/link_to_database/GROUNDS/RSA/CENTURION/ http://polygraph.ircache.net:8181/prodev/career/http_-2www.getstats.com/http_-2www.shindex.com/in_dex/in_dex.html http://polygraph.ircache.net:8181/prodev/career/http_-2www.getstats.com/http_-2www.microsoft.com/msoffice http://www.5a8.com/book/wg/cp/p/puge/zhizhunv/005.htm http://tukids.raha.com/crafts/preview/52044.html http://tukids.raha.com/crafts/preview/52401.html http://buc.co.kr/www.ecs.com.tw/ http://wap.jamba.de/KNet/_KNet-EDS8j1-KHd-13gbq/showInfo-werbung.de/node.0/cde7f1uou http://www.launch.com/music/songpage/1,4425,322514,00.html http://www.emerchandise.com/browse/BUFFYTHEVAMP/CAP/b.TV%20BUFFYTHEVAMP/s.NGdTZGLC http://www.emerchandise.com/browse/BUFFYTHEVAMP/STICKER/b.TV%20BUFFYTHEVAMP/s.NGdTZGLC http://www.emerchandise.com/help_security/b.TV%20BUFFYTHEVAMP/s.NGdTZGLC http://yp.gates96.com/14/70/50/9.html http://yp.gates96.com/14/70/50/23.html http://yp.gates96.com/14/70/50/24.html http://yp.gates96.com/14/70/50/40.html http://yp.gates96.com/14/70/50/47.html http://yp.gates96.com/14/70/50/79.html http://yp.gates96.com/14/70/50/89.html http://yp.gates96.com/14/70/51/83.html http://yp.gates96.com/14/70/52/98.html http://yp.gates96.com/14/70/53/46.html http://yp.gates96.com/14/70/54/4.html http://yp.gates96.com/14/70/54/24.html http://yp.gates96.com/14/70/54/97.html http://yp.gates96.com/14/70/55/51.html http://yp.gates96.com/14/70/57/51.html http://yp.gates96.com/14/70/58/3.html http://yp.gates96.com/14/70/58/84.html http://yp.gates96.com/14/70/59/0.html http://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20046027/-5,-1,0,B/frameset&F=bp20046031&1,1 http://www.free-phone.com/q/001p/ppc2/KtIYye9a8Pw.htm http://www.1stemlm.com/q/001p/ppc2/7kwUxQYfGMk.htm http://sports.excite.com/ten/grand_german http://www.omniseek.com/dir/Arts+%26+Humanities/Fine+Arts/Ceramics/Organizations/Australia/ http://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/dec-axpvms-vms712_usb-v0100--4.pcsi-dcx_axpexe http://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_acrtl-v0100.README http://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_acrtl-v0100.html http://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_dqconfig-v0200.README http://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_ds20e-v0100.html http://ftp1.service.digital.com/patches/public/vms/axp/v7.1-2/vms712_shadowing-v0300.CVRLET_TXT http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=barrissait&l=fr http://dk.egroups.com/message/M-1911/4394 http://www.netsh.com.cn/wwwboardm/526/messages/2116.html http://www.netsh.com.cn/wwwboardm/526/messages/2270.html http://www.netsh.com.cn/wwwboardm/526/messages/773.html http://www.netsh.com.cn/wwwboardm/526/messages/2058.html http://www.netsh.com.cn/wwwboardm/526/messages/2329.html http://www.netsh.com.cn/wwwboardm/526/messages/1813.html http://linux.softhouse.com.cn/linux/knowledge/tech/HOWTO/Java-CGI-HOWTO-7.html http://news.novgorod.ru/news/2000/9/22/2/12 http://news.novgorod.ru/news/2000/9/24/2/12 http://homepage1.nifty.com/sigenyan/nikki9.htm http://perso.club-internet.fr/guige/ncpc78.htm http://www.vr-homes.com/usa/California/Cities/Victorville/Travel/Maps_Images/ http://www.incestpornstories.com/cum-sex-pics/underagecoed/spankingsweating/hardendurance.html http://www.freeforums.com/forums/Hardball/000008-000007.asp http://www.freeforums.com/forums/Hardball/000005-000001.asp http://www.freeforums.com/forums/Hardball/000004-000001.asp http://rex.skyline.net/html/Internet_Chat_Sites.html?315,computers,video,internet,computers http://rex.skyline.net/html/Computers_-_Hardware.html?14,computers,video,internet,computers http://194.128.65.4/pa/cm199899/cmhansrd/vo990216/text/90216w20.htm http://pub14.ezboard.com/fyamguyskoflastblade.showMessage?topicID=3.topic http://plant.reedexpo.ca/www.partnership.ca/?S=A http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=168&discrim=109,5,168 http://www.aelita.net/products/~archive/Download_redirect/solutions/solutions/services/products/default.htm http://www.jpc-music.com/7041801.htm http://home.c2i.net/entreprenor/java/ra.html http://gxschool.beelink.com.cn/mid_edu/midschool/geography3/t4cd7z/4d7z3.3_1.htm http://ricoh.co.jp/SHOGI/emate/basic/mate3003a.html http://www.diogenes.ch/4DACTION/web_rd_aut_frlist_az/ID=483385&chr=K http://www.ebigchina.com/msg_post.phtml?cu=1003 http://www.bemi-immobilien.de/allgemeine-ib/startseite/Gemeinsam/erreichenPartner/Gemeinsam/versicherungen/lebensversicherung/Gemeinsam/immolink/Gemeinsam/MarketingStrategie/Gemeinsam/Inserieren/onlineInserieren.htm http://ftp.tku.edu.tw/OS/Linux/distributions/RedHat/rawhide/i386/doc/rhinst/stylesheet-images/?S=A http://www.egroups.com/message/kicken/284 http://www.guangmingdaily.com.cn/0_gm/1999/12/19991222/big5/gm^18278^2^GM2-2216.htm http://brightnet.pda.tucows.com/www.psionsite.rcsed.ac.uk/ http://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=9,22,1,11 http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=durereste&l=it http://click-to.tell-a-friend.boardhost.com/tell-a-friend-confirm.cgi?ylihilseen&msg=25 http://www.gbgm-umc.org/EllisvilleMO/10-04-00.pdf http://www.marketingtool.com/contribute/webfirm/b.435.r.2626.g.4134.html http://www.chaos.dk/sexriddle/h/a/w/l/ http://www.chaos.dk/sexriddle/h/a/w/t/ http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,5-0,3+( http://www.guba.net/101/136/125E/index-4.phtml http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+9,5-0,3+21,0 http://www.guba.net/101/136/125E/index-7.phtml http://www.guba.net/101/136/125E/index-15.phtml http://ftpsearch.belnet.be/ftp/mirror2/ftp.cert.dfn.de/pub/vendor/sun/security-alert/security-alert-108.txt http://ftpsearch.belnet.be/ftp/mirror2/ftp.cert.dfn.de/pub/vendor/sun/security-alert/security-alert-170.txt http://www.tente.de/us/produkte/rubriksuche/ad000000699.htm http://www.angelfire.com/ky/kysweetpea/ http://yp.gates96.com/7/69/60/1.html http://www.amulation.com/md-l-archive/199908/frm00208.html http://yp.gates96.com/7/69/60/4.html http://yp.gates96.com/7/69/60/33.html http://yp.gates96.com/7/69/60/49.html http://yp.gates96.com/7/69/60/71.html http://nanjingnews.jlonline.com/nanjingnews/njrb/20000226/04tiyu.htm http://yp.gates96.com/7/69/61/44.html http://yp.gates96.com/7/69/61/69.html http://yp.gates96.com/7/69/61/82.html http://yp.gates96.com/7/69/61/85.html http://yp.gates96.com/7/69/62/4.html http://yp.gates96.com/7/69/63/34.html http://yp.gates96.com/7/69/63/48.html http://yp.gates96.com/7/69/63/66.html http://yp.gates96.com/7/69/64/22.html http://www.bemi-immobilien.de/IIM-Teil/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/Inserieren/Startseite/Gemeinsam/versicherungen/unfall/Gemeinsam/3d-service/info.htm http://yp.gates96.com/7/69/64/26.html http://yp.gates96.com/7/69/65/89.html http://yp.gates96.com/7/69/67/11.html http://yp.gates96.com/7/69/67/28.html http://yp.gates96.com/7/69/67/33.html http://yp.gates96.com/7/69/67/70.html http://yp.gates96.com/7/69/68/22.html http://yp.gates96.com/7/69/68/72.html http://yp.gates96.com/7/69/68/92.html http://members.tripod.com/~katenleo/fading21.html http://yp.gates96.com/7/69/69/6.html http://members.tripod.com/~katenleo/fading26.html http://yp.gates96.com/7/69/69/36.html http://yp.gates96.com/7/69/69/91.html http://yp.gates96.com/7/69/69/98.html http://www.tribuneindia.com/98oct11/head1.htm http://fi.egroups.com/message/internet-sig-announce/3 http://info.verwaltung.uni-freiburg.de/doc/susehilf/pak/paket_inhalt_libxml.html http://www.planetweb.com/cgi-bin/listmanager.pl/NETLINK-CUST/archives/1998Mar30-Apr05.archive/Date/article-23.html http://www.maasvlakte-cam.nl/webcams/11/katowice__poland/2000/06/13/ http://www.eveclub.com/cgi-bin/eveclub.front/972959521459/Home http://totalsports.aol.com/stats/bbo/int/20000413/nor.at.lou.box.html http://totalsports.aol.com/stats/bbo/int/20000413/ott.at.buf.game.html http://fi.egroups.com/message/stccg-badlands/67 http://www.fogdog.com/cedroID/ssd3040183315704/nav/stores/books_videos/ http://xf-bbs.hb.cninfo.net/~socrates/sportold/images/football/_vti_cnf/ http://cisc.tu-graz.ac.at/igi/lehre/semD_ss99/gruppe3/node10.html http://in.egroups.com/message/sfconsim-l/8643 http://ftp.cc.chuo-u.ac.jp/home/pub/lang/perl/CPAN/modules/by-authors/Karl_Glazebrook/ExtUtils-F77-1.13.readme http://ftp.cc.chuo-u.ac.jp/home/pub/lang/perl/CPAN/modules/by-authors/Karl_Glazebrook/PGPLOT-2.17.readme http://coe.ier.hit-u.ac.jp/BibEc/data/Papers/wopwobaiu2243.html http://coe.ier.hit-u.ac.jp/BibEc/data/Papers/wopwobaiu2386.html http://books.hyperlink.co.uk/bookinfo/Travel_Journal/0864427972 http://dbc.copystar.com.tw/DelphiChat/200001/msg0650.htm http://dbc.copystar.com.tw/DelphiChat/200001/msg0655.htm http://dbc.copystar.com.tw/DelphiChat/200001/msg0666.htm http://dbc.copystar.com.tw/DelphiChat/200001/msg0673.htm http://dbc.copystar.com.tw/DelphiChat/200001/msg0681.htm http://dbc.copystar.com.tw/DelphiChat/200001/msg0692.htm http://www.expage.com/page/cavypigsponser http://kernel2.adver.com.tw/Counter/log/kernel2.adver.com.tw/SaveCounter/2000-10-05/13/?S=A http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=210&discrim=214,253 http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=2&discrim=247,212,237 http://wwwtios.cs.utwente.nl/archive/wilyfans/frm01740.html http://z-06.land-sbg.gv.at/pressebuero/lpb/unserland/apr00/3.htm http://z-06.land-sbg.gv.at/pressebuero/lpb/unserland/apr00/52.htm http://gladstone.uoregon.edu/~sola/Stories/ http://adetti.iscte.pt/RSI/HowTo/Java/jdk1.2.1/docs/guide/2d/api-jpeg/serialized-form.html http://ocean.ntou.edu.tw/search*chi/aSloan,+Richard+P.,+jt.+ed./asloan+richard+p/-5,-1,0,E/frameset&F=asloan+irving+j&2,,0 http://ttzcomputers.subportal.com/sn/Programming/C_and_C___Tools_and_Components/13286.html http://ttzcomputers.subportal.com/sn/Programming/C_and_C___Tools_and_Components/1551.html http://ftp.uni-stuttgart.de/pub/unix/tools/system/top/m/?N=D http://no.egroups.com/message/romtrade/5216 http://dk.egroups.com/message/Gunsmithing/80 http://www.msb.malmo.se/search*swe/dMichelsen,+Hans/dmichelsen+hans/-5,-1,0,B/frameset&F=dmichels+robert&1,1 http://solar.rtd.utk.edu/friends/news/omri/1998/05/980506I.html(opt,mozilla,pc,russian,koi8,default) http://www.geocities.co.jp/HeartLand/6163/link8.htm http://tucows.austria.com/sync95_size.html http://tucows.austria.com/adnload/1082_30337.html http://www.hotelboulevard.com/fr/paris/standard/html7752b1d358fd6459ebca66776e896614/sessionLang/ANG/prov/browse/cp/75015/resultatSearch.html http://210.178.135.1/netbbs/Bbs.cgi/nhic30872/qry/zka/B2-kB2-o/pno/0/qqo/000A/qqatt/^ http://210.178.135.1/netbbs/Bbs.cgi/nhic30872/new/pno/0/pno/0/qqo/000A http://cometweb01.comet.co.uk/do!tid=20&rtid=2&vsid=700&session=132041&mid=1000&rid=1060&cid=37030&chid=1713&url=eqqLmwlGltt5tkZHljbLqkZHlkrHhlZHdfjKYfkLlkZ5ljjLboZLbplG5ubLZDXLZolLl3l5jbqLlci5XqVLkXsLkao4tloHbmlLoq5 http://polygraph.ircache.net:8181/http_-2www.webtechs.com/html-val-svc/f-agents.html http://www.linux.com/networking/network/development/communications/server/distro/ http://www.linux.com/networking/network/development/communications/server/competition/ http://www.linux.com/networking/network/development/communications/server/certification/ http://www.linux.com/networking/network/development/communications/server/future/ http://www.linux.com/networking/network/development/communications/server/Updates/ http://people.freebsd.org/~knu/cgi-bin/cvsweb.cgi/ports/net/epic4/pkg/Attic/ http://polygraph.ircache.net:8181/mo/mo_links/http_-2www.whowhere.com/tax_cuts.html http://www.gov.ie/iveagh/angloirish/bloodysunday/summary4.htm http://polygraph.ircache.net:8181/http_-2www.real-e-video.com/ftp_-2ftp.mpgn.com/Gaming/ADND/Worlds/BirthRight/MailingListArchive/Contents.htm http://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/showNextUnseen/fol/100001/1323398 http://www.centc251.org/forums/aca-1/dispatch.cgi/isowg4/folderFrame/100008/0/def/1323639 http://user.alpha.co.kr/~selly/profile/main2.htm http://polygraph.ircache.net:8181/company/http_-2www.aaainvestments.com/http_-2triad.cyberserv.com/http_-2207.90.134.3/miami/ http://ring.htcn.ne.jp/pub/FreeBSD/FreeBSD-current/ports/archivers/zip/ http://www.medoc-ias.u-psud.fr:81/synoptic/gif/950902/?S=A http://in.egroups.com/message/GQRP/975 http://idgnow.uol.com.br/idgnow/pcnews/2000/07/0046 http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdebase/po/Attic/kdmconfig.pot?only_with_tag=beta1-0_2 http://us.mandrakesoft.com/cgi-bin/cvsweb.cgi/kdebase/po/Attic/kwm.pot?only_with_tag=beta1-0_2 http://lists.omnipotent.net/mysql/199912/msg02189.html http://kyoto.cool.ne.jp/ryou_1125/lmax/list2.html http://www.infodog.com/RESULTS/1998092302/1998092302800.HTM http://www.infodog.com/RESULTS/1998092302/1998092302575.HTM http://bedandbreakfast.com/bbc/p618230.asp http://solaris.license.virginia.edu/os_product_patches/patches/5.5.1/103640-28/SUNWscpu/ http://www.secinfo.com/d1Z36p.5n.htm http://cn.egroups.com/messages/conscious_creation/2087 http://www.brio.de/BRIO.catalog/39fdb4fb08541c02273fd472aa7806a2/UserTemplate/13 http://www.chaos.dk/sexriddle/o/m/e/z/ http://cgi.tbs.co.jp/cdtv/songdb/song1897-j.html http://www.niwl.se/wais/new/12/12116.htm http://bsdweb.pasta.cs.uit.no/bsdweb.cgi/~checkout~/pkgsrc/editors/vim-xaw/pkg/?sortby=log http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=boguerait&l=fr http://www.medbulletin.com/scripts/medscape/jobsbystate.pl/diima00001/ND http://ttz.soyou.edu.cn/tgyd/item/2000-05-31/3214.html http://ttz.soyou.edu.cn/tgyd/item/2000-05-25/2973.html http://ttz.soyou.edu.cn/tgyd/item/2000-05-23/2825.html http://javatest.a-net.nl/servlet/pedit.Main/http://salon.com/tech/feature/2000/02/25/chatscan/ http://javatest.a-net.nl/servlet/pedit.Main/http://www.wired.com/news/news/technology/story/20734.html http://www.jps.net/fehlberg/diem9.html http://chellobe.linux.tucows.com/x11html/adnload/9798_3876.html http://chellobe.linux.tucows.com/x11html/preview/58190.html http://internet.exit.de/akpolitik/Extern.htm http://www.launch.com/music/albumpage/pvn_content/0,5258,163242_track,00.html http://merumo.ne.jp/backno/i/00005163/20001001060103_024859.html http://ftpsearch.belnet.be/mirrors/ftp.isc.org/pub/usenet/control/bc/?N=D http://www-lehre.inf.uos.de/manuals/jdk1.2/docs/api/javax/swing/text/html/parser/class-use/Element.html http://ftp.tku.edu.tw/OS/FreeBSD/ports/biology/deft/distinfo http://javatest.a-net.nl/servlet/pedit.Main/http://www.cavejunction.com/phones/gower1.html http://javatest.a-net.nl/servlet/pedit.Main/http://www.cavejunction.com/phones/contel1.html http://www.allkorea.co.jp/cgi-bin/allkorea.front/972959966349/Catalog/1000002 http://yp.gates96.com/5/82/41/1.html http://yp.gates96.com/5/82/41/52.html http://yp.gates96.com/5/82/41/59.html http://yp.gates96.com/5/82/42/40.html http://yp.gates96.com/5/82/42/73.html http://yp.gates96.com/5/82/43/4.html http://yp.gates96.com/5/82/43/20.html http://yp.gates96.com/5/82/44/60.html http://yp.gates96.com/5/82/44/95.html http://yp.gates96.com/5/82/45/36.html http://yp.gates96.com/5/82/45/43.html http://yp.gates96.com/5/82/45/90.html http://yp.gates96.com/5/82/46/37.html http://yp.gates96.com/5/82/46/83.html http://yp.gates96.com/5/82/47/22.html http://yp.gates96.com/5/82/47/53.html http://yp.gates96.com/5/82/48/8.html http://yp.gates96.com/5/82/48/23.html http://yp.gates96.com/5/82/48/41.html http://yp.gates96.com/5/82/48/76.html http://yp.gates96.com/5/82/49/5.html http://yp.gates96.com/5/82/49/22.html http://yp.gates96.com/5/82/49/37.html http://yp.gates96.com/5/82/49/39.html http://yp.gates96.com/5/82/49/65.html http://yp.gates96.com/5/82/49/90.html http://www.mirror.kiev.ua:8084/paper/1998/35/1251/power.htm http://www.science.uva.nl/pub/NetBSD/NetBSD-current/pkgsrc/textproc/html/Makefile http://www.fiss.at/1Root/Kontinent/6/Staat/7/Bundesland/16/Ort/708/Infrastruktur/7435/Homepage/homepage...1.html http://linux.tnc.edu.tw/CPAN/authors/id/C/CH/CHOGAN/Apache-SetWWWTheme-1.02.readme http://linux.tnc.edu.tw/CPAN/authors/id/C/CH/CHOGAN/Apache-SetWWWTheme-1.04.readme http://linux.tnc.edu.tw/CPAN/authors/id/C/CH/CHOGAN/Apache-SetWWWTheme-1.05.readme http://wufs.wustl.edu/vlander/vl_0002/browse/html/B0XX/22b090b4.htm http://www.dnet.org/My_Locality/View_Statement.dnet/OH/43230-1863&SubjectItemID=6406&IssueID=47541&ElectionActivityID=4443&SubjectHolder=3462&type=Office&debate=yes http://members.tripod.co.jp/suguruE/_private/ http://members.tripod.lycos.nl/Kreeklaan/id19_cf.htm http://forums.multimania.fr/general/login/login.phtml?_login=%2Flire%2Fjeuxvideospro%2Findex.phtml%3Fcollapse%3D1 http://excite.de.netscape.com/jobs/katalog/30434 http://excite.de.netscape.com/jobs/katalog/27370 http://excite.de.netscape.com/jobs/katalog/127 http://yp.gates96.com/2/54/20/79.html http://yp.gates96.com/2/54/21/27.html http://yp.gates96.com/2/54/22/14.html http://yp.gates96.com/2/54/22/48.html http://yp.gates96.com/2/54/22/78.html http://yp.gates96.com/2/54/23/20.html http://yp.gates96.com/2/54/23/62.html http://yp.gates96.com/2/54/23/69.html http://yp.gates96.com/2/54/24/1.html http://yp.gates96.com/2/54/24/61.html http://yp.gates96.com/2/54/24/95.html http://yp.gates96.com/2/54/25/2.html http://yp.gates96.com/2/54/25/16.html http://yp.gates96.com/2/54/25/53.html http://yp.gates96.com/2/54/25/67.html http://yp.gates96.com/2/54/25/94.html http://yp.gates96.com/2/54/26/3.html http://yp.gates96.com/2/54/26/30.html http://yp.gates96.com/2/54/26/65.html http://yp.gates96.com/2/54/27/31.html http://yp.gates96.com/2/54/27/41.html http://yp.gates96.com/2/54/27/53.html http://yp.gates96.com/2/54/27/71.html http://yp.gates96.com/2/54/27/79.html http://yp.gates96.com/2/54/27/80.html http://yp.gates96.com/2/54/28/13.html http://yp.gates96.com/2/54/28/14.html http://yp.gates96.com/2/54/28/24.html http://yp.gates96.com/2/54/28/34.html http://yp.gates96.com/2/54/28/96.html http://yp.gates96.com/2/54/29/49.html http://ftp.sunet.se/pub/NT/mirror-microsoft/KB/Q134/3/40.TXT http://members.tripod.com/joellogan/_cranedisc/000001d9.htm http://members.tripod.com/joellogan/_cranedisc/000001cd.htm http://www.ualberta.ca/CNS/RESEARCH/Software/SAS/vms/z-inf-zd.htm http://www1.galaxy.com/galaxy/Leisure-and-Recreation/Games/Computer-Games/Titles/Virtual-Reality/Golf.html http://www1.galaxy.com/galaxy/Leisure-and-Recreation/Games/Computer-Games/Titles/Virtual-Reality/Red-Planet.html http://www.uni-duesseldorf.de/ftp/ftp/software/opt/zlib-1.1.2/?N=D http://acbanks.know-where.com/acbanks/cgi/selection?place=Cavecreek&state=AZ http://yp.gates96.com/10/26/70/49.html http://yp.gates96.com/10/26/70/83.html http://yp.gates96.com/10/26/72/40.html http://yp.gates96.com/10/26/74/89.html http://yp.gates96.com/10/26/75/15.html http://yp.gates96.com/10/26/75/19.html http://yp.gates96.com/10/26/76/87.html http://yp.gates96.com/10/26/78/18.html http://yp.gates96.com/10/26/78/76.html http://yp.gates96.com/10/26/78/78.html http://yp.gates96.com/10/26/78/81.html http://cpan.nitco.com/modules/by-module/Devel/ADESC/Pod-DocBook-0.03.readme http://www2.el-mundo.es/nuevaeconomia/2000/NE047/NE047-03b.html http://www.familyeducation.com/whatworks/inappr_material/entry/1,2549,1-10119-1948-3469,00.html http://ftp.nodomainname.net/pub/linux/daemons/raid/beta/ http://192.80.57.161/corp/press/vannet.html http://digilander.iol.it/mirkodeli/Stagioni/CI6_index.html http://www.world-of-webs.de/magdeburg-in-bildern/_inhalt/_statnif/rechts/035.htm http://ftpsearch.belnet.be/mirrors/src.doc.ic.ac.uk/usenet/usenet-by-hierarchy/rec/travel/?D=A http://mirrortucows.technet.it/winme/netmiscme_rating.html http://my.egroups.com/message/imperiumlarp/3148 http://ep.com/js/about/c7857/b0/34551.html http://webcrawler-sports.excite.com/ncaab/matchup/pafmax/ http://www2.dbusiness.com/Quotes/1,1125,MSP_CORE,00.html?Ticker=CORE http://tucows.wlink.com.np/regist95_size.html http://www.babyheirlooms.com/catalog/htmlos.cat/041162.1.5960744054 http://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/71113000008423000000947720000021551/Labels.wo/168310000011551/1.0.1/3/Webobjects1 http://www.v2music.com/Scripts/WebObjects-ISAPI.dll/V2_New_Publisher.woa/71113000008423000000947720000021551/Labels.wo/168310000011551/1.1.3.0.0/3/Webobjects1 http://www.adcentral.com/cgi-bin/w3com/pws/adsites/vNhIXgVh_sji0rjcKc_GbuSlgBaEnCmKXU4ARmeefaqktCE3zwLsoXKDK_dlzoBzk2Ygr2cAuqN51PKOA0JxjzLEpPe-kic9TtvUJMbXG9Dlw8SggmHugQpwzjo-NiuofbUz4obq http://ring.omp.ad.jp/archives/NetBSD/NetBSD-current/src/distrib/i386/floppies/ramdisk-big/Makefile http://unofficial.capital.edu/students/alittle/ http://213.36.119.69/do/session/153005/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/reserver/promotions/promo9.html http://213.36.119.69/do/session/153005/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/GB_EN/ http://www.riello-hamburg.de/mSerieRSBLU_130_465kw.htm http://tucows.knoware.nl/winnt/filesplitnt_license.html http://www.kaos.dk/sex-riddle/k/a/k/i/n/h/b/b/ http://www.kaos.dk/sex-riddle/k/a/k/i/n/h/b/c/ http://caller-times.com/1999/july/13/today/national/3143.html http://news.fm365.com/jiaoyu/20000804/113896.htm http://variety.studiostore.com/browse/ILOVELUCY/CAP/b.FAVORITES%20NOSTALGI%20CLASTV%20ILOVELUCY/s.qyPsT2fz http://www.ferien-immobilien.de/bayern/ingolstadt/Verkauf/Gemeinsam/Immolink/3d-service/Private-IB/Startseite/Gemeinsam/vertriebspartner.htm http://jefferson.village.virginia.edu/wax/japanese/0front/cd/1/1a2a9a2.html http://space.tin.it/scuola/ermenegh/thewall/il2.htm http://www.maasvlakte-cam.nl/webcams/17/kremlin__moscou__russia/2000/02/29/?D=A http://pub17.ezboard.com/fecilordsoflightgeneral.showMessage?topicID=211.topic http://pub17.ezboard.com/fecilordsoflightgeneral.showMessage?topicID=214.topic http://pub17.ezboard.com/fecilordsoflightgeneral.showMessage?topicID=210.topic http://www.kaos.dk/sexriddle/x/u/e/s/p/ http://www.kaos.dk/sexriddle/x/u/e/s/q/ http://amc.hollywood.com/maltin/k/kellysheroes-1970.htm http://amc.hollywood.com/maltin/k/kidsarealrightthe-1979.htm http://amc.hollywood.com/maltin/k/killingofsistergeorgethe-1968.htm http://amc.hollywood.com/maltin/k/kingandcountry-1964.htm http://amc.hollywood.com/maltin/k/kinglear-1987.htm http://amc.hollywood.com/maltin/k/kingofthezombies-1941.htm http://amc.hollywood.com/maltin/k/kingqueenknave-1972.htm http://amc.hollywood.com/maltin/k/kissthe-1988.htm http://www.egroups.com/login.cgi?login_target=%2Fgroup%2Ft-ida http://polygraph.ircache.net:8181/faculty/http_-2www.stopwaste.org/freecontent.html http://kutschen.de/Schoner/literature/Literatur/models/collections/ http://www.incestpornstories.com/cum-sex-pics/anal-sexone-night-stand/big-bonedpleasantly-plump/smallwomen/{hardcorelink} http://www.nytimes.com/library/financial/102897market-turmoil.html http://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/ie/http_-2www.ci.alameda.ca.us/main_left.html http://polygraph.ircache.net:8181/services/define/http_-2www.microsoft.com/ie/http_-2www.ci.alameda.ca.us/dream.htm http://www.chiayi.gob.tw/ http://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d77/b77,c,4d,51,51,df1,df1,,4e,2b62,4d,4e,2b62,, http://citeseer.nj.nec.com/cidcontext/6361 http://citeseer.nj.nec.com/cidcontext/6456 http://utenti.tripod.it/Psychozine/Grunge/Creed_MyOwnPrison.htm http://tucows.multiweb.net/winme/adnload/138210_30315.html http://tucows.multiweb.net/winme/adnload/138190_29551.html http://tucows.multiweb.net/winme/adnload/138218_29576.html http://tucows.multiweb.net/winme/preview/138219.html http://playsky.home.chinaren.com/star_region/11.htm http://tucows.phnet.fi/winme/adnload/137614_29054.html http://www.fortunecity.com/millennium/blyton/118/www.bih.net.ba/~sda http://www11.informatik.tu-muenchen.de/lehre/lectures/ws2000-01/hypermedia/extension/html-kurz/hm2.2.4.2-navigation.html http://ads.puntopartenza.com/cgi-bin/redirect.cgi/31033737 http://www.eud.com/1997/03/20/20324A.shtml http://ftp.net.uni-c.dk/pub/linux/mandrake/i586/Mandrake/mdkinst/usr/share/locale/gl/?N=D http://no.sport.yahoo.com/s/snowboard-1.html http://www.egroups.com/login.cgi?login_target=%2Fmessages%2Fshamanism%2F1311 http://yp.gates96.com/5/82/70/13.html http://yp.gates96.com/5/82/70/74.html http://yp.gates96.com/5/82/71/30.html http://yp.gates96.com/5/82/71/44.html http://yp.gates96.com/5/82/72/22.html http://yp.gates96.com/5/82/72/72.html http://yp.gates96.com/5/82/72/88.html http://yp.gates96.com/5/82/73/60.html http://yp.gates96.com/5/82/73/79.html http://yp.gates96.com/5/82/74/21.html http://yp.gates96.com/5/82/74/59.html http://yp.gates96.com/5/82/74/62.html http://yp.gates96.com/5/82/74/75.html http://yp.gates96.com/5/82/74/78.html http://yp.gates96.com/5/82/75/30.html http://yp.gates96.com/5/82/75/32.html http://yp.gates96.com/5/82/75/82.html http://yp.gates96.com/5/82/76/16.html http://yp.gates96.com/5/82/76/43.html http://yp.gates96.com/5/82/76/72.html http://yp.gates96.com/5/82/77/48.html http://yp.gates96.com/5/82/77/99.html http://yp.gates96.com/5/82/78/73.html http://yp.gates96.com/5/82/79/28.html http://yp.gates96.com/5/82/79/70.html http://yp.gates96.com/5/82/79/83.html http://polygraph.ircache.net:8181/http_-2www.microsoft.com/ie/http_-2www.petrophysics.com/http_-2www.uio.no/~thomas/lists/info.html http://www.munster-express.ie/000623/sports1.htm http://cisne.sim.ucm.es/search*spi/aThiollier,+François-Joël,+int./athiollier+francois+joel+int/-5,-1,0,B/marc&F=athion+soriano+molla+dolores&2,,2 http://www.zjdaily.com.cn/gb/2000/10/05/zjrb0625/guoji/6.htm http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceStoreCategories-BBC70A38_9815_E7A26CDF19A4AB167DD4B69EFB5B17FC http://commerce.was-inc.com/cgi-bin/abtwsam.dll/LbkWebCommerceUserProfile-BBC70A38_9815_E7A26CDF19A4AB167DD4B69EFB5B17FC http://www.shopworks.com/tools/index.cfm/action/search/userid/0003875B-2E5B-19FE-AF65010C0A0A8CF2 http://www.doofpot.nl/~lists/bugtraq/October-99/frm00087.html http://shop.citde.net/b79923.htm http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=divinizzarono&l=it http://pub8.ezboard.com/fwrestlecarwwf.showAddReplyScreenFromWeb?topicID=38.topic http://amrr.com/agents/contact.html?Agents_id=4046 http://www.intellicast.com/LocalWeather/World/UnitedStates/Southeast/NorthCarolina/CarolinaBeach/RAINcast/d1_12/bannerAd.shtml http://www.ferien-immobilien.de/schleswig-holstein/nordfriesland/Verkauf/Gemeinsam/versicherungen/gebaeude/Allgemeine-IB/IIM-Teil/Startseite/Gemeinsam/Inserieren/inserieren.htm http://www.ferien-immobilien.de/schleswig-holstein/nordfriesland/Verkauf/Gemeinsam/versicherungen/gebaeude/Allgemeine-IB/IIM-Teil/Startseite/Gemeinsam/feedback.html http://de.excite.com/jobs/katalog/10349 http://pub16.ezboard.com/frealitycheck95307youadoreus.showAddReplyScreenFromWeb?topicID=33.topic http://www.maas.ccr.it/cgi-win/hiweb.exe/a17/d2424/b77,e,4d,51,51,df1,df1,,978,,51,978,815,,51,815, http://dk.egroups.com/message/noholdsbarred/2138 http://kr.news.yahoo.com/headlines/so/20001029/hankook/2000102919513187338.html http://www.buybuddy.com/sleuth/27/1/11002/508910/ http://yp.gates96.com/13/95/50/10.html http://yp.gates96.com/13/95/50/47.html http://yp.gates96.com/13/95/51/16.html http://yp.gates96.com/13/95/51/17.html http://yp.gates96.com/13/95/51/21.html http://yp.gates96.com/13/95/51/76.html http://yp.gates96.com/13/95/53/5.html http://yp.gates96.com/13/95/54/17.html http://yp.gates96.com/13/95/54/44.html http://yp.gates96.com/13/95/54/67.html http://yp.gates96.com/13/95/54/80.html http://yp.gates96.com/13/95/55/67.html http://yp.gates96.com/13/95/56/15.html http://yp.gates96.com/13/95/56/91.html http://yp.gates96.com/13/95/57/9.html http://yp.gates96.com/13/95/57/12.html http://yp.gates96.com/13/95/57/24.html http://yp.gates96.com/13/95/57/30.html http://yp.gates96.com/13/95/57/46.html http://yp.gates96.com/13/95/58/38.html http://yp.gates96.com/13/95/58/52.html http://yp.gates96.com/13/95/58/80.html http://yp.gates96.com/13/95/59/40.html http://yp.gates96.com/13/95/59/78.html http://ftp.net.uni-c.dk/pub/linux/mandrake/i586/Mandrake/mdkinst/usr/share/locale/gv/?S=A http://home.swipnet.se/~w-10458/sksida.htm http://www.irishnews.com/k_archive/260799/nnews14.html http://dennou-q.geo.kyushu-u.ac.jp/library/Linux/debian-jp/dists/potato-jp/contrib/binary-all/admin/?M=A http://ayasii.virtualspace.net/html/1104/11041141_syuuei_yosimi008.htm http://ayasii.virtualspace.net/html/1104/11041104_nakamura_yuma_2_027.htm http://kikakusvr3.city.yokohama.jp/yhspot/ysc/prelaunch.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=0,1-20,0-9,1-9,2 http://209.52.189.2/discussion.cfm/disco_music/7738/79749 http://www.du-et.net/cgi/mail.cgi?NickName=coota http://ustlib.ust.hk/search*chi/a%7B214c7d%7D%7B213837%7D%7B213c44%7D%7B213779%7D%7B214267%7D%7B21586d%7D%7B21515b%7D%7B21517c%7D%7B213966%7D/a{214c7d}{213837}{213c44}{213779}{214267}{21586d}{21515b}{21517c}{213966}/7,-1,0,B/browse http://user.alpha.co.kr/~backspin/CGI-BIN/upload/files/ http://194.174.50.23/cgi-bin/FisRun/InsertExhibitorIntoNotebook/1/interpack99/e/1217 http://www.paxcapital.com/news/datacenter/200010/27/20001027180508_01.shtml http://www.paxcapital.com/news/datacenter/200010/27/20001027175828_07.shtml http://www.paxcapital.com/news/datacenter/200010/27/20001027173309_53.shtml http://www.paxcapital.com/news/datacenter/200010/27/20001027165004_52.shtml http://genforum.genealogy.com/cgi-bin/print.cgi?lantz::325.html http://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/ports/alpha/packages-current/x11-toolkits/?D=A http://hotop.on.net.cn/diguo/club/disp.asp?owner=A205&ID=914 http://www.babyheirlooms.com/catalog/htmlos.cat/041137.1.3501106310 http://debian.linux.org.tw/debian/dists/frozen/non-free/binary-m68k/mail/?N=D http://cafe5.daum.net/Cafe-bin/Cafe.cgi/member?cafe=LOTTEcleaning http://www-d0.fnal.gov/cgi-bin/cvsweb.cgi/root_gui/data/?sortby=date http://www.concentric.net/~Psaros/DbzUncensored/editorial/edit06-07-98.html http://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4897.g.5093.html http://www.jobvillage.com/channel/jobs/travel/travel_guide/b.4897.g.5070.html http://www.cricket.org/link_to_database/ARCHIVE/1999/OTHERS+ICC/NL_LOCAL/EERSTEKL/VCC_ASIAN-SHAH_EERSTEKL_16MAY1999.html http://health.phinfo.sc.cn/navigator/illness_treatment/diseases_conditions/bone_diseases/spinal_column_injury/default.htm http://cn.egroups.com/message/dfwscan/1412 http://www.babyheirlooms.com/catalog/htmlos.cat/001255.1.1999922108 http://ibm1.cicrp.jussieu.fr/ibmc/classref/ref/UFullStopNumber_DSC.htm http://pda.tucows.fi/palm/adnload/33651_21862.html http://www.fogdog.com/cedroID/ssd3040183330232/nav/products/nhl/chicago_blackhawks/fan/gender/fashion_polo_shirts/ http://www.fogdog.com/cedroID/ssd3040183330232/nav/products/nhl/chicago_blackhawks/fan/gender/nylon_jackets/ http://www.5a8.com/book/wg/zpj/d/delaisai/mgbj/004.htm http://www.5a8.com/book/wg/zpj/d/delaisai/mgbj/050.htm http://jars.developer.com//classes/jresout.cgi?resource=1133 http://dwp.bigplanet.com/billbritton/files/edit.nhtml http://members.tripod.co.jp/snow4/?D=A http://www.lanoticia.com.ni/cronologico/2000/julio/15sabado/capital/capital5.html http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1996/4/0/870960/ http://mayu.sourceforge.net/cgi-bin/nph-ml.cgi/000/http/www.geocrawler.com/archives/3/151/1996/4/0/870950/ http://ftp.ccu.edu.tw/pub/packages/dns/bind/src/8.1.1/ http://www.chez.com/photographies/photos/paysage/page8.htm http://www.ayto-malaga.es/Organismos/Urbanismo/PGMOM/Hojas/calificacion/3/47/34734.htm http://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=3,24,5,18 http://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=9,24,5,18 http://variety.studiostore.com/browse/STARWARSTRIL/PHOTO/b.MOVIES%20STARWARSSAGA%20STARWARSTRIL/s.5FhZToe4 http://www.stud.ntnu.no/~kjonigse/pod/ http://eastday.com/epublish/gb/paper10/20001025/class001000011/hwz225792.htm http://eastday.com/epublish/gb/paper10/20001025/class001000011/hwz225253.htm http://www.jamba.de/KNet/_KNet-KdS8j1-IHd-13g8y/browse.de/node.0/cergpnwyt http://www.la-verdad.com/pg000828/suscr/primera.htm http://www.centc251.org/forums/aca-1/dispatch.cgi/hsi/listUnseen/fol/100020/20,0/1338881 http://ftp.du.se/disk4/FreeBSD/ports/ports/japanese/libicq/pkg-comment http://www.geocities.com/SunsetStrip/Towers/2395/ http://www.geocities.com/joanna_luo http://www.geocities.com/eric_wang_tafe http://www.geocities.com/shsugiharto http://wynnsystems.com/79I_5ase/seek/modifyUser.html http://www.uk.cricket.org/link_to_database/INTERACTIVE/REVIEWS/BOOKS/barry14.html http://perso.wanadoo.fr/alain.falgas/poesie1.htm http://www.linux.com/networking/network/windows_nt/support/tools/SAP/ http://www.rdnet.nl/provstaten1999/491ps.html http://www.thisislancashire.co.uk/lancashire/archive/1998/03/19/FEATURES3VQ.html http://myhome.naver.com/myclass46 http://www.bride.ru/htcgi/ladies/in-26-30/index3.html http://www.internet-verzeichnis.de/branchen/schuhreparaturen/nordrhein-westfalen/ http://dk.egroups.com/post/SonyMavica?act=reply&messageNum=3370 http://www.sneezy.org/Databases/Composers/Instrumentation/008889.html http://www.sneezy.org/Databases/Composers/Instrumentation/009161.html http://fatema2.math.nat.tu-bs.de/doc/sdb/de/html/keylist.LARGEEBDA.html http://ssb.no/kommuner/hoyre_side.cgi?region=1931 http://www.egroups.com/subscribe/mentemalata http://www.debian.org.cn/Bugs/db/67/67056-b.html http://dk.egroups.com/message/ssrdistribution/775?source=1 http://link.fastpartner.com/do/session/600429/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/shopnett.php http://ftp.uk.debian.org/debian/dists/stable/main/binary-arm/text/?D=A http://www.bemi-immobilien.de/IIM-Teil/Startseite/Top-Darlehens-Konditionen/Gemeinsam/3d-service/Startseite/Gemeinsam/erreichenPartner/Top-Darlehens-Konditionen/anforderungsformular.htm http://www.fujian-window.com/Fujian_w/news/mdrb/000816t/1_4.html http://scholar.lib.vt.edu/VA-news/WDBJ-7/script_archives/98/0798/070498/?D=A http://polygraph.ircache.net:8181/services/define/html/President.asp http://old-maps.co.uk/10lancs191/HTML/nav_19034001g.htm http://www.hanter21.co.kr/NetBBS/Bbs.dll/prdata/lst/qqa/f/qqo/000D/zka/B2-kB2-r http://w3.webtourist.net/travel/europe/italy/milan/quarkallsuites.htm http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,5+0,0-9,6-0,1 http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=brillantant&l=fr http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=brillantais&l=fr http://www.mathquest.com/~sarah/HTMLthreads/geopre.descriptions.html http://www.retrobytes.org/classiccmp/9706/msg00827.html http://www.retrobytes.org/classiccmp/9706/msg01408.html http://www.rdnet.nl/provstaten1999/552ps.html http://retailer.gocollect.com/do/session/1912828/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/checkout/shopping_cart.asp http://retailer.gocollect.com/do/session/1912828/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/exclusives/limited_editions.asp http://retailer.gocollect.com/do/session/1912828/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/company_info/privacy_policy.asp http://de.news.yahoo.com/000322/36/nfqj.html http://www.kl.gz.cn/~cco/FUNA022K.htm http://www.launch.com/music/artistpage/pvn_content/0,5219,1013738_videos,00.html http://www14.freeweb.ne.jp/play/kiryuus/keith-burn1-end.htm http://variety.studiostore.com/help/b.MOVIES%20STARWARSSAGA%20STARWARSTRIL/s.BmesFhV7 http://biblioteca.upv.es/bib/doc/doc_siglibros/1828105/26/25/////MLTPAID/Materia%20Lengua%20inglesa%20técnica:%20254/V http://www.outpersonals.com/cgi-bin/w3com/pws/out/_AhIPkFr0_eq7P6TUMbkQGJgpHJOXqtNLZQ55qFmeZARJaJUKHP9RBX3tPWaLEWVLZ_-PAErnbukTTJzs-x0hew4G_r3S85M8fDFaJcIVi3EA4TxNjTbbGIaSLhr8VdNICuBwhPmgZEt662B http://www.outpersonals.com/cgi-bin/w3com/pws/out/IxhI6dPotFAZDugwPbV2pjvsgvIvAP-oFtIZfMptEKMo48cUO8RmvG3Akuk2tktzM_RYBY3yIQE6nl7I2moLEV_nScO7wTfWpFfPR7LHZ3ntJxKS8-a_IukWT4q_o6mjhGw8SSwm http://www.rge.com/pub/languages/perl/clpa/1995-11/171 http://www.rge.com/pub/languages/perl/clpa/1995-11/186 http://www.newmgm.com/cgi-bin/c2k/title_talent.html&id=146091&title_star=FOURFEAT http://www.koreaweekly.co.kr/entertain/book/200009/en20000922185938E701133.htm http://www.koreaweekly.co.kr/entertain/book/200008/en20000824183337E701112.htm http://www.genome.wustl.edu:8021/pub/gsc10/nci/wl/wl72/?N=D http://yp.gates96.com/13/50/70/33.html http://yp.gates96.com/13/50/70/36.html http://yp.gates96.com/13/50/70/53.html http://yp.gates96.com/13/50/71/74.html http://yp.gates96.com/13/50/72/13.html http://yp.gates96.com/13/50/72/17.html http://yp.gates96.com/13/50/72/83.html http://yp.gates96.com/13/50/73/48.html http://yp.gates96.com/13/50/73/79.html http://yp.gates96.com/13/50/73/96.html http://yp.gates96.com/13/50/74/14.html http://yp.gates96.com/13/50/74/57.html http://yp.gates96.com/13/50/75/13.html http://yp.gates96.com/13/50/75/19.html http://yp.gates96.com/13/50/75/30.html http://yp.gates96.com/13/50/75/42.html http://yp.gates96.com/13/50/75/53.html http://yp.gates96.com/13/50/75/90.html http://yp.gates96.com/13/50/77/45.html http://yp.gates96.com/13/50/77/51.html http://yp.gates96.com/13/50/77/79.html http://yp.gates96.com/13/50/78/12.html http://yp.gates96.com/13/50/78/47.html http://yp.gates96.com/13/50/78/69.html http://yp.gates96.com/13/50/78/96.html http://www.tel.de/s/M/MSS.htm http://linux.usu.edu/LDP/LDP/LG/issue23/shoham/node4.html http://www.monaco.gouv.mc/dataweb/gouvmc.nsf/(NewsActu)/d28eaee29b3287d4c1256905004e1ef1!OpenDocument&ExpandSection=9,3,10.1,7,10.4,10.2,5,8,4 http://fi.egroups.com/post/romtrade?act=reply&messageNum=5198 http://www.outpersonals.com/cgi-bin/w3com/pws/out/erhIHCd-6X--WwWIQBR9tYYraJWo8ugur0GyAl8pg21sE-lotAURKodv9HAYnRuTT4ZM0aCKsA5ZVLlq8sgiFNqA4DyAY_GVTyPIEARrzArj8JrWabVCSpg03afQ_Xg3DaCQA17080y7T4EZ http://oneplace.adbureau.net/accipiter/adclick/site=ONEPLACE/area=INDEX/POSITION=BLOCK_1/AAMSZ=120x90/ACC_RANDOM=619055616855 http://cafe6.daum.net/Cafe-bin/Bbs.cgi/MyLoveNYpds/qry/zka/B2-kB23m/qqatt/^ http://cafe6.daum.net/Cafe-bin/Bbs.cgi/MyLoveNYpds/qry/zka/B2-kB2-s/qqatt/^ http://sas.uoregon.edu/sashtml/proc/z0292518.htm http://www02.geocities.co.jp/PowderRoom-Rose/1346/flower02image.html http://www02.geocities.co.jp/PowderRoom-Rose/1346/sozaiheart2.html http://www.jamba.de/KNet/_KNet-sXN8j1-9Hd-13ej3/admLogin.de/node.0/cdn3r3qy3 http://iccardreader.co.kr/ http://online.linux.tucows.com/conhtml/ser_irc_size.html http://www.fogdog.com/cedroID/ssd3040183339940/nav/products/winter_sports/1b/bibs/ http://www.fogdog.com/cedroID/ssd3040183339940/nav/products/winter_sports/1c/jackets/ http://www.fogdog.com/cedroID/ssd3040183339940/nav/products/winter_sports/1d/heavyweight_tops/ http://www.affiliate.hpstore.hp.co.uk/do/session/380883/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/assistance/entry.asp http://www.kaos.dk/sex-riddle/k/a/k/i/l/y/t/c/ http://www.kaos.dk/sex-riddle/k/a/k/i/l/y/t/o/ http://ftp1.se.debian.org/debian/dists/stable/main/disks-alpha/2.2.8-2000-03-08/jensen/ http://213.36.119.69/do/session/153006/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/FR/contact/recrute.htm http://www10.freeweb.ne.jp/photo/myukun2/cosplay/000130/0130_40.htm http://l-infonet.phkk.fi/fi/TIETOPALVELUT/JULKINEN+HALLINTO/tiedonhaku/artikkelit/hakupalvelut/l%E4%E4ketiede/tietokannat/ http://202.109.72.57/article/20000903/67099.htm http://www.outpersonals.com/cgi-bin/w3com/pws/out/5xhIsrJ5LBhn_gBogN2-VgQ1DA6WvBlLMjSoxYeQAJ1ig69sK1i1DhQ5hA3iOw7y6Wb_HDA2rkG5aJy9DrUMZxD31cyUqEqg7LeZ3pssb70DsyPc1sGCTVIRFBz1Nb_1ikEcJ3ds http://ftp.gwdg.de/pub/misc/standards/infomagic/nist/oiw/agreemnt/read_me.txt http://linuxberg.arrakis.es/conhtml/adnload/8894_17109.html http://ring.toyama-ix.net/archives/pc/winsock-l/WWW-Browsers/Plug-In/ppp16124.txt http://opac.lib.ntnu.edu.tw/search*chi/++ftlist/bp20040288/-5,-1,0,B/frameset&F=bp20040286&1,1 http://ftp.darenet.dk/tucows/winme/adnload/137475_28966.html http://ftp.darenet.dk/tucows/winme/adnload/137525_29009.html http://elib.zib.de/pub/UserHome/Mueller/Course/Tutorial/Postscript/US/?M=A http://greenpeace.lu/Admin/usage/weekly/1999/01/03/ http://greenpeace.lu/Admin/usage/weekly/1998/04/26/ http://greenpeace.lu/Admin/usage/weekly/1998/08/16/ http://greenpeace.lu/Admin/usage/weekly/1997/10/12/ http://retailer.gocollect.com/do/session/1912819/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/clubhouse/index.asp http://www.kusastro.kyoto-u.ac.jp/LCs/index/AURAU.html http://www.linux.com/networking/network/windows_nt/support/microsoft/Red_Hat/ http://www.linux.com/networking/network/windows_nt/support/microsoft/operating_system/ http://www.linux.com/networking/network/windows_nt/support/microsoft/SAP/ http://www.linux.com/networking/network/windows_nt/support/microsoft/Unix/ http://www.linux.com/networking/network/windows_nt/support/microsoft/pop-3/ http://www.cs.rit.edu/photo_album/smr3632.html http://www.cpan.dk/CPAN/modules/by-authors/id/C/CH/CHRMASTO/?D=A http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/ego.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/lit/multiple.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/misc/dissert.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/computers/lit/misc/unitest/lit/music/midi/misc/peanuts.html http://www.eastsidejournal.com/sited/retr_story.pl/25409 http://yp.gates96.com/8/46/50/23.html http://yp.gates96.com/8/46/52/6.html http://yp.gates96.com/8/46/52/10.html http://yp.gates96.com/8/46/52/18.html http://yp.gates96.com/8/46/52/25.html http://yp.gates96.com/8/46/53/78.html http://yp.gates96.com/8/46/53/95.html http://yp.gates96.com/8/46/54/26.html http://yp.gates96.com/8/46/54/41.html http://yp.gates96.com/8/46/54/64.html http://yp.gates96.com/8/46/54/76.html http://yp.gates96.com/8/46/54/92.html http://yp.gates96.com/8/46/55/62.html http://yp.gates96.com/8/46/55/94.html http://yp.gates96.com/8/46/55/98.html http://yp.gates96.com/8/46/56/19.html http://yp.gates96.com/8/46/56/42.html http://yp.gates96.com/8/46/56/86.html http://yp.gates96.com/8/46/58/53.html http://yp.gates96.com/8/46/58/57.html http://yp.gates96.com/8/46/59/41.html http://yp.gates96.com/8/46/59/44.html http://yp.gates96.com/8/46/59/84.html http://yp.gates96.com/8/46/59/99.html http://www.158.com.cn/news/2000/09/03/58946.htm http://www.pobladores.com/territorios/juegos/Shanodin/pagina/2 http://www.otemachi.ibm.co.jp/pc/vlp/ca20/32l9068/price.html http://www.gutenberg2000.de/lessing/sinnged/sinna10.htm http://www.gutenberg2000.de/lessing/sinnged/sinn138.htm http://www.gutenberg2000.de/lessing/sinnged/sinnc27.htm http://www.gutenberg2000.de/lessing/sinnged/sinnc06.htm http://calcul.si.uji.es/Programes/SAS/stat/chap4/sect5.htm http://calcul.si.uji.es/Programes/SAS/stat/chap4/sect6.htm http://link.fastpartner.com/do/session/600436/vsid/3194/tid/3194/cid/137201/mid/1060/rid/2105/chid/3194/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/learn.htm http://www.linux.com/networking/network/red_hat/performance/workstations/business/ http://ftp.dei.uc.pt/pub/faqs/backrubs/faq/?D=A http://www2.el-mundo.es/nuevaeconomia/2000/NE022/NE022-16b.html http://ring.toyama-ix.net/pub/linux/linuxppc-jp/2.0/UsersGuide/?N=D http://www.egroups.com/message/swchicks-rpg/763 http://webraft.its.unimelb.edu.au/705195/students/caitlinb/pub/?N=D http://cn.egroups.com/message/indexinvesting/17 http://networkdesigner.subportal.com/sn/Programming/Setup_Utilities/11753.html http://www.imagestation.com/member/?name=Mermaid34v&c=1 http://crn.com/Components/TalkBack/tb-read.asp?ArticleId=8463 http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/lit/computers/music/linux/misc/thoughts/turingtest.html http://www.egroups.com/message/house_caliburnus/1479 http://pub14.ezboard.com/BBSForum.showForumSearch?boardName=bleemtest http://spaceports.tucows.com/winme/adnload/136943_28461.html http://www.cerent.com/warp/public/767/spcl/vaccess/req-lab.html http://www.ualberta.ca/icons/icons/numbers/Big-orange-thin/ http://www.gencat.es/cgi-bin/bc/drawer.cgi/LD/0004/A00027?98 http://interhotel.com/romania/en/hoteles/49235.html http://www.infoscape.com.cn:8171/nf/0001/19/nfzx1908.htm http://www.hurriyetim.com/akdeniz/turk/00/05/25/akdhab/62akd.htm http://www.hurriyetim.com/akdeniz/turk/00/05/25/akdhab/38akd.htm http://dennou-t.ms.u-tokyo.ac.jp/arch/cc-env/Linux/debian-jp/dists/woody-jp/contrib/binary-ia64/misc/?M=A http://www.angelfire.com/vt/Mystical2 http://www.indonesiansources.com/HELP/COOKIES.HTM http://members.nbci.com/cmeadows/gvi/45regt/45gvibat.html http://members.nbci.com/cmeadows/gvi/45regt/45gvicob.html http://landview.census.gov/hhes/www/housing/soma/char96/ch96tab5.html http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPENNSYLVANIAdENERGYdASSISTANCEdANDdCONSERVATIONdACT.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPENNSYLVANIAdSEWAGEdFACILITIESdACT.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPODIATRYdPRACTICEdACT.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPRESIDENT.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPRIVATEdMORTGAGEdINSURANCEdACT.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPROJECTd500.HTM http://www.legis.state.pa.us/WU01/LI/BI/TI/1985/0/MNPUBLICdWORKSdCONTRACTdREGULATIONdLAW.HTM http://oss.sgi.com/cgi-bin/cvsweb.cgi/inventor/apps/samples/4view/Attic/Imakefile?only_with_tag=MAIN http://oss.sgi.com/cgi-bin/cvsweb.cgi/inventor/apps/samples/4view/Attic/Imakefile?only_with_tag=HEAD http://www4.50megs.com/justiceinn/charpages/leaves/707.html http://www4.50megs.com/justiceinn/charpages/leaves/859.html http://www4.50megs.com/justiceinn/charpages/leaves/171.html http://www4.50megs.com/justiceinn/charpages/leaves/114.html http://megalink.tucows.com/win2k/adnload/38582_28844.html http://members.tripod.lycos.nl/monthlysports/hello_and_welkom_at_the_new.htm http://coe.ier.hit-u.ac.jp/BibEc/data/Papers/nbrnberwo4558.html http://coe.ier.hit-u.ac.jp/BibEc/data/Papers/nbrnberwo4462.html http://coe.ier.hit-u.ac.jp/BibEc/data/Papers/nbrnberwo4813.html http://pub4.ezboard.com/factiveprodiscussioncommunityhottopicsresidentsandalcohol.showMessage?topicID=3.topic http://207.138.41.133/subscribe/IndoVStudio http://www.biuemountain.com/eng3/karen/EArejoice.html http://polygraph.ircache.net:8181/wwwboard/capabilities/http_-2www.westnebr.net/http_-2www.excite.com/grservic.htm http://pub7.ezboard.com/fturonneuemissionennebenwerteundsonstigewerte.showAddReplyScreenFromWeb?topicID=58.topic http://dk.egroups.com/post/badbart-showdown?act=forward&messageNum=679 http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus62920/eus62921/eus64894/eus170276/eus163832/ http://www.algonet.se/~d88628/engelsk/various.htm http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=220&discrim=220,215,11 http://www.z-plus.de/TEXTE/INETCO/AUSG20000524/text7.html http://www.gbnf.com/genealog2/varner/html/d0059/I11636.HTM http://www.musiciansfriend.com/ex/ds/live/001030183152064208037007463633 http://www.musiciansfriend.com/ex/ds/home/001030183152064208037007463633?dbase=info,order_info.html http://www.musiciansfriend.com/ex/ds/guitar/amps/001030183152064208037007463633?dbase=info,contact.html http://pix.egroups.com/message/ipe/1642?source=1 http://213.36.119.69/do/session/153008/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://resa.travelprice.com/CallCenter/InitCommunicationAgence http://213.36.119.69/do/session/153008/vsid/1113/tid/1113/cid/28507/mid/1020/rid/1041/chid/1103/parser/yes/imref/eqqLmwlGltt5tkqHoXsLbimLofZLbkZHljlK6IlK/url/http://www.travelprice.com/DE_DE/ http://www.egroups.com/message/peninsulaserv/567 http://www.scifi.com/bboard/browse.cgi/1/5/545/12425?pnum=3 http://no.egroups.com/post/icc-info?act=reply&messageNum=759 http://www.chaos.dk/sexriddle/s/e/x/e/c/s/l/ http://www.chaos.dk/sexriddle/s/e/x/e/c/s/t/ http://www.nissan.co.jp/RENAULT-DEALERS/PASSPORT/view.cgi/search/972959630-- http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=6,29,20,36,32 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=7,29,20,36,32 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=27,29,20,36,32 http://dada.linuxberg.com/gnomehtml/adnload/31471_2540.html http://augustasports.com/football99/college/box_50347.shtml http://augustasports.com/football99/college/box_50365.shtml http://augustasports.com/football99/college/box_50423.shtml http://www.linux.com/networking/network/enterprise/e-commerce/management/open_source/ http://usol.pdacentral.com/winnt/preview/1946.html http://usol.pdacentral.com/winnt/preview/78287.html http://usol.pdacentral.com/winnt/preview/1338.html http://usol.pdacentral.com/winnt/preview/12860.html http://usol.pdacentral.com/winnt/preview/6920.html http://usol.pdacentral.com/winnt/preview/51381.html http://ring.htcn.ne.jp/pub/lang/perl/CPAN/authors/id/W/WO/?N=D http://grybrd.subportal.com/sn/Network_and_Internet/Text_Chat_Clients/index1.html http://www.gurlpages.com/lacej/part13.html http://ring.shibaura-it.ac.jp/archives/mac/info-mac/game/com/wolf/?D=A http://cgi.cnnsi.com/baseball/mlb/nl/gamelog/2000/10/07/mets_giants/ http://my.egroups.com/messages/not_honyaku/236 http://members.tripod.com/agran_gassendi/Countdown.htm http://www.tccomputers.com/cgi-bin/bp/1878637479/showcase/showcase.htm http://207.138.41.133/message/AikensTrivia/264 http://207.138.41.133/message/AikensTrivia/276 http://www.shumway.org/thetree/ped13583.htm http://link.fastpartner.com/do/session/600421/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/dk/ http://link.fastpartner.com/do/session/600421/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/politiken.php http://link.fastpartner.com/do/session/600421/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/jobs.htm http://in.egroups.com/message/canada/856 http://in.egroups.com/message/canada/883 http://debian.tod.net/OpenBSD/src/lib/libssl/README.OPENBSD http://www.emerchandise.com/main/EMERCH/s.1M38gYrZ http://www.emerchandise.com/browse/TOYSTORY2/FIGURINE/b.FAVORITES%20COMICS%20ANIMFEAT%20TOYSTORY2/s.1M38gYrZ http://quotidiano.monrif.net/chan/cronaca_nazionale:410879.1:/1999/12/24 http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=baignes&l=fr http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=baignas&l=fr http://www.egroups.com/message/swchicks-rpg/93 http://usuarios.tripod.es/jlgolis/id142_l.htm http://www9.freeweb.ne.jp/shopping/nossy/baby/200-59.html http://www9.freeweb.ne.jp/shopping/nossy/baby/305-36.html http://ftp.tku.edu.tw/OS/NetBSD/NetBSD-1.3.2/alpha/binary/kernel/?D=A http://www-1.cisco.com/univercd/cc/td/doc/product/wanbu/82/access/fpmpmm12/fpmmappe.pdf http://pub17.ezboard.com/fartofnorrathfavoritepaintings.threadControl?topicID=56.topic http://itcareers.careercast.com/texis/it/itjs/+pwwBmew_D86eGrwwwqFqygdMpwDOeWXqqBcneWkjnwBneWkxqBOeWRlmmOtFqewyXwotoBwcaMwDwtnanmowcdt1naqconDBaGncwBodD5ropa5BGwBnton5amnVncdpaMwGAnBoDtanMwocaGn51MnaMFqryfHfREIDzmbwwwpBmFe-B-dehxwww5rmXmwwBrmeZpwww/morelike.html http://www.thestateofcolorado.com/aoubicycling.html http://www.freespeech.org/DISjak/disnews/maillist.html http://www.freespeech.org/DISjak/sport/schwimm/bestlist.html http://www.amigos.com/cgi-bin/w3com/pws/ffe/_MhIXE2wgPJZ1X047wqRwM-olUgaV3vI6fBPmDsoD0c26y7TrHjLUhhhTSIZ2PRmqLmBVyInWJLkLGkKScrdFyX1uyXCZhvaWFvbnSFioewAURJcXQC-hJE5KczVcMUiq3ncgKjQh7nynQEu662C http://m.home.cern.ch/m/mrashid/www/cuisine/cuisin13.htm http://m.home.cern.ch/m/mrashid/www/cuisine/cuisin28.htm http://www.dayoo.com/channel/stock/news/cjzh/09/0921/06.htm http://webcvs.kde.org/cgi-bin/cvsweb.cgi/KodeKnight/lib/Makefile.am?r1=1.3&sortby=rev http://www.fogdog.com/cedroID/ssd3040183315779/nav/products/featured_brands/12p/all/ http://www.fogdog.com/cedroID/ssd3040183315779/nav/stores/baseball/ http://www.fogdog.com/cedroID/ssd3040183315779/nav/stores/squash/ http://www9.hmv.co.uk:5555/do/session/1347832/vsid/199/tid/199/cid/1061396/mid/1020/rid/1052/chid/1029/parser/yes/imref/eqqLmwlGltt5tkeHjskKZlkKrhlK/url/http://www.hmv.co.uk/hmv/newmenu.html http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=9,36,8 http://www.arm.com/sitearchitek/support.ns4/html/cores_faq!OpenDocument&ExpandSection=24,36,8 http://www.hig.se/(append,countdown,set,sqloutput,sqltable)/~jackson/roxen/ http://ring.jec.ad.jp/archives/linux/kernel.org/kernel/people/mingo/raid-patches/raid-2.2.17-A0 http://www.wsrn.com/apps/links/?s=BKIRF http://www.auto.ru/wwwboards/mercedes/0163/ http://www.auto.ru/wwwboards/mercedes/0142/ http://www.auto.ru/wwwboards/mercedes/0132/ http://www.auto.ru/wwwboards/mercedes/0002/ http://www.auto.ru/wwwboard/mercedes/0014/ http://www.presa.spb.ru/newspapers/dp/arts/dp-178-art-12.html http://pub8.ezboard.com/fnirlcomcenterracetalk.showMessage?topicID=8.topic http://www.allhealth.com/pregnancy/labor/qa/0,3105,599,00.html http://www3.newstimes.com/archive99/sep0499/lce.htm http://jupiter.u-3mrs.fr/~msc41www/PSHTM/PS4330.HTM http://www.gpul.org/ftp/os/linux/cd-images/other/suse/dosutils/pfdisktc/ http://platsbanken.amv.se/kap/text/88/001025,010050,240907,10,0107051488.shtml http://www.angel-bastel-zoo.de/detail/detail_811_3.htm http://members.nbci.com/cmeadows/gvi/3battn/3bgvicob.html http://www.chaos.dk/sexriddle/s/e/x/x/p/o/r/ http://www.asiastockwatch.com/sg/Forum/ForumDetails/0,1819,561_1_2:15,00.html http://mysanantonio.sportshuddle.com/sports/football/health/advisors/workouts/huff12.asp http://mysanantonio.sportshuddle.com/sports/football/health/advisors/workouts/huff1.asp http://ring.data-hotel.net/pub/linux/debian/debian-jp/dists/unstable/contrib/source/math/ http://www.tel.de/s/I/IFG.htm http://www.tel.de/s/I/IFHV.htm http://chat.hr-online.de/fs/buecherbuecher/buch/kerr.html http://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/branches/2.2-stable/src/sys/dev/ http://mirror.cc.utsunomiya-u.ac.jp/mirror/FreeBSD/branches/2.2-stable/src/sys/nfs/ http://www.malaysia.net/lists/sangkancil/1998-12/msg01044.html http://biblio.cesga.es:81/search*gag/aFerreiro,+Martín/aferreiro+martin/-5,1,1,E/frameset&F=aferreiro+manuel&4,,4 http://www.ferien-immobilien.de/DominikanischeRep/verkauf/Exklusiv-IB/Startseite/Gemeinsam/MarketingStrategie/Exklusiv-IB/Startseite/Gemeinsam/erreichenPartner/email3d.htm http://www.ferien-immobilien.de/DominikanischeRep/verkauf/Exklusiv-IB/Startseite/Gemeinsam/MarketingStrategie/Exklusiv-IB/Startseite/Gemeinsam/IIMMitglieder.htm http://chunma.yeungnam.ac.kr/~home/home13/msgboard/msgboard.cgi?cmd=list&stat=start http://link.fastpartner.com/do/session/600413/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/local/redirect.php http://www.eyeball.symantec.co.uk/region/se/sepress/20000418111220.htm http://www.rezel.enst.fr/ftp/linux/distributions/debian/CD-1/dists/frozen/main/binary-all/news/?D=A http://www.latimes.com/editions/orange/20001028/p000103070_ome0014.html http://www.chaos.dk/sexriddle/j/c/u/t/ http://cometweb01.comet.co.uk/do!session=132050&vsid=694&tid=20&cid=37044&mid=1000&rid=1060&chid=1711&url=eqqLmwlGltt5tkkHbqpLZXmLbkZHljlKaltLkilLXalKfkaLbukKeqjLi1 http://perso.wanadoo.fr/jm.michaud/electronique_index.htm http://dk.egroups.com/messages/Gunsmithing/1446?viscount=-30 http://www-d0.fnal.gov/d0dist/dist/releases/psim01.02.00/pmcs_met/VERSION http://mirror.cc.utsunomiya-u.ac.jp/mirror/CPAN/authors/id/P/PM/?N=D http://www.movieguide.com/pressroom/events/amcinema96/award_amcinema965.html http://www.sda.t-online.de/reise/index/aktrex201.htm http://dic.empas.com/show.tsp/SMASHER http://www.3w-posters.com/tomlinson.htm http://www.3w-posters.com/tuttle.htm http://www.xmission.com/(art,dots,ftp,geek,misc,music,caffiene,art,toys,dots,edge,misc,shopping,ftp,places,privacy,geek,cuseeme,apocalypse,people,stuffiuse,places,stuffiuse)/~bill/links.html http://www.osiris.978.org/~brianr/mirrors/olga/main/g/gangi_mike/?N=D http://www.best.com/~workpage/g/57/300g.htm http://www.cyd.com.cn/zqb/19991109/GB/9677^Q212.htm http://edu.news.chinaren.com/161/10112157.shtml http://users.info.unicaen.fr/~jjousset/perso/html/entrainperso/page.html http://www.wordtheque.com/owa-wt/wordtheque_dba.w.t?w=destituiscono&l=it http://www.uk.multimap.com/p/browse.cgi?pc=B771AA&cat=loc http://www.auxerre.culture.gouv.fr/culture/actualites/conferen/bonneuil-duffour.htm http://www.auxerre.culture.gouv.fr/culture/actualites/communiq/mediaBonneuil-Duffour.htm http://www.ancientsites.com/~Ftagn_Sithathor http://biblioteca.upv.es/bib/doc/doc_fisbd/86/127697//C/1820009/0////25/N/MLTPAI http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53930/eus169714/eus169722/eus542057/eus542410/ http://www.kfi640.com/shared/mod_perl/looksmart/looksmart/eus1/eus53930/eus169714/eus169722/eus542057/eus542106/ http://pub26.ezboard.com/fathanasiafrm1.showMessage?topicID=113.topic http://www.sourceforge.net/softwaremap/trove_list.php?form_cat=186&discrim=186,226,251 http://www.linux.com/networking/network/community/future/news/services/ http://www.linux.com/networking/network/community/future/news/operating_system/ http://www.linux.com/networking/network/community/future/news/?kw_offset=50 http://www.linux.com/networking/network/development/unix/open_source/commercial/ http://ring.shibaura-it.ac.jp/pub/misc/ham/funet/packet/00Index http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+20,0+17,0-( http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=3,0+20,0+17,0-9,1 http://www.vorlesungen.uni-osnabrueck.de/informatik/c98/aufgaben/code/aufg50/ProcessInfo/ProcessInfo.bundle/Resources/?D=A http://wap.jamba.de/KNet/_KNet-xOQ8j1-xHd-13fk7/showInfo-special1.de/node.0/cde7f1uou http://nx5.salon.com/books/col/keil/2000/05/02/too_old/index2.html http://pcmagazin.de/news/artikel/1999/04/29016-wf.htm http://www.redrival.com/rgrascher/ http://208.184.36.144/cwi/subscriptions/privacy_policy/0,1323,NAV47-68-85-98_STO52856,00.html http://www.staroriental.net/nav/soeg_c/ihf,aol,n12,1,TVB香港小姐2000.html http://www.staroriental.net/nav/soeg_c/ihf,aol,n12,6,TVB香港小姐2000.html http://166.111.104.242/uscode/30/541b.head.html http://stocks.tradingcharts.com/stocks/charts/fwrx/dchart.php?S=fwrx&T=d http://genforum.genealogy.com/cgi-bin/print.cgi?plemmons::57.html http://www.geocities.co.jp/Hollywood-Studio/3572/geodiary.html http://www.luf.org/~jwills/LufWiki/view.cgi/Tech/ http://www.doc.ic.ac.uk/lab/labsrc_area/firstyear/submissions/cs1/labs/Ex01/arr00/?M=A http://citeseer.nj.nec.com/ps/332798 http://citeseer.nj.nec.com/addcomment/332798 http://citeseer.nj.nec.com/cidcontext/4075337 http://ftp.te.fcu.edu.tw/cpatch/helputil/answerworks/?M=A http://ftp.te.fcu.edu.tw/cpatch/helputil/answerworks/d2hpro4ethanks.htm http://link.fastpartner.com/do/session/600423/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/join/programmes/mondosoft.php http://link.fastpartner.com/do/session/600423/vsid/2870/tid/2870/cid/136966/mid/1060/rid/1926/chid/2870/parser/yes/imref/eqqLmwlGltt5tkcHXpqLmXoLqkbLokZHljlK/url/http://www.fastpartner.com/company/ http://library.cuhk.edu.hk/search*chi/dEnglish+language+--+Clauses./denglish+language+clauses/7,-1,0,B/browse http://www04.u-page.so-net.ne.jp/yd5/yuma/top/home.html http://www.smartshop.com/cgi-bin/main.cgi?c=1905&ssa=26 http://www.smartshop.com/cgi-bin/main.cgi?c=1943&ssa=26 http://se.egroups.com/dir/Business/Management/Project_and_Program_Management/Training?st=10 http://www.hpl.online.sh.cn/WENXUE/tongsuo/wuxia/gulong/xueying/_vti_cnf/hs~001.htm http://news.medscape.com/adis/PEON/public/archive/1999/toc-0221.html http://news.medscape.com/adis/PEON/public/archive/1999/toc-0197.html http://tucows.hongkong.com/winnt/adnload/4256_29575.html http://www.etang.com/local/shenzhen/shopping/shop/0318mans02.htm http://www.etang.com/local/shenzhen/shopping/shop/0319foll.htm http://www.etang.com/local/shenzhen/shopping/shop/0319jialjs.htm http://www.staffan.addr.com/cgi-bin/woda/icq.cgi/Edit?_id=2a5e http://www.linux.com/networking/network/operating_system/kernel/distro/?printable=yes http://www.linux.com/networking/network/operating_system/kernel/distro/commercial/ http://www.linux.com/networking/network/operating_system/kernel/distro/white_dwarf/ http://dir.dig.co.kr/parents/textbook/20301030101.html http://www.affiliate.hpstore.hp.co.uk/do/session/380895/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/fr/CASHBACK/entry.asp http://ccuftp.ccu.edu.tw/pub1/chinese/linux/clinux/c1/?N=D http://cgi.cnnsi.com/basketball/college/women/boxscores/2000/03/07/cbp_rak http://www.adcentral.com/cgi-bin/w3com/pws/adsites/5BRIztXQWHs_H_kyq8hmyrHpmCLb5RfQ09-DcKP1B6mZibAiJTLy1w3iiFS15WkFiCHMuMtjNK5FtHPDtZ7rxwckgoj0GaicnAZxhJLQ3zWaLoNUq8eTpG7wCxe3TWAb66jt http://www.varsity.cam.ac.uk/varsity/live/2000/listings.nsf/44bbd1c2a6305036802567fb0081c76b!OpenView&Grid=1&Date=1999-04-06 http://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=15,21,5,4 http://students.lsu.edu/students/main.nsf/Pages/CSISAJ1!OpenDocument&ExpandSection=18,21,5,4 http://www.getplus.co.jp/category/catinet.homepagew2.asp http://www.motorradversand.de/cgi-bin/antrieb/kettensatz_komplett_suzuki/RK82K872/beurteilung.htm http://202.99.23.245/zdxw/13/20000328/200003281335.html http://proxy.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/22/Ort/120/Infrastruktur/299270/Homepage/homepage...1.html http://www.jamba.de/KNet/_KNet-RcO8j1-cHd-13eq4/browse.de/node.0/cdel3j591 http://www.jamba.de/KNet/_KNet-RcO8j1-cHd-13eqf/showInfo-wir.de/node.0/cde7f1uou http://pub6.ezboard.com/fcrazyassmb47001generalshiznit.threadControl?topicID=685.topic http://perso.infonie.fr/imagestld/photojyg5/images/alive5/?D=A http://members.spree.com/sip1/take5planet/videos.htm http://ae.boston.com/haiku/vote?haiku_id=4484 http://adex3.flycast.com/server/socket/127.0.0.1:2800/click/OnlineCitiesSM/OnlineCitiesInteractiveCityGuides/bd129601192 http://www.digitaldrucke.de/(aktuell,computer,marktplatz,shopping,verkehr)/suche/uebersicht.html http://www.digitaldrucke.de/(aktuell,computer,hersteller,marktplatz,verkehr)/_fort/html/themen/computer/hard/herstell.htm http://bbs.kcm.co.kr/NetBBS/Bbs.dll/kcmmission/lst/qqeq/1/zka/B2-kD2-l/qqo/004A http://bbs.kcm.co.kr/NetBBS/Bbs.dll/kcmmission/rcm/zka/B2-kD2-l/qqo/004A/qqatt/^ http://ftp.eq.uc.pt/software/lang/tcl/ftp.scriptics.com/nightly-cvs/tk/library/?S=A http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-141.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-165.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-241.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-239.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-150.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-44.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-12.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-4.html http://www.infomedia.it/cgi-bin/lwgate/JAVA-IT/archives/java-it.log.9704/Subject/article-27.html http://yp.gates96.com/5/88/50/47.html http://yp.gates96.com/5/88/50/94.html http://yp.gates96.com/5/88/51/20.html http://yp.gates96.com/5/88/52/11.html http://yp.gates96.com/5/88/52/26.html http://yp.gates96.com/5/88/53/86.html http://yp.gates96.com/5/88/53/99.html http://yp.gates96.com/5/88/54/48.html http://yp.gates96.com/5/88/55/29.html http://yp.gates96.com/5/88/55/31.html http://yp.gates96.com/5/88/55/41.html http://yp.gates96.com/5/88/55/62.html http://yp.gates96.com/5/88/55/77.html http://yp.gates96.com/5/88/56/62.html http://yp.gates96.com/5/88/56/93.html http://yp.gates96.com/5/88/59/61.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/2090.918081010.176207534.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/1123.920140263.921690399.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/19089.918231855.610311830.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/16059.919279797.801472096.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/24001.919906575.275033199.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/14848.918256026.548154577.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/10783.918253985.660158806.html http://ceu.fi.udc.es:8000/mc/maillist/99-02/27581.918670666.1055622954.html http://www.activedayton.com/sportsticker/stnd/current/BBH.STAT.FSLKISLTRT.html http://www.teenplatinum.com/barelylegal/japanesewomen/boots/petitesmall/explodingblowjob/eunuchbodyshots/homosexualass.html http://books.hyperlink.co.uk/xt1/Methodology_for_the_Harmonization_of_European_Occupational_Accident_Statistics/9282641007 http://www.jpc-music.com/2563637.htm http://www.jpc-music.com/8168850.htm http://www.expage.com/sugarshackstablesapryl http://www.egroups.com/messages/svlug/31105 http://www.chinawolf.com/~warson/japan/chichuan/bride/mldxn/009.htm http://www.chinawolf.com/~warson/japan/chichuan/bride/mldxn/011.htm http://yp.gates96.com/11/78/70/19.html http://yp.gates96.com/11/78/70/95.html http://yp.gates96.com/11/78/71/64.html http://yp.gates96.com/11/78/71/65.html http://yp.gates96.com/11/78/72/30.html http://yp.gates96.com/11/78/73/35.html http://yp.gates96.com/11/78/74/0.html http://yp.gates96.com/11/78/75/58.html http://yp.gates96.com/11/78/76/75.html http://yp.gates96.com/11/78/77/36.html http://yp.gates96.com/11/78/77/64.html http://yp.gates96.com/11/78/78/20.html http://yp.gates96.com/11/78/78/33.html http://yp.gates96.com/11/78/78/70.html http://yp.gates96.com/11/78/78/93.html http://yp.gates96.com/11/78/79/3.html http://yp.gates96.com/11/78/79/50.html http://ben.aspads.net/ex/c/190/649604396 http://www.lifl.fr/PRIVATE/Manuals/java/jdk1.2/docs/api/java/applet/class-use/AudioClip.html http://dic.empas.com/show.tsp/?q=cea&f=B http://beautifulthemes.subportal.com/sn/Utilities/Disk_Maintenance_and_Repair_Utilities/5294.html http://ustlib.ust.hk/search*chi/anational+bureau+of+economic+research/anational+bureau+of+economic+research/-5,-1,0,E/frameset&F=anational+bureau+of+asian+and+soviet+research+u+s&1,,0 http://www.canlii.org/ca/regl/dors99-120/art5.html http://www.canlii.org/ca/regl/dors99-120/partie144284.html http://www.incestpornstories.com/freshmanteen/eggbirth-canal/loverdrag-queen/birth-canalfull-term/stomachvagina.html http://www.fashion-j.com/bs/013/013/19.html http://www.fjtcm.edu.cn/Fujian_w/news/fjgsb/990311t/1-3.htm http://www.kaos.dk/sex-riddle/k/a/k/i/s/z/r/d/ http://www.kaos.dk/sex-riddle/k/a/k/i/s/z/r/f/ http://www.tccomputers.com/cgi-bin/bp/41291345/products/specials/mbbundle.htm http://www.tccomputers.com/cgi-bin/bp/41291345/services/insight.htm http://www.tccomputers.com/cgi-bin/bp/41291345/products/batterybackups/batterybackups.htm http://cartografia.comune.modena.it/Ril_Whip/menuogg/001-100/ME0068c.htm http://library.bangor.ac.uk/search/cWS+5+V196a+2000/cws++++5+v196+a+2000/7,-1,0,B/frameset&F=cws+++21+e84+1989&5,,12 http://mindit.netmind.com/proxy/http://www.exposure.aust.com/~promote1/auspalaeo/tectonix/tect1.htm http://ftp.fi.debian.org/debian/dists/unstable/non-free/binary-i386/shells/?S=A http://excite.de.netscape.com/unterhaltung/katalog/19344 http://www.symatrixinc.com/website/website.nsf/0/3e40df86fb357cd5882568720079613f!OpenDocument&ExpandSection=25,20,21,29 http://www.burstnet.com/ads/ad7826a-map.cgi/1708189811 http://dic.empas.com/show.tsp/?s=b&q=CONSIDERABLE http://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/c/ http://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/h/ http://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/n/ http://www.kaos.dk/sex-riddle/k/a/k/i/p/g/t/x/ http://www.cbe21.com.cn/xueke/dili/jiaoxuezs/ziliaojn/tupianhc/i0602.htm http://babycenter.netscape.com/bbs/3788/thread530/message9.html http://polygraph.ircache.net:8181/http_-2www.harborbay.com/home/webstuff/companyprofile.htm http://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/bibl-uno/512098188/threadconfig http://dante.bdp.it/cgi-bin/poseidon_v2.0/reflect/poseidon/disc/bibl-uno/512098188/newconfig http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=5,1,16,25,13 http://www2.hgo.se/Kurskatalogen.nsf/a49e2126c83c4922412566f60052f831/f24cc45affc890eec12565d80055e0b9!OpenDocument&ExpandSection=28,1,16,25,13 http://ftp.sunet.se/pub/lang/perl/CPAN/authors/id/R/RH/?D=A http://www.geocities.co.jp/SilkRoad/1618/nixxki/010799.html http://genforum.genealogy.com/cgi-genforum/forums/americanrev.cgi?4444 http://in.egroups.com/message/djgppgames/358 http://freehost.crazyhost.com/teengallery/apbh/panty.html http://buffy.acmecity.com/xander/366/EDpt2.htm http://www.tccomputers.com/cgi-bin/bp/505218695/promotional/deals.htm http://www.tccomputers.com/cgi-bin/bp/505218695/products/cooling/cooling.htm http://www.tccomputers.com/cgi-bin/bp/505218695/products/dvds/dvds.htm http://www.tccomputers.com/cgi-bin/bp/505218695/products/mice/mice.htm http://www.tccomputers.com/cgi-bin/bp/505218695/services/register.htm http://www.foxsports.com/nba/scores/2000/000129_playbyplay_clewas.sml http://pub1.ezboard.com/fcellofuncellistsbynightsemiprooramateur.showAddReplyScreenFromWeb?topicID=513.topic&index=9 http://yp.gates96.com/0/22/30/81.html http://yp.gates96.com/0/22/31/89.html http://yp.gates96.com/0/22/32/1.html http://yp.gates96.com/0/22/32/12.html http://yp.gates96.com/0/22/32/48.html http://yp.gates96.com/0/22/32/78.html http://yp.gates96.com/0/22/34/48.html http://yp.gates96.com/0/22/34/75.html http://yp.gates96.com/0/22/34/85.html http://yp.gates96.com/0/22/35/38.html http://yp.gates96.com/0/22/35/73.html http://yp.gates96.com/0/22/36/40.html http://yp.gates96.com/0/22/36/92.html http://yp.gates96.com/0/22/37/0.html http://yp.gates96.com/0/22/37/61.html http://yp.gates96.com/0/22/37/96.html http://yp.gates96.com/0/22/39/13.html http://yp.gates96.com/0/22/39/94.html http://www.incestpornstories.com/underageflashing/plus-sizereal-size/beautiesasian/purpleanal-sex/maledomfantasy/high-schoolpretty/cherrybest-friends.html http://variety.studiostore.com/browse/ELMOINGROU/TOY/s.2vzELAA2 http://members.tripod.lycos.nl/BOGAERT/off2.htm http://www.eveclub.com/cgi-bin/eveclub.front/972959555004/Catalog/2000019 http://genforum.genealogy.com/cgi-genforum/forums/noel.cgi?662 http://www.affiliate.hpstore.hp.co.uk/do/session/380888/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-expo.com/FR/REGISTRATION/entry.asp http://yp.gates96.com/5/88/10/35.html http://yp.gates96.com/5/88/10/44.html http://yp.gates96.com/5/88/11/36.html http://yp.gates96.com/5/88/13/1.html http://yp.gates96.com/5/88/13/23.html http://yp.gates96.com/5/88/13/77.html http://yp.gates96.com/5/88/13/86.html http://yp.gates96.com/5/88/14/47.html http://yp.gates96.com/5/88/14/83.html http://yp.gates96.com/5/88/15/11.html http://yp.gates96.com/5/88/16/43.html http://yp.gates96.com/5/88/16/86.html http://yp.gates96.com/5/88/17/6.html http://yp.gates96.com/5/88/17/12.html http://yp.gates96.com/5/88/17/73.html http://yp.gates96.com/5/88/18/1.html http://yp.gates96.com/5/88/18/38.html http://yp.gates96.com/5/88/18/47.html http://yp.gates96.com/5/88/18/79.html http://newnova.tucows.com/winme/adnload/138430_29763.html http://yp.gates96.com/8/43/60/48.html http://yp.gates96.com/8/43/60/55.html http://yp.gates96.com/8/43/61/22.html http://yp.gates96.com/8/43/62/40.html http://yp.gates96.com/8/43/62/52.html http://yp.gates96.com/8/43/62/94.html http://yp.gates96.com/8/43/63/79.html http://yp.gates96.com/8/43/64/73.html http://yp.gates96.com/8/43/64/80.html http://yp.gates96.com/8/43/66/26.html http://yp.gates96.com/8/43/66/70.html http://yp.gates96.com/8/43/67/16.html http://yp.gates96.com/8/43/68/11.html http://yp.gates96.com/8/43/69/74.html http://www.fogdog.com/cedroID/ssd3040183354487/nav/products/winter_sports/1d/mid-weight_bottoms/ http://www.fogdog.com/cedroID/ssd3040183354487/nav/products/winter_sports/1r/avalanche_safety/ http://www.fogdog.com/cedroID/ssd3040183354487/boutique/marmot/ http://www.affiliate.hpstore.hp.co.uk/do/session/380898/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.france.hp.com/Main/acheterhp/ http://www.nd.edu/~dtl/cheg258/unix/unixhelp1.2/Pages/tasks_rm1.1.1.html http://se.egroups.com/post/cyclesi?act=reply&messageNum=137 http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=22,0+18,0+22,0+9,4 http://cidade.subportal.com/sn/Games/Action_Games/8120.html http://wiem.onet.pl/wiem/0115d9-rp1.html http://www.ferien-immobilien.de/detmold/Verkauf/Gemeinsam/Inserieren/Allgemeine-IB/Startseite/Gemeinsam/MarketingStrategie/Gemeinsam/erreichen.htm http://retailer.gocollect.com/do/session/1912826/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/product_display/products/product_lines.asp http://retailer.gocollect.com/do/session/1912826/vsid/2092/tid/2092/cid/569192/mid/1540/rid/1980/chid/2085/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLl0/url/http://www.gocollect.com/halloween/halloween.asp http://www.iabusnet.org:90/forums/aca-1/dispatch.exe/survey/listUnseen/fol/100001/20,0/2542788 http://www.dispatch.co.za/1998/06/25/easterncape/BISHO.HTM http://pub24.ezboard.com/fsosatanfrm1.showMessage?topicID=48.topic http://ftpsearch.belnet.be/ftp/packages/Linux-docs/howto/other-formats/INDEX http://www.crosswinds.net/~mluotto/noframe/feedback/form2.htm http://www.schoolweb.nl/studentensteden/Rotterdam/SVRGaudium/info.cfm http://www.shopworks.com/index.cfm/action/directory/userid/0000BD9A-2F67-19FE-9038010B0A0ADCF2 http://findmail.com/messages/masterhuen/802 http://www.t-dialin.net/navkopf/service/websvkaa.htm http://gallery2.simplenet.com/lobby/main/videocaps/ebaral/bigvalley/ebbva19.htm http://gallery2.simplenet.com/lobby/main/videocaps/ebaral/bigvalley/ebbva31.htm http://www.outpersonals.com/cgi-bin/w3com/pws/out/44hIVEhY5ZrKWoMKb0FtjCXhqcpntVLId5WTaJdeZmonn200jiiswYnK2vORJkjpm-x643ZCeLyy6kJnIAKa5rNx_42I13Ud9N03G9xPob7Hoci92HJhOlbEv4WsB85Au-cLXFlIHPd866jS http://ftp.debian.org/debian/dists/Debian2.2r0/main/binary-all/editors/?D=A http://ftp1.support.compaq.com/patches/public/Digital_UNIX/v3.2g/mailworks/2.0/?S=A http://www.digitalhearth.com/Recipes/World_Cuisines/South_Asian/Indian/index5.html http://ftp.gigabell.net/pub/Stormix/dists/rain/main/?M=A http://www.stas.net/1/theparamanor/apartment.htm http://www.netcom.com/~gfenzil/free.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/misc/thoughts/math/legendes/pages_new.html http://www.eleves.ens.fr:8080/home/madore/index.shtml.fr/lit/misc/misc/thoughts/math/legendes/misc/orders_mag.html http://dandini.cranfield.ac.uk/vl=-39658948/cl=171/nw=1/rpsv/catchword/routledg/13606719/contp1-1.htm http://genforum.genealogy.com/cgi-genforum/forums/pugsley.cgi?81 http://www.users.globalnet.co.uk/~mmayes/pages/cross.htm http://dic.empas.com/show.tsp/?s=d&q=%C4%A7%BD%C7 http://www.jamba.de/KNet/_KNet-rHP8j1-lHd-13f16/browse.de/node.0/cde7f1uou http://library.bangor.ac.uk/search/aHolmgren,+Nils+Fritiof,+1877-1954/aholmgren+nils+fritiof+1877+1954/7,1,1,B/marc&F=aholmlund+chris&1,1, http://www.spiral.at/Katalog/Artikel/0181030/ http://www.spiral.at/Katalog/Artikel/0181242/ http://www.generation-formation.fr/navig.htm---o21zAo06L2o0Ol9A074fo6VJGezMkEeIgI8eOkn2ApvFFo6Td4ezyr6feZJPdspt6dsSAtdsNhJdspt6dsrvrdjlhkfbz.htm http://www.nextmedia.com.hk/netgirl/sport/images/chelsea/ch-30.htm http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,5-9,0-15,0-17,0 http://www.realize.com/i82.htm,qt=35665aa9=645a273f-1a-31fa805-1-0-0-0-- http://www.eud.com/1998/06/21/21121AA.shtml http://www.eud.com/1998/06/21/21414AA.shtml http://www.eud.com/1998/06/21/21434AA.shtml http://chemtech.chinamarket.com.cn/E/Showdetail_company/5569.html http://chemtech.chinamarket.com.cn/E/Showdetail_company/1095.html http://www.ferien-immobilien.de/baden-wuertemberg/konstanz/Verkauf/Private-IB/Allgemeine-IB/Startseite/Gemeinsam/Immolink/Gemeinsam/MarketingStrategie/inhalt.htm http://www.ferien-immobilien.de/baden-wuertemberg/konstanz/Verkauf/Private-IB/Allgemeine-IB/Startseite/Gemeinsam/Immolink/Gemeinsam/versicherungen/gebaeude/deckungsumfang.htm http://retailer.gocollect.com/do/session/1912886/vsid/2312/tid/2312/cid/573127/mid/1020/rid/2147/chid/2210/parser/yes/imtarget/ImMainFrame/imref/eqqLmwlGltt5tkdHlZlLiibLZqkKZljLlZe5ofpLqjXLpl4/url/http://www.gocollect.com/company_info/terms_and_conditions.asp http://eagle.synet.edu.cn/mirror/www.tuc.org.uk/ http://eagle.synet.edu.cn/mirror/dcarolco.lanminds.com/home/ http://www.chez.com/carabanon/Pagecabanon.htm http://poetry.lezlisoft.com/kikelet/spiritualitas/lelekszinpad.shtml http://lateline.muzi.net/ll/fanti/81373.shtml http://www.egroups.com/message/vacuum/1140 http://www.egroups.com/message/vacuum/1153 http://www.egroups.com/message/vacuum/1157 http://no.egroups.com/message/-1friendsliste/401 http://no.egroups.com/message/-1friendsliste/411 http://pike-community.org/(base=/forums/show.html,explode=146,forum=7,t=972959520359311)/forums/show.html http://pike-community.org/(base=/forums/show.html,explode=512,forum=7,t=972959520359311)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=413,t=972959520359311)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=423,t=972959520359311)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=761,t=972959520359311)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=777,t=972959520359311)/forums/show.html http://pike-community.org/(base=/forums/show.html,forum=7,show=831,t=972959520359311)/forums/show.html http://astro1.cnu.ac.kr/NetBBS/Bbs.dll/bulletin/qry/zka/B2-kC2Jo/qqa/r http://www.gbnf.com/genealog2/brothers/html/d0049/I1011.HTM http://www.intellicast.com/Golf/World/UnitedStates/Midwest/Ohio/Zanesville/CurrentWinds/ http://www.nada.kth.se/systemgruppen/docs/javadoc/jdk-1.3/docs/api/javax/swing/text/class-use/TabSet.html http://www.my-cat.de/hunde/zucht/file24.htm http://194.128.65.4/pa/cm199899/cmwib/wb981128/edms.htm http://www.gutenberg2000.de/sagen/austria/tirol/adasbub.htm http://www1.onelist.com/message/osaki/22 http://www.highwired.net/ESchoolDrive/JumpPage/1,5565,25179-46,00.html http://pcmagazin.de/download/library/deADW-wc.htm http://www.affiliate.hpstore.hp.co.uk/do/session/380873/vsid/1148/tid/1148/cid/74115/mid/1001/rid/1003/chid/1050/parser/yes/imref/eqqLmwlGltt5tkeHmjbHumlLkZl5jlcHol4/url/http://www.hp-creativeworld.com/creativeworld.asp?lang=f http://cscns.csc.gifu.gifu.jp/pushcorn-kit/tanigumi/paged/0300214020000147.html http://cscns.csc.gifu.gifu.jp/pushcorn-kit/tanigumi/paged/0300214020002363.html http://cscns.csc.gifu.gifu.jp/pushcorn-kit/tanigumi/paged/0300214020001617.html http://cpan.nitco.com/modules/by-module/String/MLEHMANN/?N=D http://www.rge.com/pub/tex/language/ethiopia/ethtex/lqh_fonts/ http://130.158.208.53/WWW/PDB2/PCD4711/htmls/41.html http://www.thisislancashire.co.uk/lancashire/archive/1997/05/15/LEIGH0VQ.html http://www.thisislancashire.co.uk/lancashire/archive/1997/05/15/LEIGH10VQ.html http://southwind.tukids.tucows.com/mac/parents/adnload/72310_26093.html http://ftp1.support.compaq.com/public/vms/vax/v7.2/dsnlink/2.2/dsnlinke022.a-dcx_vaxexe http://wynnsystems.com/i.I_5aGd/search/listCompanies.html http://www.pobladores.com/territorios/juegos/Zhief_Fantasy_World/info http://www.pobladores.com/territorios/juegos/Zhief_Fantasy_World/pagina/9 http://www.aebius.com/rpm2html/contrib/libc5/i386/usr_sbin_Tree.html http://info.rutgers.edu/cgi-bin/RUInfo/TallyStats/name=WebRequest&exec=buildlimit&limit=9,0-22,0-0,0-9,4 http://polygraph.ircache.net:8181/services/define/http_-2www.fastcounter.com/noframes/specials.htm http://polygraph.ircache.net:8181/services/define/http_-2www.fastcounter.com/noframes/sitebuilder.htm http://www.jamba.nl/KNet/_KNet-7YT8j1-nD4-pxan/browse.nl/node.0/cdmvcam7k http://www.outdoorwire.com/content/lists/jeepoffroad/200010/msg00234.html?{LoadingFrameset} http://www-uk8.cricket.org/link_to_database/ARCHIVE/2000-01/ENG_IN_PAK/ENG_IN_PAK_OCT-DEC2000_ENG-SQUAD.html http://www-uk8.cricket.org/link_to_database/ARCHIVE/CRICKET_NEWS/2000/OCT/057670_CI_25OCT2000.html http://www.chaos.dk/sexriddle/c/c/e/k/ http://ben.aspads.net/ex/c/190/608504034 http://forum.rai.it/aca-finestre/dispatch.cgi/FORUM/folderFrame/100001/0/alpha/2040958 http://www.teacherformation.org/html/od/facilitators.cfm/task1,help/discussion_id,2/xid,5237/yid,3113916 http://www.mirror.edu.cn/res/www.isoc.org/inet98/proceedings/7d/ http://www.sumthin.nu/archives/bugtraq/Nov_1998/msg00058.html http://proxy.tiscover.com/1Root/Kontinent/6/Staat/7/Bundesland/20/Regionen/regionen_az...2.html http://www.streetprices.com/products/sortdetailbylowprice/SP142252.html http://www.streetprices.com/products/sortdetailby1day/SP142252.html http://pp3.shef.ac.uk:4040/form/path=1,+%3A%22countryName%3DGB%40organizationName%3DUniversity+of+Sheffield%40organizationalUnitName%3DFinance%40commonName%3DS+Green%22 http://travelocity-dest.excite.com/DestGuides/0,1840,TRAVELOCITY|2662|3|1|239114,00.html http://www.maastrek.de/maas/4a73999ddfd2d79be20a/1/0/5 http://aol.weather.com/weather/cities/us_pa_fairview.html http://aol.weather.com/weather/cities/us_pa_fort_loudon.html http://javatest.a-net.nl/servlet/pedit.Main/http://www.tigerden.com/junkmail/compladdr.html http://ftp.dti.ad.jp/pub/windows/forest/file/backup/press1/?M=A http://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0225t_1c.html http://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0225c_3c.html http://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0217c_2c.html http://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0216c_play.html http://www.contest.edu.tw/85/endshow/5/baseball/news/97feb/0214co_1c.html http://preview.egroups.com/messages/decoratingplusnews/6 http://astro1.chungnam.ac.kr/NetBBS/Bbs.dll/bulletin/rcm/zka/B2-kC23n/qqatt/^snappy-1.2.2/third_party/000077500000000000000000000000001477101537200153665ustar00rootroot00000000000000snappy-1.2.2/third_party/benchmark/000077500000000000000000000000001477101537200173205ustar00rootroot00000000000000snappy-1.2.2/third_party/googletest/000077500000000000000000000000001477101537200175425ustar00rootroot00000000000000